Enum WoofManagedObjectModel.WoofManagedObjectEvent
- java.lang.Object
-
- java.lang.Enum<WoofManagedObjectModel.WoofManagedObjectEvent>
-
- net.officefloor.woof.model.objects.WoofManagedObjectModel.WoofManagedObjectEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WoofManagedObjectModel.WoofManagedObjectEvent>
- Enclosing class:
- WoofManagedObjectModel
public static enum WoofManagedObjectModel.WoofManagedObjectEvent extends java.lang.Enum<WoofManagedObjectModel.WoofManagedObjectEvent>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WoofManagedObjectModel.WoofManagedObjectEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WoofManagedObjectModel.WoofManagedObjectEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_MANAGED_OBJECT_SOURCE_CLASS_NAME
public static final WoofManagedObjectModel.WoofManagedObjectEvent CHANGE_MANAGED_OBJECT_SOURCE_CLASS_NAME
-
CHANGE_CLASS_MANAGED_OBJECT_SOURCE_CLASS
public static final WoofManagedObjectModel.WoofManagedObjectEvent CHANGE_CLASS_MANAGED_OBJECT_SOURCE_CLASS
-
CHANGE_TIMEOUT
public static final WoofManagedObjectModel.WoofManagedObjectEvent CHANGE_TIMEOUT
-
CHANGE_QUALIFIER
public static final WoofManagedObjectModel.WoofManagedObjectEvent CHANGE_QUALIFIER
-
CHANGE_TYPE
public static final WoofManagedObjectModel.WoofManagedObjectEvent CHANGE_TYPE
-
CHANGE_SCOPE
public static final WoofManagedObjectModel.WoofManagedObjectEvent CHANGE_SCOPE
-
CHANGE_POOL
public static final WoofManagedObjectModel.WoofManagedObjectEvent CHANGE_POOL
-
ADD_PROPERTY_SOURCE
public static final WoofManagedObjectModel.WoofManagedObjectEvent ADD_PROPERTY_SOURCE
-
REMOVE_PROPERTY_SOURCE
public static final WoofManagedObjectModel.WoofManagedObjectEvent REMOVE_PROPERTY_SOURCE
-
ADD_TYPE_QUALIFICATION
public static final WoofManagedObjectModel.WoofManagedObjectEvent ADD_TYPE_QUALIFICATION
-
REMOVE_TYPE_QUALIFICATION
public static final WoofManagedObjectModel.WoofManagedObjectEvent REMOVE_TYPE_QUALIFICATION
-
ADD_FLOW
public static final WoofManagedObjectModel.WoofManagedObjectEvent ADD_FLOW
-
REMOVE_FLOW
public static final WoofManagedObjectModel.WoofManagedObjectEvent REMOVE_FLOW
-
ADD_DEPENDENCY
public static final WoofManagedObjectModel.WoofManagedObjectEvent ADD_DEPENDENCY
-
REMOVE_DEPENDENCY
public static final WoofManagedObjectModel.WoofManagedObjectEvent REMOVE_DEPENDENCY
-
ADD_START_BEFORE
public static final WoofManagedObjectModel.WoofManagedObjectEvent ADD_START_BEFORE
-
REMOVE_START_BEFORE
public static final WoofManagedObjectModel.WoofManagedObjectEvent REMOVE_START_BEFORE
-
ADD_START_AFTER
public static final WoofManagedObjectModel.WoofManagedObjectEvent ADD_START_AFTER
-
REMOVE_START_AFTER
public static final WoofManagedObjectModel.WoofManagedObjectEvent REMOVE_START_AFTER
-
-
Method Detail
-
values
public static WoofManagedObjectModel.WoofManagedObjectEvent[] 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 (WoofManagedObjectModel.WoofManagedObjectEvent c : WoofManagedObjectModel.WoofManagedObjectEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WoofManagedObjectModel.WoofManagedObjectEvent 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
-
-