public static enum BinaryExpression.Operator extends Enum<BinaryExpression.Operator>
Enum Constant and Description |
---|
ASSIGN |
DIV |
DIVEQ |
MINUS |
MINUSEQ |
MOD |
PLUS |
PLUSEQ |
POW |
TIMES |
TIMESEQ |
UNKNOWN |
Modifier and Type | Method and Description |
---|---|
static BinaryExpression.Operator |
get(int code) |
String |
getFormat() |
static BinaryExpression.Operator |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BinaryExpression.Operator[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BinaryExpression.Operator PLUS
public static final BinaryExpression.Operator MINUS
public static final BinaryExpression.Operator TIMES
public static final BinaryExpression.Operator DIV
public static final BinaryExpression.Operator MOD
public static final BinaryExpression.Operator POW
public static final BinaryExpression.Operator ASSIGN
public static final BinaryExpression.Operator PLUSEQ
public static final BinaryExpression.Operator MINUSEQ
public static final BinaryExpression.Operator TIMESEQ
public static final BinaryExpression.Operator DIVEQ
public static final BinaryExpression.Operator UNKNOWN
public static BinaryExpression.Operator[] values()
for (BinaryExpression.Operator c : BinaryExpression.Operator.values()) System.out.println(c);
public static BinaryExpression.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 static BinaryExpression.Operator get(int code)
public String getFormat()
Copyright © 2006–2018 GeoSolutions. All rights reserved.