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