|
SQLJet Home | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<ISqlJetBinaryExpression.Operation>
org.tmatesoft.sqljet.core.schema.ISqlJetBinaryExpression.Operation
public static enum ISqlJetBinaryExpression.Operation
Operation which combine expressions in binary expression
ISqlJetBinaryExpression
.
Enum Constant Summary | |
---|---|
AND
Logical "and" : AND |
|
BIT_AND
Bitwise "and" : & |
|
BIT_OR
Bitwise "or" : | |
|
CONCATENATE
Strings concatenation : || |
|
DIVIDE
Divide : / |
|
EQUALS
Equals : = , == |
|
GREATER
Greater : > |
|
GREATER_OR_EQ
Greater or equals : >= |
|
LESS
Less : < |
|
LESS_OR_EQ
Less or equals : <= |
|
MINUS
Minus : - |
|
MODULO
Modulo (divide remainder) : % |
|
MULTIPLY
Multiply : * |
|
NOT_EQUALS
Not equals : <> , != |
|
OR
Logical "or" : OR |
|
PLUS
Plus : + |
|
SHIFT_LEFT
Bitwise left-shift : << |
|
SHIFT_RIGHT
Bitwise right-shift : >> |
Method Summary | |
---|---|
static ISqlJetBinaryExpression.Operation |
decode(java.lang.String s)
Decode operation from string. |
java.lang.String |
toString()
|
static ISqlJetBinaryExpression.Operation |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. |
static ISqlJetBinaryExpression.Operation[] |
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, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final ISqlJetBinaryExpression.Operation OR
OR
public static final ISqlJetBinaryExpression.Operation AND
AND
public static final ISqlJetBinaryExpression.Operation EQUALS
=
, ==
public static final ISqlJetBinaryExpression.Operation NOT_EQUALS
<>
, !=
public static final ISqlJetBinaryExpression.Operation LESS
<
public static final ISqlJetBinaryExpression.Operation LESS_OR_EQ
<=
public static final ISqlJetBinaryExpression.Operation GREATER
>
public static final ISqlJetBinaryExpression.Operation GREATER_OR_EQ
>=
public static final ISqlJetBinaryExpression.Operation SHIFT_LEFT
<<
public static final ISqlJetBinaryExpression.Operation SHIFT_RIGHT
>>
public static final ISqlJetBinaryExpression.Operation BIT_AND
&
public static final ISqlJetBinaryExpression.Operation BIT_OR
|
public static final ISqlJetBinaryExpression.Operation PLUS
+
public static final ISqlJetBinaryExpression.Operation MINUS
-
public static final ISqlJetBinaryExpression.Operation MULTIPLY
*
public static final ISqlJetBinaryExpression.Operation DIVIDE
/
public static final ISqlJetBinaryExpression.Operation MODULO
%
public static final ISqlJetBinaryExpression.Operation CONCATENATE
||
Method Detail |
---|
public static ISqlJetBinaryExpression.Operation[] values()
for (ISqlJetBinaryExpression.Operation c : ISqlJetBinaryExpression.Operation.values()) System.out.println(c);
public static ISqlJetBinaryExpression.Operation 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 nullpublic static ISqlJetBinaryExpression.Operation decode(java.lang.String s)
s
- string to decode
public java.lang.String toString()
toString
in class java.lang.Enum<ISqlJetBinaryExpression.Operation>
|
SQLJet Home | ||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |