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