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 Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SectionModel.SectionEvent
valueOf(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_OBJECT
public static final SectionModel.SectionEvent ADD_EXTERNAL_MANAGED_OBJECT
-
REMOVE_EXTERNAL_MANAGED_OBJECT
public static final SectionModel.SectionEvent REMOVE_EXTERNAL_MANAGED_OBJECT
-
ADD_SECTION_MANAGED_OBJECT_SOURCE
public static final SectionModel.SectionEvent ADD_SECTION_MANAGED_OBJECT_SOURCE
-
REMOVE_SECTION_MANAGED_OBJECT_SOURCE
public static final SectionModel.SectionEvent REMOVE_SECTION_MANAGED_OBJECT_SOURCE
-
ADD_SECTION_MANAGED_OBJECT
public static final SectionModel.SectionEvent ADD_SECTION_MANAGED_OBJECT
-
REMOVE_SECTION_MANAGED_OBJECT
public static final SectionModel.SectionEvent REMOVE_SECTION_MANAGED_OBJECT
-
ADD_SECTION_MANAGED_OBJECT_POOL
public static final SectionModel.SectionEvent ADD_SECTION_MANAGED_OBJECT_POOL
-
REMOVE_SECTION_MANAGED_OBJECT_POOL
public static final SectionModel.SectionEvent REMOVE_SECTION_MANAGED_OBJECT_POOL
-
ADD_EXTERNAL_FLOW
public static final SectionModel.SectionEvent ADD_EXTERNAL_FLOW
-
REMOVE_EXTERNAL_FLOW
public static final SectionModel.SectionEvent REMOVE_EXTERNAL_FLOW
-
ADD_SUB_SECTION
public static final SectionModel.SectionEvent ADD_SUB_SECTION
-
REMOVE_SUB_SECTION
public static final SectionModel.SectionEvent REMOVE_SUB_SECTION
-
ADD_FUNCTION_NAMESPACE
public static final SectionModel.SectionEvent ADD_FUNCTION_NAMESPACE
-
REMOVE_FUNCTION_NAMESPACE
public static final SectionModel.SectionEvent REMOVE_FUNCTION_NAMESPACE
-
ADD_FUNCTION
public static final SectionModel.SectionEvent ADD_FUNCTION
-
REMOVE_FUNCTION
public static final SectionModel.SectionEvent REMOVE_FUNCTION
-
-
Method Detail
-
values
public 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
-
valueOf
public 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 namejava.lang.NullPointerException
- if the argument is null
-
-