public enum OperationArguments extends java.lang.Enum<OperationArguments>
| Enum Constant and Description |
|---|
CONSUME
Operation Argument related to the consume operation
|
PRODUCE
Operation Argument related to the produce operation
|
| Modifier and Type | Method and Description |
|---|---|
static OperationArguments |
fromString(java.lang.String operationArgumentValue)
Return a OperationArgument enumerated based on a string
|
static OperationArguments |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperationArguments[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationArguments PRODUCE
public static final OperationArguments CONSUME
public static OperationArguments[] values()
for (OperationArguments c : OperationArguments.values()) System.out.println(c);
public static OperationArguments valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic static OperationArguments fromString(java.lang.String operationArgumentValue)
operationArgumentValue - A string value to be converted in a OperationArguments enumerated