Package net.officefloor.model.office
Enum OfficeFunctionModel.OfficeFunctionEvent
- java.lang.Object
-
- java.lang.Enum<OfficeFunctionModel.OfficeFunctionEvent>
-
- net.officefloor.model.office.OfficeFunctionModel.OfficeFunctionEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OfficeFunctionModel.OfficeFunctionEvent>
- Enclosing class:
- OfficeFunctionModel
public static enum OfficeFunctionModel.OfficeFunctionEvent extends java.lang.Enum<OfficeFunctionModel.OfficeFunctionEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_GOVERNANCE
ADD_POST_ADMINISTRATION
ADD_PRE_ADMINISTRATION
CHANGE_OFFICE_FUNCTION_NAME
CHANGE_OFFICE_TEAM
REMOVE_GOVERNANCE
REMOVE_POST_ADMINISTRATION
REMOVE_PRE_ADMINISTRATION
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OfficeFunctionModel.OfficeFunctionEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OfficeFunctionModel.OfficeFunctionEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_OFFICE_FUNCTION_NAME
public static final OfficeFunctionModel.OfficeFunctionEvent CHANGE_OFFICE_FUNCTION_NAME
-
CHANGE_OFFICE_TEAM
public static final OfficeFunctionModel.OfficeFunctionEvent CHANGE_OFFICE_TEAM
-
ADD_PRE_ADMINISTRATION
public static final OfficeFunctionModel.OfficeFunctionEvent ADD_PRE_ADMINISTRATION
-
REMOVE_PRE_ADMINISTRATION
public static final OfficeFunctionModel.OfficeFunctionEvent REMOVE_PRE_ADMINISTRATION
-
ADD_POST_ADMINISTRATION
public static final OfficeFunctionModel.OfficeFunctionEvent ADD_POST_ADMINISTRATION
-
REMOVE_POST_ADMINISTRATION
public static final OfficeFunctionModel.OfficeFunctionEvent REMOVE_POST_ADMINISTRATION
-
ADD_GOVERNANCE
public static final OfficeFunctionModel.OfficeFunctionEvent ADD_GOVERNANCE
-
REMOVE_GOVERNANCE
public static final OfficeFunctionModel.OfficeFunctionEvent REMOVE_GOVERNANCE
-
-
Method Detail
-
values
public static OfficeFunctionModel.OfficeFunctionEvent[] 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 (OfficeFunctionModel.OfficeFunctionEvent c : OfficeFunctionModel.OfficeFunctionEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OfficeFunctionModel.OfficeFunctionEvent 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
-
-