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