Enum OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent
- java.lang.Object
-
- java.lang.Enum<OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent>
-
- net.officefloor.model.officefloor.OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent>
- Enclosing class:
- OfficeFloorExecutiveModel
public static enum OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent extends java.lang.Enum<OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_EXECUTION_STRATEGY
ADD_PROPERTY
CHANGE_EXECUTIVE_SOURCE_CLASS_NAME
REMOVE_EXECUTION_STRATEGY
REMOVE_PROPERTY
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_EXECUTIVE_SOURCE_CLASS_NAME
public static final OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent CHANGE_EXECUTIVE_SOURCE_CLASS_NAME
-
ADD_PROPERTY
public static final OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent ADD_PROPERTY
-
REMOVE_PROPERTY
public static final OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent REMOVE_PROPERTY
-
ADD_EXECUTION_STRATEGY
public static final OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent ADD_EXECUTION_STRATEGY
-
REMOVE_EXECUTION_STRATEGY
public static final OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent REMOVE_EXECUTION_STRATEGY
-
-
Method Detail
-
values
public static OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent[] 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 (OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent c : OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OfficeFloorExecutiveModel.OfficeFloorExecutiveEvent 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
-
-