public static enum ExpressionOperator.Operator extends Enum<ExpressionOperator.Operator>
| Enum Constant and Description |
|---|
COMMA |
EMPTY_OPERATOR |
MINUS |
PLUS |
SOLIDUS |
STAR |
| Modifier and Type | Method and Description |
|---|---|
String |
getSymbol() |
static ExpressionOperator.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExpressionOperator.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExpressionOperator.Operator SOLIDUS
public static final ExpressionOperator.Operator COMMA
public static final ExpressionOperator.Operator STAR
public static final ExpressionOperator.Operator EMPTY_OPERATOR
public static final ExpressionOperator.Operator MINUS
public static final ExpressionOperator.Operator PLUS
public static ExpressionOperator.Operator[] values()
for (ExpressionOperator.Operator c : ExpressionOperator.Operator.values()) System.out.println(c);
public static ExpressionOperator.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-2013. All Rights Reserved.