Package net.officefloor.woof.model.woof
Enum WoofHttpContinuationModel.WoofHttpContinuationEvent
- java.lang.Object
-
- java.lang.Enum<WoofHttpContinuationModel.WoofHttpContinuationEvent>
-
- net.officefloor.woof.model.woof.WoofHttpContinuationModel.WoofHttpContinuationEvent
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<WoofHttpContinuationModel.WoofHttpContinuationEvent>
- Enclosing class:
- WoofHttpContinuationModel
public static enum WoofHttpContinuationModel.WoofHttpContinuationEvent extends java.lang.Enum<WoofHttpContinuationModel.WoofHttpContinuationEvent>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WoofHttpContinuationModel.WoofHttpContinuationEvent
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static WoofHttpContinuationModel.WoofHttpContinuationEvent[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
CHANGE_IS_SECURE
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent CHANGE_IS_SECURE
-
CHANGE_APPLICATION_PATH
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent CHANGE_APPLICATION_PATH
-
CHANGE_DOCUMENTATION
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent CHANGE_DOCUMENTATION
-
CHANGE_WOOF_SECTION_INPUT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent CHANGE_WOOF_SECTION_INPUT
-
CHANGE_WOOF_PROCEDURE
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent CHANGE_WOOF_PROCEDURE
-
CHANGE_WOOF_TEMPLATE
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent CHANGE_WOOF_TEMPLATE
-
CHANGE_WOOF_RESOURCE
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent CHANGE_WOOF_RESOURCE
-
CHANGE_WOOF_SECURITY
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent CHANGE_WOOF_SECURITY
-
CHANGE_WOOF_REDIRECT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent CHANGE_WOOF_REDIRECT
-
ADD_WOOF_TEMPLATE_OUTPUT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent ADD_WOOF_TEMPLATE_OUTPUT
-
REMOVE_WOOF_TEMPLATE_OUTPUT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent REMOVE_WOOF_TEMPLATE_OUTPUT
-
ADD_WOOF_SECTION_OUTPUT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent ADD_WOOF_SECTION_OUTPUT
-
REMOVE_WOOF_SECTION_OUTPUT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent REMOVE_WOOF_SECTION_OUTPUT
-
ADD_WOOF_EXCEPTION
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent ADD_WOOF_EXCEPTION
-
REMOVE_WOOF_EXCEPTION
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent REMOVE_WOOF_EXCEPTION
-
ADD_WOOF_SECURITY_OUTPUT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent ADD_WOOF_SECURITY_OUTPUT
-
REMOVE_WOOF_SECURITY_OUTPUT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent REMOVE_WOOF_SECURITY_OUTPUT
-
ADD_WOOF_PROCEDURE_OUTPUT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent ADD_WOOF_PROCEDURE_OUTPUT
-
REMOVE_WOOF_PROCEDURE_OUTPUT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent REMOVE_WOOF_PROCEDURE_OUTPUT
-
ADD_WOOF_PROCEDURE_NEXT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent ADD_WOOF_PROCEDURE_NEXT
-
REMOVE_WOOF_PROCEDURE_NEXT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent REMOVE_WOOF_PROCEDURE_NEXT
-
ADD_WOOF_HTTP_CONTINUATION
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent ADD_WOOF_HTTP_CONTINUATION
-
REMOVE_WOOF_HTTP_CONTINUATION
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent REMOVE_WOOF_HTTP_CONTINUATION
-
ADD_WOOF_HTTP_INPUT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent ADD_WOOF_HTTP_INPUT
-
REMOVE_WOOF_HTTP_INPUT
public static final WoofHttpContinuationModel.WoofHttpContinuationEvent REMOVE_WOOF_HTTP_INPUT
-
-
Method Detail
-
values
public static WoofHttpContinuationModel.WoofHttpContinuationEvent[] 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 (WoofHttpContinuationModel.WoofHttpContinuationEvent c : WoofHttpContinuationModel.WoofHttpContinuationEvent.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WoofHttpContinuationModel.WoofHttpContinuationEvent 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
-
-