Enum DeployedOfficeModel.DeployedOfficeEvent
- java.lang.Object
-
- java.lang.Enum<DeployedOfficeModel.DeployedOfficeEvent>
-
- net.officefloor.model.officefloor.DeployedOfficeModel.DeployedOfficeEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<DeployedOfficeModel.DeployedOfficeEvent>
- Enclosing class:
- DeployedOfficeModel
public static enum DeployedOfficeModel.DeployedOfficeEvent extends java.lang.Enum<DeployedOfficeModel.DeployedOfficeEvent>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DeployedOfficeModel.DeployedOfficeEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static DeployedOfficeModel.DeployedOfficeEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_DEPLOYED_OFFICE_NAME
public static final DeployedOfficeModel.DeployedOfficeEvent CHANGE_DEPLOYED_OFFICE_NAME
-
CHANGE_OFFICE_SOURCE_CLASS_NAME
public static final DeployedOfficeModel.DeployedOfficeEvent CHANGE_OFFICE_SOURCE_CLASS_NAME
-
CHANGE_OFFICE_LOCATION
public static final DeployedOfficeModel.DeployedOfficeEvent CHANGE_OFFICE_LOCATION
-
ADD_PROPERTY
public static final DeployedOfficeModel.DeployedOfficeEvent ADD_PROPERTY
-
REMOVE_PROPERTY
public static final DeployedOfficeModel.DeployedOfficeEvent REMOVE_PROPERTY
-
ADD_DEPLOYED_OFFICE_OBJECT
public static final DeployedOfficeModel.DeployedOfficeEvent ADD_DEPLOYED_OFFICE_OBJECT
-
REMOVE_DEPLOYED_OFFICE_OBJECT
public static final DeployedOfficeModel.DeployedOfficeEvent REMOVE_DEPLOYED_OFFICE_OBJECT
-
ADD_DEPLOYED_OFFICE_INPUT
public static final DeployedOfficeModel.DeployedOfficeEvent ADD_DEPLOYED_OFFICE_INPUT
-
REMOVE_DEPLOYED_OFFICE_INPUT
public static final DeployedOfficeModel.DeployedOfficeEvent REMOVE_DEPLOYED_OFFICE_INPUT
-
ADD_DEPLOYED_OFFICE_TEAM
public static final DeployedOfficeModel.DeployedOfficeEvent ADD_DEPLOYED_OFFICE_TEAM
-
REMOVE_DEPLOYED_OFFICE_TEAM
public static final DeployedOfficeModel.DeployedOfficeEvent REMOVE_DEPLOYED_OFFICE_TEAM
-
ADD_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
public static final DeployedOfficeModel.DeployedOfficeEvent ADD_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
-
REMOVE_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
public static final DeployedOfficeModel.DeployedOfficeEvent REMOVE_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
-
-
Method Detail
-
values
public static DeployedOfficeModel.DeployedOfficeEvent[] 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 (DeployedOfficeModel.DeployedOfficeEvent c : DeployedOfficeModel.DeployedOfficeEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DeployedOfficeModel.DeployedOfficeEvent 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
-
-