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