|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Object java.lang.Enum<Operator> org.formulacompiler.compiler.Operator
public enum Operator
Lists all the expression operators supported by AFC.
Enum Constant Summary | |
---|---|
CONCAT
|
|
DIV
|
|
EQUAL
|
|
EXP
|
|
GREATER
|
|
GREATEROREQUAL
|
|
INTERNAL_MAX
Internal - do not use! |
|
INTERNAL_MIN
Internal - do not use! |
|
LESS
|
|
LESSOREQUAL
|
|
MINUS
|
|
NOTEQUAL
|
|
PERCENT
|
|
PLUS
|
|
TIMES
|
Method Summary | |
---|---|
java.lang.String |
getName()
|
abstract java.lang.String |
getSymbol()
|
Operator |
inverse()
|
boolean |
isPrefix()
|
static Operator |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static Operator[] |
values()
Returns an array containing the constants of this enum type, in the order they're declared. |
Methods inherited from class java.lang.Enum |
---|
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final Operator CONCAT
public static final Operator PLUS
public static final Operator MINUS
public static final Operator TIMES
public static final Operator DIV
public static final Operator EXP
public static final Operator PERCENT
public static final Operator EQUAL
public static final Operator NOTEQUAL
public static final Operator LESS
public static final Operator LESSOREQUAL
public static final Operator GREATER
public static final Operator GREATEROREQUAL
public static final Operator INTERNAL_MIN
public static final Operator INTERNAL_MAX
Method Detail |
---|
public static final Operator[] values()
for(Operator c : Operator.values()) System.out.println(c);
public static Operator 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 namepublic java.lang.String getName()
public abstract java.lang.String getSymbol()
public boolean isPrefix()
public Operator inverse()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |