Interface SQLExpressionIF
-
- All Known Implementing Classes:
SQLAnd,SQLEquals,SQLExists,SQLFalse,SQLIn,SQLIsNull,SQLJoin,SQLLike,SQLNot,SQLNotEquals,SQLOr,SQLSetOperation,SQLValueExpression,SQLVerbatimExpression
public interface SQLExpressionIFINTERNAL: Represents an expression in a SQL query.
-
-
Field Summary
Fields Modifier and Type Field Description static intANDINTERNAL: Constant referring to theSQLAndclass.static intEQUALSINTERNAL: Constant referring to theSQLEqualsclass.static intEXISTSINTERNAL: Constant referring to theSQLExistsclass.static intFALSEINTERNAL: Constant referring to theSQLFalseclass.static intININTERNAL: Constant referring to theSQLInclass.static intIS_NULLINTERNAL: Constant referring to theSQLIsNullclass.static intJOININTERNAL: Constant referring to theSQLJoinclass.static intLIKEINTERNAL: Constant referring to theSQLLikeclass.static intNOTINTERNAL: Constant referring to theSQLNotclass.static intNOT_EQUALSINTERNAL: Constant referring to theSQLNotEqualsclass.static intORINTERNAL: Constant referring to theSQLOrclass.static intSET_OPERATIONINTERNAL: Constant referring to theSQLSetOperationclass.static intVALUE_EXPRESSIONINTERNAL: Constant referring to theSQLValueExpressionclass.static intVERBATIMINTERNAL: Constant referring to theSQLVerbatimExpressionclass.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetType()INTERNAL: Returns the expression type.
-
-
-
Field Detail
-
AND
static final int AND
INTERNAL: Constant referring to theSQLAndclass.- See Also:
- Constant Field Values
-
OR
static final int OR
INTERNAL: Constant referring to theSQLOrclass.- See Also:
- Constant Field Values
-
NOT
static final int NOT
INTERNAL: Constant referring to theSQLNotclass.- See Also:
- Constant Field Values
-
EQUALS
static final int EQUALS
INTERNAL: Constant referring to theSQLEqualsclass.- See Also:
- Constant Field Values
-
NOT_EQUALS
static final int NOT_EQUALS
INTERNAL: Constant referring to theSQLNotEqualsclass.- See Also:
- Constant Field Values
-
IS_NULL
static final int IS_NULL
INTERNAL: Constant referring to theSQLIsNullclass.- See Also:
- Constant Field Values
-
LIKE
static final int LIKE
INTERNAL: Constant referring to theSQLLikeclass.- See Also:
- Constant Field Values
-
VERBATIM
static final int VERBATIM
INTERNAL: Constant referring to theSQLVerbatimExpressionclass.- See Also:
- Constant Field Values
-
EXISTS
static final int EXISTS
INTERNAL: Constant referring to theSQLExistsclass.- See Also:
- Constant Field Values
-
IN
static final int IN
INTERNAL: Constant referring to theSQLInclass.- See Also:
- Constant Field Values
-
FALSE
static final int FALSE
INTERNAL: Constant referring to theSQLFalseclass.- See Also:
- Constant Field Values
-
JOIN
static final int JOIN
INTERNAL: Constant referring to theSQLJoinclass.- See Also:
- Constant Field Values
-
VALUE_EXPRESSION
static final int VALUE_EXPRESSION
INTERNAL: Constant referring to theSQLValueExpressionclass.- See Also:
- Constant Field Values
-
SET_OPERATION
static final int SET_OPERATION
INTERNAL: Constant referring to theSQLSetOperationclass.- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
int getType()
INTERNAL: Returns the expression type. The type is represented by one of the constants in theSQLExpressionIFinterface.
-
-