Enum WoofResourceModel.WoofResourceEvent
- java.lang.Object
-
- java.lang.Enum<WoofResourceModel.WoofResourceEvent>
-
- net.officefloor.woof.model.resources.WoofResourceModel.WoofResourceEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WoofResourceModel.WoofResourceEvent>
- Enclosing class:
- WoofResourceModel
public static enum WoofResourceModel.WoofResourceEvent extends java.lang.Enum<WoofResourceModel.WoofResourceEvent>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ADD_TYPE_QUALIFICATION
ADD_WOOF_RESOURCE_TRANSFORMER
CHANGE_CONTEXT_PATH
CHANGE_LOCATION
CHANGE_PROTOCOL
CHANGE_SECURITY
REMOVE_TYPE_QUALIFICATION
REMOVE_WOOF_RESOURCE_TRANSFORMER
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WoofResourceModel.WoofResourceEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WoofResourceModel.WoofResourceEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_PROTOCOL
public static final WoofResourceModel.WoofResourceEvent CHANGE_PROTOCOL
-
CHANGE_LOCATION
public static final WoofResourceModel.WoofResourceEvent CHANGE_LOCATION
-
CHANGE_CONTEXT_PATH
public static final WoofResourceModel.WoofResourceEvent CHANGE_CONTEXT_PATH
-
CHANGE_SECURITY
public static final WoofResourceModel.WoofResourceEvent CHANGE_SECURITY
-
ADD_TYPE_QUALIFICATION
public static final WoofResourceModel.WoofResourceEvent ADD_TYPE_QUALIFICATION
-
REMOVE_TYPE_QUALIFICATION
public static final WoofResourceModel.WoofResourceEvent REMOVE_TYPE_QUALIFICATION
-
ADD_WOOF_RESOURCE_TRANSFORMER
public static final WoofResourceModel.WoofResourceEvent ADD_WOOF_RESOURCE_TRANSFORMER
-
REMOVE_WOOF_RESOURCE_TRANSFORMER
public static final WoofResourceModel.WoofResourceEvent REMOVE_WOOF_RESOURCE_TRANSFORMER
-
-
Method Detail
-
values
public static WoofResourceModel.WoofResourceEvent[] 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 (WoofResourceModel.WoofResourceEvent c : WoofResourceModel.WoofResourceEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WoofResourceModel.WoofResourceEvent 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
-
-