public static enum OperationDescription.Type extends java.lang.Enum<OperationDescription.Type>
Enum Constant and Description |
---|
INFIX
The infix operation.
|
PREFIX
The prefix operation.
|
SUFFIX
The suffix operation.
|
Modifier and Type | Method and Description |
---|---|
static OperationDescription.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static OperationDescription.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OperationDescription.Type PREFIX
public static final OperationDescription.Type INFIX
public static final OperationDescription.Type SUFFIX
public static OperationDescription.Type[] values()
for (OperationDescription.Type c : OperationDescription.Type.values()) System.out.println(c);
public static OperationDescription.Type 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 null