Package net.officefloor.model.office
Enum OfficeTeamModel.OfficeTeamEvent
- java.lang.Object
-
- java.lang.Enum<OfficeTeamModel.OfficeTeamEvent>
-
- net.officefloor.model.office.OfficeTeamModel.OfficeTeamEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<OfficeTeamModel.OfficeTeamEvent>
- Enclosing class:
- OfficeTeamModel
public static enum OfficeTeamModel.OfficeTeamEvent extends java.lang.Enum<OfficeTeamModel.OfficeTeamEvent>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static OfficeTeamModel.OfficeTeamEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static OfficeTeamModel.OfficeTeamEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_OFFICE_TEAM_NAME
public static final OfficeTeamModel.OfficeTeamEvent CHANGE_OFFICE_TEAM_NAME
-
ADD_TYPE_QUALIFICATION
public static final OfficeTeamModel.OfficeTeamEvent ADD_TYPE_QUALIFICATION
-
REMOVE_TYPE_QUALIFICATION
public static final OfficeTeamModel.OfficeTeamEvent REMOVE_TYPE_QUALIFICATION
-
ADD_OFFICE_FUNCTION
public static final OfficeTeamModel.OfficeTeamEvent ADD_OFFICE_FUNCTION
-
REMOVE_OFFICE_FUNCTION
public static final OfficeTeamModel.OfficeTeamEvent REMOVE_OFFICE_FUNCTION
-
ADD_OFFICE_MANAGED_OBJECT_SOURCE_TEAM
public static final OfficeTeamModel.OfficeTeamEvent ADD_OFFICE_MANAGED_OBJECT_SOURCE_TEAM
-
REMOVE_OFFICE_MANAGED_OBJECT_SOURCE_TEAM
public static final OfficeTeamModel.OfficeTeamEvent REMOVE_OFFICE_MANAGED_OBJECT_SOURCE_TEAM
-
ADD_ADMINISTRATION
public static final OfficeTeamModel.OfficeTeamEvent ADD_ADMINISTRATION
-
REMOVE_ADMINISTRATION
public static final OfficeTeamModel.OfficeTeamEvent REMOVE_ADMINISTRATION
-
ADD_GOVERNANCE
public static final OfficeTeamModel.OfficeTeamEvent ADD_GOVERNANCE
-
REMOVE_GOVERNANCE
public static final OfficeTeamModel.OfficeTeamEvent REMOVE_GOVERNANCE
-
-
Method Detail
-
values
public static OfficeTeamModel.OfficeTeamEvent[] 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 (OfficeTeamModel.OfficeTeamEvent c : OfficeTeamModel.OfficeTeamEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OfficeTeamModel.OfficeTeamEvent 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
-
-