Package net.officefloor.model.office
Enum OfficeModel.OfficeEvent
- java.lang.Object
-
- java.lang.Enum<OfficeModel.OfficeEvent>
-
- net.officefloor.model.office.OfficeModel.OfficeEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OfficeModel.OfficeEvent>
- Enclosing class:
- OfficeModel
public static enum OfficeModel.OfficeEvent extends java.lang.Enum<OfficeModel.OfficeEvent>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OfficeModel.OfficeEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OfficeModel.OfficeEvent[]
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 OfficeModel.OfficeEvent CHANGE_IS_AUTO_WIRE_OBJECTS
-
CHANGE_IS_AUTO_WIRE_TEAMS
public static final OfficeModel.OfficeEvent CHANGE_IS_AUTO_WIRE_TEAMS
-
ADD_OFFICE_SECTION
public static final OfficeModel.OfficeEvent ADD_OFFICE_SECTION
-
REMOVE_OFFICE_SECTION
public static final OfficeModel.OfficeEvent REMOVE_OFFICE_SECTION
-
ADD_OFFICE_TEAM
public static final OfficeModel.OfficeEvent ADD_OFFICE_TEAM
-
REMOVE_OFFICE_TEAM
public static final OfficeModel.OfficeEvent REMOVE_OFFICE_TEAM
-
ADD_OFFICE_SUPPLIER
public static final OfficeModel.OfficeEvent ADD_OFFICE_SUPPLIER
-
REMOVE_OFFICE_SUPPLIER
public static final OfficeModel.OfficeEvent REMOVE_OFFICE_SUPPLIER
-
ADD_EXTERNAL_MANAGED_OBJECT
public static final OfficeModel.OfficeEvent ADD_EXTERNAL_MANAGED_OBJECT
-
REMOVE_EXTERNAL_MANAGED_OBJECT
public static final OfficeModel.OfficeEvent REMOVE_EXTERNAL_MANAGED_OBJECT
-
ADD_OFFICE_MANAGED_OBJECT_SOURCE
public static final OfficeModel.OfficeEvent ADD_OFFICE_MANAGED_OBJECT_SOURCE
-
REMOVE_OFFICE_MANAGED_OBJECT_SOURCE
public static final OfficeModel.OfficeEvent REMOVE_OFFICE_MANAGED_OBJECT_SOURCE
-
ADD_OFFICE_MANAGED_OBJECT
public static final OfficeModel.OfficeEvent ADD_OFFICE_MANAGED_OBJECT
-
REMOVE_OFFICE_MANAGED_OBJECT
public static final OfficeModel.OfficeEvent REMOVE_OFFICE_MANAGED_OBJECT
-
ADD_OFFICE_MANAGED_OBJECT_POOL
public static final OfficeModel.OfficeEvent ADD_OFFICE_MANAGED_OBJECT_POOL
-
REMOVE_OFFICE_MANAGED_OBJECT_POOL
public static final OfficeModel.OfficeEvent REMOVE_OFFICE_MANAGED_OBJECT_POOL
-
ADD_OFFICE_ESCALATION
public static final OfficeModel.OfficeEvent ADD_OFFICE_ESCALATION
-
REMOVE_OFFICE_ESCALATION
public static final OfficeModel.OfficeEvent REMOVE_OFFICE_ESCALATION
-
ADD_ADMINISTRATION
public static final OfficeModel.OfficeEvent ADD_ADMINISTRATION
-
REMOVE_ADMINISTRATION
public static final OfficeModel.OfficeEvent REMOVE_ADMINISTRATION
-
ADD_GOVERNANCE
public static final OfficeModel.OfficeEvent ADD_GOVERNANCE
-
REMOVE_GOVERNANCE
public static final OfficeModel.OfficeEvent REMOVE_GOVERNANCE
-
ADD_OFFICE_START
public static final OfficeModel.OfficeEvent ADD_OFFICE_START
-
REMOVE_OFFICE_START
public static final OfficeModel.OfficeEvent REMOVE_OFFICE_START
-
-
Method Detail
-
values
public static OfficeModel.OfficeEvent[] 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 (OfficeModel.OfficeEvent c : OfficeModel.OfficeEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OfficeModel.OfficeEvent 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
-
-