public static enum ListExpressionOperator.Operator extends Enum<ListExpressionOperator.Operator>
| Enum Constant and Description |
|---|
COMMA |
EMPTY_OPERATOR |
| Modifier and Type | Method and Description |
|---|---|
String |
getSymbol() |
static ListExpressionOperator.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ListExpressionOperator.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ListExpressionOperator.Operator COMMA
public static final ListExpressionOperator.Operator EMPTY_OPERATOR
public static ListExpressionOperator.Operator[] values()
for (ListExpressionOperator.Operator c : ListExpressionOperator.Operator.values()) System.out.println(c);
public static ListExpressionOperator.Operator valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String getSymbol()
Copyright © 2012-2015. All Rights Reserved.