Package net.officefloor.model.section
Enum SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent
- java.lang.Object
-
- java.lang.Enum<SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent>
-
- net.officefloor.model.section.SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent>
- Enclosing class:
- SectionManagedObjectPoolModel
public static enum SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent extends java.lang.Enum<SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_PROPERTY
ADD_SECTION_MANAGED_OBJECT_SOURCE
CHANGE_MANAGED_OBJECT_POOL_SOURCE_CLASS_NAME
CHANGE_SECTION_MANAGED_OBJECT_POOL_NAME
REMOVE_PROPERTY
REMOVE_SECTION_MANAGED_OBJECT_SOURCE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_SECTION_MANAGED_OBJECT_POOL_NAME
public static final SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent CHANGE_SECTION_MANAGED_OBJECT_POOL_NAME
-
CHANGE_MANAGED_OBJECT_POOL_SOURCE_CLASS_NAME
public static final SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent CHANGE_MANAGED_OBJECT_POOL_SOURCE_CLASS_NAME
-
ADD_PROPERTY
public static final SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent ADD_PROPERTY
-
REMOVE_PROPERTY
public static final SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent REMOVE_PROPERTY
-
ADD_SECTION_MANAGED_OBJECT_SOURCE
public static final SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent ADD_SECTION_MANAGED_OBJECT_SOURCE
-
REMOVE_SECTION_MANAGED_OBJECT_SOURCE
public static final SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent REMOVE_SECTION_MANAGED_OBJECT_SOURCE
-
-
Method Detail
-
values
public static SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent[] 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 (SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent c : SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static SectionManagedObjectPoolModel.SectionManagedObjectPoolEvent 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
-
-