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
Fields Modifier and Type Field Description static int
AND
INTERNAL: Constant referring to theSQLAnd
class.static int
EQUALS
INTERNAL: Constant referring to theSQLEquals
class.static int
EXISTS
INTERNAL: Constant referring to theSQLExists
class.static int
FALSE
INTERNAL: Constant referring to theSQLFalse
class.static int
IN
INTERNAL: Constant referring to theSQLIn
class.static int
IS_NULL
INTERNAL: Constant referring to theSQLIsNull
class.static int
JOIN
INTERNAL: Constant referring to theSQLJoin
class.static int
LIKE
INTERNAL: Constant referring to theSQLLike
class.static int
NOT
INTERNAL: Constant referring to theSQLNot
class.static int
NOT_EQUALS
INTERNAL: Constant referring to theSQLNotEquals
class.static int
OR
INTERNAL: Constant referring to theSQLOr
class.static int
SET_OPERATION
INTERNAL: Constant referring to theSQLSetOperation
class.static int
VALUE_EXPRESSION
INTERNAL: Constant referring to theSQLValueExpression
class.static int
VERBATIM
INTERNAL: Constant referring to theSQLVerbatimExpression
class.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getType()
INTERNAL: Returns the expression type.
-
-
-
Field Detail
-
AND
static final int AND
INTERNAL: Constant referring to theSQLAnd
class.- See Also:
- Constant Field Values
-
OR
static final int OR
INTERNAL: Constant referring to theSQLOr
class.- See Also:
- Constant Field Values
-
NOT
static final int NOT
INTERNAL: Constant referring to theSQLNot
class.- See Also:
- Constant Field Values
-
EQUALS
static final int EQUALS
INTERNAL: Constant referring to theSQLEquals
class.- See Also:
- Constant Field Values
-
NOT_EQUALS
static final int NOT_EQUALS
INTERNAL: Constant referring to theSQLNotEquals
class.- See Also:
- Constant Field Values
-
IS_NULL
static final int IS_NULL
INTERNAL: Constant referring to theSQLIsNull
class.- See Also:
- Constant Field Values
-
LIKE
static final int LIKE
INTERNAL: Constant referring to theSQLLike
class.- See Also:
- Constant Field Values
-
VERBATIM
static final int VERBATIM
INTERNAL: Constant referring to theSQLVerbatimExpression
class.- See Also:
- Constant Field Values
-
EXISTS
static final int EXISTS
INTERNAL: Constant referring to theSQLExists
class.- See Also:
- Constant Field Values
-
IN
static final int IN
INTERNAL: Constant referring to theSQLIn
class.- See Also:
- Constant Field Values
-
FALSE
static final int FALSE
INTERNAL: Constant referring to theSQLFalse
class.- See Also:
- Constant Field Values
-
JOIN
static final int JOIN
INTERNAL: Constant referring to theSQLJoin
class.- See Also:
- Constant Field Values
-
VALUE_EXPRESSION
static final int VALUE_EXPRESSION
INTERNAL: Constant referring to theSQLValueExpression
class.- See Also:
- Constant Field Values
-
SET_OPERATION
static final int SET_OPERATION
INTERNAL: Constant referring to theSQLSetOperation
class.- 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 theSQLExpressionIF
interface.
-
-