public enum OperationArguments extends java.lang.Enum<OperationArguments>
| Enum Constant and Description |
|---|
COMMIT |
CONSUME |
CREATE |
DELETE |
LOGIN |
PRODUCE |
SUBSCRIBE |
SUBSCRIPTIONS |
| 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 LOGIN
public static final OperationArguments CREATE
public static final OperationArguments SUBSCRIBE
public static final OperationArguments CONSUME
public static final OperationArguments COMMIT
public static final OperationArguments DELETE
public static final OperationArguments SUBSCRIPTIONS
public static final OperationArguments PRODUCE
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