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