org.jnetstream.lang.npl.type
Enum DataOperations.DataOperation
java.lang.Object
java.lang.Enum<DataOperations.DataOperation>
org.jnetstream.lang.npl.type.DataOperations.DataOperation
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<DataOperations.DataOperation>
- Enclosing interface:
- DataOperations
public static enum DataOperations.DataOperation
- extends java.lang.Enum<DataOperations.DataOperation>
- Author:
- Mark Bednarczyk, Sly Technologies, Inc.
| Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
ADD
public static final DataOperations.DataOperation ADD
S
public static final DataOperations.DataOperation S
MULTIPLY
public static final DataOperations.DataOperation MULTIPLY
DIVIDE
public static final DataOperations.DataOperation DIVIDE
MODULO
public static final DataOperations.DataOperation MODULO
INCREMENT
public static final DataOperations.DataOperation INCREMENT
BXOR
public static final DataOperations.DataOperation BXOR
BOR
public static final DataOperations.DataOperation BOR
BAND
public static final DataOperations.DataOperation BAND
BNOR
public static final DataOperations.DataOperation BNOR
BNOT
public static final DataOperations.DataOperation BNOT
BRSHIFT
public static final DataOperations.DataOperation BRSHIFT
BRRSHIFT
public static final DataOperations.DataOperation BRRSHIFT
BLSHIFT
public static final DataOperations.DataOperation BLSHIFT
BLLSHIFT
public static final DataOperations.DataOperation BLLSHIFT
LOR
public static final DataOperations.DataOperation LOR
LAND
public static final DataOperations.DataOperation LAND
LNOT
public static final DataOperations.DataOperation LNOT
LEQ
public static final DataOperations.DataOperation LEQ
LLE
public static final DataOperations.DataOperation LLE
LGT
public static final DataOperations.DataOperation LGT
CAST
public static final DataOperations.DataOperation CAST
values
public static final DataOperations.DataOperation[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(DataOperations.DataOperation c : DataOperations.DataOperation.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static DataOperations.DataOperation valueOf(java.lang.String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name