Package net.officefloor.model.section
Enum SectionModel.SectionEvent
- java.lang.Object
- 
- java.lang.Enum<SectionModel.SectionEvent>
- 
- net.officefloor.model.section.SectionModel.SectionEvent
 
 
- 
- All Implemented Interfaces:
- java.io.Serializable,- java.lang.Comparable<SectionModel.SectionEvent>
 - Enclosing class:
- SectionModel
 
 public static enum SectionModel.SectionEvent extends java.lang.Enum<SectionModel.SectionEvent> 
- 
- 
Enum Constant Summary
 - 
Method SummaryAll Methods Static Methods Concrete Methods Modifier and Type Method Description static SectionModel.SectionEventvalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static SectionModel.SectionEvent[]values()Returns an array containing the constants of this enum type, in the order they are declared.
 
- 
- 
- 
Enum Constant Detail- 
ADD_EXTERNAL_MANAGED_OBJECTpublic static final SectionModel.SectionEvent ADD_EXTERNAL_MANAGED_OBJECT 
 - 
REMOVE_EXTERNAL_MANAGED_OBJECTpublic static final SectionModel.SectionEvent REMOVE_EXTERNAL_MANAGED_OBJECT 
 - 
ADD_SECTION_MANAGED_OBJECT_SOURCEpublic static final SectionModel.SectionEvent ADD_SECTION_MANAGED_OBJECT_SOURCE 
 - 
REMOVE_SECTION_MANAGED_OBJECT_SOURCEpublic static final SectionModel.SectionEvent REMOVE_SECTION_MANAGED_OBJECT_SOURCE 
 - 
ADD_SECTION_MANAGED_OBJECTpublic static final SectionModel.SectionEvent ADD_SECTION_MANAGED_OBJECT 
 - 
REMOVE_SECTION_MANAGED_OBJECTpublic static final SectionModel.SectionEvent REMOVE_SECTION_MANAGED_OBJECT 
 - 
ADD_SECTION_MANAGED_OBJECT_POOLpublic static final SectionModel.SectionEvent ADD_SECTION_MANAGED_OBJECT_POOL 
 - 
REMOVE_SECTION_MANAGED_OBJECT_POOLpublic static final SectionModel.SectionEvent REMOVE_SECTION_MANAGED_OBJECT_POOL 
 - 
ADD_EXTERNAL_FLOWpublic static final SectionModel.SectionEvent ADD_EXTERNAL_FLOW 
 - 
REMOVE_EXTERNAL_FLOWpublic static final SectionModel.SectionEvent REMOVE_EXTERNAL_FLOW 
 - 
ADD_SUB_SECTIONpublic static final SectionModel.SectionEvent ADD_SUB_SECTION 
 - 
REMOVE_SUB_SECTIONpublic static final SectionModel.SectionEvent REMOVE_SUB_SECTION 
 - 
ADD_FUNCTION_NAMESPACEpublic static final SectionModel.SectionEvent ADD_FUNCTION_NAMESPACE 
 - 
REMOVE_FUNCTION_NAMESPACEpublic static final SectionModel.SectionEvent REMOVE_FUNCTION_NAMESPACE 
 - 
ADD_FUNCTIONpublic static final SectionModel.SectionEvent ADD_FUNCTION 
 - 
REMOVE_FUNCTIONpublic static final SectionModel.SectionEvent REMOVE_FUNCTION 
 
- 
 - 
Method Detail- 
valuespublic static SectionModel.SectionEvent[] 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 (SectionModel.SectionEvent c : SectionModel.SectionEvent.values()) System.out.println(c); - Returns:
- an array containing the constants of this enum type, in the order they are declared
 
 - 
valueOfpublic static SectionModel.SectionEvent 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 name
- java.lang.NullPointerException- if the argument is null
 
 
- 
 
-