Interface SQLExpressionIF
- All Known Implementing Classes:
SQLAnd,SQLEquals,SQLExists,SQLFalse,SQLIn,SQLIsNull,SQLJoin,SQLLike,SQLNot,SQLNotEquals,SQLOr,SQLSetOperation,SQLValueExpression,SQLVerbatimExpression
public interface SQLExpressionIF
INTERNAL: Represents an expression in a SQL query.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intINTERNAL: Constant referring to theSQLAndclass.static final intINTERNAL: Constant referring to theSQLEqualsclass.static final intINTERNAL: Constant referring to theSQLExistsclass.static final intINTERNAL: Constant referring to theSQLFalseclass.static final intINTERNAL: Constant referring to theSQLInclass.static final intINTERNAL: Constant referring to theSQLIsNullclass.static final intINTERNAL: Constant referring to theSQLJoinclass.static final intINTERNAL: Constant referring to theSQLLikeclass.static final intINTERNAL: Constant referring to theSQLNotclass.static final intINTERNAL: Constant referring to theSQLNotEqualsclass.static final intINTERNAL: Constant referring to theSQLOrclass.static final intINTERNAL: Constant referring to theSQLSetOperationclass.static final intINTERNAL: Constant referring to theSQLValueExpressionclass.static final intINTERNAL: Constant referring to theSQLVerbatimExpressionclass. -
Method Summary
-
Field Details
-
AND
static final int ANDINTERNAL: Constant referring to theSQLAndclass.- See Also:
-
OR
static final int ORINTERNAL: Constant referring to theSQLOrclass.- See Also:
-
NOT
static final int NOTINTERNAL: Constant referring to theSQLNotclass.- See Also:
-
EQUALS
static final int EQUALSINTERNAL: Constant referring to theSQLEqualsclass.- See Also:
-
NOT_EQUALS
static final int NOT_EQUALSINTERNAL: Constant referring to theSQLNotEqualsclass.- See Also:
-
IS_NULL
static final int IS_NULLINTERNAL: Constant referring to theSQLIsNullclass.- See Also:
-
LIKE
static final int LIKEINTERNAL: Constant referring to theSQLLikeclass.- See Also:
-
VERBATIM
static final int VERBATIMINTERNAL: Constant referring to theSQLVerbatimExpressionclass.- See Also:
-
EXISTS
static final int EXISTSINTERNAL: Constant referring to theSQLExistsclass.- See Also:
-
IN
static final int ININTERNAL: Constant referring to theSQLInclass.- See Also:
-
FALSE
static final int FALSEINTERNAL: Constant referring to theSQLFalseclass.- See Also:
-
JOIN
static final int JOININTERNAL: Constant referring to theSQLJoinclass.- See Also:
-
VALUE_EXPRESSION
static final int VALUE_EXPRESSIONINTERNAL: Constant referring to theSQLValueExpressionclass.- See Also:
-
SET_OPERATION
static final int SET_OPERATIONINTERNAL: Constant referring to theSQLSetOperationclass.- See Also:
-
-
Method Details
-
getType
int getType()INTERNAL: Returns the expression type. The type is represented by one of the constants in theSQLExpressionIFinterface.
-