Package nl.nn.adapterframework.pipes
Enum EtagHandlerPipe.EtagAction
- java.lang.Object
-
- java.lang.Enum<EtagHandlerPipe.EtagAction>
-
- nl.nn.adapterframework.pipes.EtagHandlerPipe.EtagAction
-
- All Implemented Interfaces:
Serializable
,Comparable<EtagHandlerPipe.EtagAction>
- Enclosing class:
- EtagHandlerPipe
public static enum EtagHandlerPipe.EtagAction extends Enum<EtagHandlerPipe.EtagAction>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static EtagHandlerPipe.EtagAction
valueOf(String name)
Returns the enum constant of this type with the specified name.static EtagHandlerPipe.EtagAction[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
GENERATE
public static final EtagHandlerPipe.EtagAction GENERATE
-
GET
public static final EtagHandlerPipe.EtagAction GET
-
SET
public static final EtagHandlerPipe.EtagAction SET
-
DELETE
public static final EtagHandlerPipe.EtagAction DELETE
-
FLUSH
public static final EtagHandlerPipe.EtagAction FLUSH
-
CLEAR
public static final EtagHandlerPipe.EtagAction CLEAR
-
-
Method Detail
-
values
public static EtagHandlerPipe.EtagAction[] 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 (EtagHandlerPipe.EtagAction c : EtagHandlerPipe.EtagAction.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static EtagHandlerPipe.EtagAction valueOf(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:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-