Interface QueryConstants
-
- All Known Implementing Classes:
RelationQueryNode
public interface QueryConstants
This interface defines constants for data types and operation types used in queries.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
OP_NAME_BETWEEN
Name of between operationstatic java.lang.String
OP_NAME_EQ_GENERAL
Name of equal operation (general comparison)static java.lang.String
OP_NAME_EQ_VALUE
Name of equal operationstatic java.lang.String
OP_NAME_GE_GENERAL
Name of greater or equal operation (general comparison)static java.lang.String
OP_NAME_GE_VALUE
Name of greater or equal operationstatic java.lang.String
OP_NAME_GT_GENERAL
Name of greater than operation (general comparison)static java.lang.String
OP_NAME_GT_VALUE
Name o^f greater than operationstatic java.lang.String
OP_NAME_IN
Name of in operationstatic java.lang.String
OP_NAME_LE_GENERAL
Name of less than or equal operation (general comparison)static java.lang.String
OP_NAME_LE_VALUE
Name of less than or equal operationstatic java.lang.String
OP_NAME_LIKE
Name of like operationstatic java.lang.String
OP_NAME_LT_GENERAL
Name of less than operation (general comparison)static java.lang.String
OP_NAME_LT_VALUE
Name of less than operationstatic java.lang.String
OP_NAME_NE_GENERAL
Name of not equal operation (general comparison)static java.lang.String
OP_NAME_NE_VALUE
Name of not equal operationstatic java.lang.String
OP_NAME_NOT_NULL
Name of is not null operationstatic java.lang.String
OP_NAME_NULL
Name of is null operationstatic java.lang.String
OP_NAME_SIMILAR
Name of similar operationstatic java.lang.String
OP_NAME_SPELLCHECK
Name of spellcheck operationstatic java.lang.String
OP_NAME_UNKNOW
Name of unknown operationsstatic int
OPERATION_BETWEEN
between operation: identifier [ NOT ] BETWEEN literal AND literalstatic int
OPERATION_EQ_GENERAL
equal operation: = general comparisonstatic int
OPERATION_EQ_VALUE
equal operation: eqstatic int
OPERATION_GE_GENERAL
greater or equal operation: >= general comparisonstatic int
OPERATION_GE_VALUE
greater or equal operation: gestatic int
OPERATION_GT_GENERAL
greater than operation: > general comparisonstatic int
OPERATION_GT_VALUE
greater than operation: gtstatic int
OPERATION_IN
in operation: identifier [ NOT ] IN ( literal {, literal}* )static int
OPERATION_LE_GENERAL
less than or equal operation: <= general comparisonstatic int
OPERATION_LE_VALUE
less than or equal operation: lestatic int
OPERATION_LIKE
like operation: identifier LIKE string_literalstatic int
OPERATION_LT_GENERAL
less than operation: < general comparisonstatic int
OPERATION_LT_VALUE
less than operation: ltstatic ConstantNameProvider
OPERATION_NAMES
Operation namesstatic int
OPERATION_NE_GENERAL
not equal operation: <> general comparisonstatic int
OPERATION_NE_VALUE
not equal operation: nestatic int
OPERATION_NOT_NULL
is not null operation: identifier IS NOT NULLstatic int
OPERATION_NULL
is null operation: identifier IS NULLstatic int
OPERATION_SIMILAR
similar operation: XPath: rep:similar(path_string) SQL: SIMILAR(path_string)static int
OPERATION_SPELLCHECK
spellcheck operation: XPath: rep:spellcheck(string_literal) SQL: SPELLCHECK(string_literal)static int
OPERATIONS
static int
TYPE_DATE
date data typestatic int
TYPE_DOUBLE
double data typestatic int
TYPE_LONG
long data typestatic java.lang.String
TYPE_NAME_DATE
Name of date data typestatic java.lang.String
TYPE_NAME_DOUBLE
Name of double data typestatic java.lang.String
TYPE_NAME_LONG
Name of long data typestatic java.lang.String
TYPE_NAME_POSITION
Name of position indexstatic java.lang.String
TYPE_NAME_STRING
Name of string data typestatic java.lang.String
TYPE_NAME_TIMESTAMP
Name of timestamp data typestatic java.lang.String
TYPE_NAME_UNKNOWN
Name for unknown data typesstatic ConstantNameProvider
TYPE_NAMES
Type namesstatic int
TYPE_POSITION
position index typestatic int
TYPE_STRING
string data typestatic int
TYPE_TIMESTAMP
timestamp data type
-
-
-
Field Detail
-
TYPE_LONG
static final int TYPE_LONG
long data type- See Also:
- Constant Field Values
-
TYPE_NAME_LONG
static final java.lang.String TYPE_NAME_LONG
Name of long data type- See Also:
- Constant Field Values
-
TYPE_DOUBLE
static final int TYPE_DOUBLE
double data type- See Also:
- Constant Field Values
-
TYPE_NAME_DOUBLE
static final java.lang.String TYPE_NAME_DOUBLE
Name of double data type- See Also:
- Constant Field Values
-
TYPE_STRING
static final int TYPE_STRING
string data type- See Also:
- Constant Field Values
-
TYPE_NAME_STRING
static final java.lang.String TYPE_NAME_STRING
Name of string data type- See Also:
- Constant Field Values
-
TYPE_DATE
static final int TYPE_DATE
date data type- See Also:
- Constant Field Values
-
TYPE_NAME_DATE
static final java.lang.String TYPE_NAME_DATE
Name of date data type- See Also:
- Constant Field Values
-
TYPE_TIMESTAMP
static final int TYPE_TIMESTAMP
timestamp data type- See Also:
- Constant Field Values
-
TYPE_NAME_TIMESTAMP
static final java.lang.String TYPE_NAME_TIMESTAMP
Name of timestamp data type- See Also:
- Constant Field Values
-
TYPE_POSITION
static final int TYPE_POSITION
position index type- See Also:
- Constant Field Values
-
TYPE_NAME_POSITION
static final java.lang.String TYPE_NAME_POSITION
Name of position index- See Also:
- Constant Field Values
-
TYPE_NAME_UNKNOWN
static final java.lang.String TYPE_NAME_UNKNOWN
Name for unknown data types- See Also:
- Constant Field Values
-
OPERATIONS
static final int OPERATIONS
- See Also:
- Constant Field Values
-
OPERATION_EQ_VALUE
static final int OPERATION_EQ_VALUE
equal operation: eq- See Also:
- Constant Field Values
-
OP_NAME_EQ_VALUE
static final java.lang.String OP_NAME_EQ_VALUE
Name of equal operation- See Also:
- Constant Field Values
-
OPERATION_EQ_GENERAL
static final int OPERATION_EQ_GENERAL
equal operation: = general comparison- See Also:
- Constant Field Values
-
OP_NAME_EQ_GENERAL
static final java.lang.String OP_NAME_EQ_GENERAL
Name of equal operation (general comparison)- See Also:
- Constant Field Values
-
OPERATION_NE_VALUE
static final int OPERATION_NE_VALUE
not equal operation: ne- See Also:
- Constant Field Values
-
OP_NAME_NE_VALUE
static final java.lang.String OP_NAME_NE_VALUE
Name of not equal operation- See Also:
- Constant Field Values
-
OPERATION_NE_GENERAL
static final int OPERATION_NE_GENERAL
not equal operation: <> general comparison- See Also:
- Constant Field Values
-
OP_NAME_NE_GENERAL
static final java.lang.String OP_NAME_NE_GENERAL
Name of not equal operation (general comparison)- See Also:
- Constant Field Values
-
OPERATION_LT_VALUE
static final int OPERATION_LT_VALUE
less than operation: lt- See Also:
- Constant Field Values
-
OP_NAME_LT_VALUE
static final java.lang.String OP_NAME_LT_VALUE
Name of less than operation- See Also:
- Constant Field Values
-
OPERATION_LT_GENERAL
static final int OPERATION_LT_GENERAL
less than operation: < general comparison- See Also:
- Constant Field Values
-
OP_NAME_LT_GENERAL
static final java.lang.String OP_NAME_LT_GENERAL
Name of less than operation (general comparison)- See Also:
- Constant Field Values
-
OPERATION_GT_VALUE
static final int OPERATION_GT_VALUE
greater than operation: gt- See Also:
- Constant Field Values
-
OP_NAME_GT_VALUE
static final java.lang.String OP_NAME_GT_VALUE
Name o^f greater than operation- See Also:
- Constant Field Values
-
OPERATION_GT_GENERAL
static final int OPERATION_GT_GENERAL
greater than operation: > general comparison- See Also:
- Constant Field Values
-
OP_NAME_GT_GENERAL
static final java.lang.String OP_NAME_GT_GENERAL
Name of greater than operation (general comparison)- See Also:
- Constant Field Values
-
OPERATION_GE_VALUE
static final int OPERATION_GE_VALUE
greater or equal operation: ge- See Also:
- Constant Field Values
-
OP_NAME_GE_VALUE
static final java.lang.String OP_NAME_GE_VALUE
Name of greater or equal operation- See Also:
- Constant Field Values
-
OPERATION_GE_GENERAL
static final int OPERATION_GE_GENERAL
greater or equal operation: >= general comparison- See Also:
- Constant Field Values
-
OP_NAME_GE_GENERAL
static final java.lang.String OP_NAME_GE_GENERAL
Name of greater or equal operation (general comparison)- See Also:
- Constant Field Values
-
OPERATION_LE_VALUE
static final int OPERATION_LE_VALUE
less than or equal operation: le- See Also:
- Constant Field Values
-
OP_NAME_LE_VALUE
static final java.lang.String OP_NAME_LE_VALUE
Name of less than or equal operation- See Also:
- Constant Field Values
-
OPERATION_LE_GENERAL
static final int OPERATION_LE_GENERAL
less than or equal operation: <= general comparison- See Also:
- Constant Field Values
-
OP_NAME_LE_GENERAL
static final java.lang.String OP_NAME_LE_GENERAL
Name of less than or equal operation (general comparison)- See Also:
- Constant Field Values
-
OPERATION_LIKE
static final int OPERATION_LIKE
like operation: identifier LIKE string_literal- See Also:
- Constant Field Values
-
OP_NAME_LIKE
static final java.lang.String OP_NAME_LIKE
Name of like operation- See Also:
- Constant Field Values
-
OPERATION_BETWEEN
static final int OPERATION_BETWEEN
between operation: identifier [ NOT ] BETWEEN literal AND literal- See Also:
- Constant Field Values
-
OP_NAME_BETWEEN
static final java.lang.String OP_NAME_BETWEEN
Name of between operation- See Also:
- Constant Field Values
-
OPERATION_IN
static final int OPERATION_IN
in operation: identifier [ NOT ] IN ( literal {, literal}* )- See Also:
- Constant Field Values
-
OP_NAME_IN
static final java.lang.String OP_NAME_IN
Name of in operation- See Also:
- Constant Field Values
-
OPERATION_NULL
static final int OPERATION_NULL
is null operation: identifier IS NULL- See Also:
- Constant Field Values
-
OP_NAME_NULL
static final java.lang.String OP_NAME_NULL
Name of is null operation- See Also:
- Constant Field Values
-
OPERATION_NOT_NULL
static final int OPERATION_NOT_NULL
is not null operation: identifier IS NOT NULL- See Also:
- Constant Field Values
-
OP_NAME_NOT_NULL
static final java.lang.String OP_NAME_NOT_NULL
Name of is not null operation- See Also:
- Constant Field Values
-
OPERATION_SIMILAR
static final int OPERATION_SIMILAR
similar operation: XPath: rep:similar(path_string) SQL: SIMILAR(path_string)- See Also:
- Constant Field Values
-
OP_NAME_SIMILAR
static final java.lang.String OP_NAME_SIMILAR
Name of similar operation- See Also:
- Constant Field Values
-
OPERATION_SPELLCHECK
static final int OPERATION_SPELLCHECK
spellcheck operation: XPath: rep:spellcheck(string_literal) SQL: SPELLCHECK(string_literal)- See Also:
- Constant Field Values
-
OP_NAME_SPELLCHECK
static final java.lang.String OP_NAME_SPELLCHECK
Name of spellcheck operation- See Also:
- Constant Field Values
-
OP_NAME_UNKNOW
static final java.lang.String OP_NAME_UNKNOW
Name of unknown operations- See Also:
- Constant Field Values
-
OPERATION_NAMES
static final ConstantNameProvider OPERATION_NAMES
Operation names
-
TYPE_NAMES
static final ConstantNameProvider TYPE_NAMES
Type names
-
-