Package net.officefloor.woof.model.woof
Enum WoofSectionModel.WoofSectionEvent
- java.lang.Object
-
- java.lang.Enum<WoofSectionModel.WoofSectionEvent>
-
- net.officefloor.woof.model.woof.WoofSectionModel.WoofSectionEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WoofSectionModel.WoofSectionEvent>
- Enclosing class:
- WoofSectionModel
public static enum WoofSectionModel.WoofSectionEvent extends java.lang.Enum<WoofSectionModel.WoofSectionEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_INPUT
ADD_OUTPUT
ADD_PROPERTY
CHANGE_SECTION_LOCATION
CHANGE_SECTION_SOURCE_CLASS_NAME
CHANGE_WOOF_SECTION_NAME
REMOVE_INPUT
REMOVE_OUTPUT
REMOVE_PROPERTY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WoofSectionModel.WoofSectionEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WoofSectionModel.WoofSectionEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_WOOF_SECTION_NAME
public static final WoofSectionModel.WoofSectionEvent CHANGE_WOOF_SECTION_NAME
-
CHANGE_SECTION_SOURCE_CLASS_NAME
public static final WoofSectionModel.WoofSectionEvent CHANGE_SECTION_SOURCE_CLASS_NAME
-
CHANGE_SECTION_LOCATION
public static final WoofSectionModel.WoofSectionEvent CHANGE_SECTION_LOCATION
-
ADD_PROPERTY
public static final WoofSectionModel.WoofSectionEvent ADD_PROPERTY
-
REMOVE_PROPERTY
public static final WoofSectionModel.WoofSectionEvent REMOVE_PROPERTY
-
ADD_INPUT
public static final WoofSectionModel.WoofSectionEvent ADD_INPUT
-
REMOVE_INPUT
public static final WoofSectionModel.WoofSectionEvent REMOVE_INPUT
-
ADD_OUTPUT
public static final WoofSectionModel.WoofSectionEvent ADD_OUTPUT
-
REMOVE_OUTPUT
public static final WoofSectionModel.WoofSectionEvent REMOVE_OUTPUT
-
-
Method Detail
-
values
public static WoofSectionModel.WoofSectionEvent[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (WoofSectionModel.WoofSectionEvent c : WoofSectionModel.WoofSectionEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WoofSectionModel.WoofSectionEvent valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null
-
-