Enum OfficeFloorModel.OfficeFloorEvent
- java.lang.Object
-
- java.lang.Enum<OfficeFloorModel.OfficeFloorEvent>
-
- net.officefloor.model.officefloor.OfficeFloorModel.OfficeFloorEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OfficeFloorModel.OfficeFloorEvent>
- Enclosing class:
- OfficeFloorModel
public static enum OfficeFloorModel.OfficeFloorEvent extends java.lang.Enum<OfficeFloorModel.OfficeFloorEvent>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OfficeFloorModel.OfficeFloorEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OfficeFloorModel.OfficeFloorEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_IS_AUTO_WIRE_OBJECTS
public static final OfficeFloorModel.OfficeFloorEvent CHANGE_IS_AUTO_WIRE_OBJECTS
-
CHANGE_IS_AUTO_WIRE_TEAMS
public static final OfficeFloorModel.OfficeFloorEvent CHANGE_IS_AUTO_WIRE_TEAMS
-
CHANGE_OFFICE_FLOOR_EXECUTIVE
public static final OfficeFloorModel.OfficeFloorEvent CHANGE_OFFICE_FLOOR_EXECUTIVE
-
ADD_OFFICE_FLOOR_SUPPLIER
public static final OfficeFloorModel.OfficeFloorEvent ADD_OFFICE_FLOOR_SUPPLIER
-
REMOVE_OFFICE_FLOOR_SUPPLIER
public static final OfficeFloorModel.OfficeFloorEvent REMOVE_OFFICE_FLOOR_SUPPLIER
-
ADD_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
public static final OfficeFloorModel.OfficeFloorEvent ADD_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
-
REMOVE_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
public static final OfficeFloorModel.OfficeFloorEvent REMOVE_OFFICE_FLOOR_MANAGED_OBJECT_SOURCE
-
ADD_OFFICE_FLOOR_INPUT_MANAGED_OBJECT
public static final OfficeFloorModel.OfficeFloorEvent ADD_OFFICE_FLOOR_INPUT_MANAGED_OBJECT
-
REMOVE_OFFICE_FLOOR_INPUT_MANAGED_OBJECT
public static final OfficeFloorModel.OfficeFloorEvent REMOVE_OFFICE_FLOOR_INPUT_MANAGED_OBJECT
-
ADD_OFFICE_FLOOR_MANAGED_OBJECT
public static final OfficeFloorModel.OfficeFloorEvent ADD_OFFICE_FLOOR_MANAGED_OBJECT
-
REMOVE_OFFICE_FLOOR_MANAGED_OBJECT
public static final OfficeFloorModel.OfficeFloorEvent REMOVE_OFFICE_FLOOR_MANAGED_OBJECT
-
ADD_OFFICE_FLOOR_MANAGED_OBJECT_POOL
public static final OfficeFloorModel.OfficeFloorEvent ADD_OFFICE_FLOOR_MANAGED_OBJECT_POOL
-
REMOVE_OFFICE_FLOOR_MANAGED_OBJECT_POOL
public static final OfficeFloorModel.OfficeFloorEvent REMOVE_OFFICE_FLOOR_MANAGED_OBJECT_POOL
-
ADD_OFFICE_FLOOR_TEAM
public static final OfficeFloorModel.OfficeFloorEvent ADD_OFFICE_FLOOR_TEAM
-
REMOVE_OFFICE_FLOOR_TEAM
public static final OfficeFloorModel.OfficeFloorEvent REMOVE_OFFICE_FLOOR_TEAM
-
ADD_DEPLOYED_OFFICE
public static final OfficeFloorModel.OfficeFloorEvent ADD_DEPLOYED_OFFICE
-
REMOVE_DEPLOYED_OFFICE
public static final OfficeFloorModel.OfficeFloorEvent REMOVE_DEPLOYED_OFFICE
-
-
Method Detail
-
values
public static OfficeFloorModel.OfficeFloorEvent[] 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 (OfficeFloorModel.OfficeFloorEvent c : OfficeFloorModel.OfficeFloorEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OfficeFloorModel.OfficeFloorEvent 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
-
-