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