|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<OperatorTable2.SpecialOperators>
com.singularsys.jep.OperatorTable2.SpecialOperators
public static enum OperatorTable2.SpecialOperators
Special purpose operators
| Enum Constant Summary | |
|---|---|
ASSIGN
Assignment x=5 |
|
CROSS
Cross product |
|
DOT
Dot product x . y |
|
ELEMENT
Accesses an element of a list x[2] |
|
LIST
Build a list of elements [1,2,3] |
|
RANGE
A range [-5:5] |
|
| Method Summary | |
|---|---|
static OperatorTable2.SpecialOperators |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static OperatorTable2.SpecialOperators[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, 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 OperatorTable2.SpecialOperators ASSIGN
public static final OperatorTable2.SpecialOperators DOT
public static final OperatorTable2.SpecialOperators CROSS
public static final OperatorTable2.SpecialOperators LIST
public static final OperatorTable2.SpecialOperators ELEMENT
public static final OperatorTable2.SpecialOperators RANGE
| Method Detail |
|---|
public static OperatorTable2.SpecialOperators[] values()
for (OperatorTable2.SpecialOperators c : OperatorTable2.SpecialOperators.values()) System.out.println(c);
public static OperatorTable2.SpecialOperators 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 name
java.lang.NullPointerException - if the argument is null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||