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