Interface JDOExpressionIF
-
- All Known Implementing Classes:
JDOAnd
,JDOBoolean
,JDOContains
,JDOEndsWith
,JDOEquals
,JDOIsEmpty
,JDOLike
,JDONot
,JDONotEquals
,JDOOr
,JDOSetOperation
,JDOStartsWith
,JDOValueExpression
public interface JDOExpressionIF
INTERNAL: Represents an expression in a JDO query. An expression will return a boolean value when evaluated.
-
-
Field Summary
Fields Modifier and Type Field Description static int
AND
INTERNAL: Constant referring to theJDOAnd
class.static int
BOOLEAN
INTERNAL: Constant referring to theJDOBoolean
class.static int
CONTAINS
INTERNAL: Constant referring to theJDOContains
class.static int
ENDS_WITH
INTERNAL: Constant referring to theJDOEndsWith
class.static int
EQUALS
INTERNAL: Constant referring to theJDOEquals
class.static int
IS_EMPTY
INTERNAL: Constant referring to theJDOIsEmpty
class.static int
LIKE
INTERNAL: Constant referring to theJDOLike
class.static int
NOT
INTERNAL: Constant referring to theJDONot
class.static int
NOT_EQUALS
INTERNAL: Constant referring to theJDONotEquals
class.static int
OR
INTERNAL: Constant referring to theJDOOr
class.static int
SET_OPERATION
INTERNAL: Constant referring to theJDOSetOperation
class.static int
STARTS_WITH
INTERNAL: Constant referring to theJDOStartsWith
class.static int
VALUE_EXPRESSION
INTERNAL: Constant referring to theJDOValueExpression
class.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getType()
INTERNAL: Returns the type of JDO expression indicated by one of the constants in theJDOExpressionIF
interface.void
visit(JDOVisitorIF visitor)
INTERNAL: Allows the value to be visited.
-
-
-
Field Detail
-
AND
static final int AND
INTERNAL: Constant referring to theJDOAnd
class.- See Also:
- Constant Field Values
-
OR
static final int OR
INTERNAL: Constant referring to theJDOOr
class.- See Also:
- Constant Field Values
-
NOT
static final int NOT
INTERNAL: Constant referring to theJDONot
class.- See Also:
- Constant Field Values
-
BOOLEAN
static final int BOOLEAN
INTERNAL: Constant referring to theJDOBoolean
class.- See Also:
- Constant Field Values
-
VALUE_EXPRESSION
static final int VALUE_EXPRESSION
INTERNAL: Constant referring to theJDOValueExpression
class.- See Also:
- Constant Field Values
-
EQUALS
static final int EQUALS
INTERNAL: Constant referring to theJDOEquals
class.- See Also:
- Constant Field Values
-
NOT_EQUALS
static final int NOT_EQUALS
INTERNAL: Constant referring to theJDONotEquals
class.- See Also:
- Constant Field Values
-
CONTAINS
static final int CONTAINS
INTERNAL: Constant referring to theJDOContains
class.- See Also:
- Constant Field Values
-
IS_EMPTY
static final int IS_EMPTY
INTERNAL: Constant referring to theJDOIsEmpty
class.- See Also:
- Constant Field Values
-
STARTS_WITH
static final int STARTS_WITH
INTERNAL: Constant referring to theJDOStartsWith
class.- See Also:
- Constant Field Values
-
ENDS_WITH
static final int ENDS_WITH
INTERNAL: Constant referring to theJDOEndsWith
class.- See Also:
- Constant Field Values
-
LIKE
static final int LIKE
INTERNAL: Constant referring to theJDOLike
class.- See Also:
- Constant Field Values
-
SET_OPERATION
static final int SET_OPERATION
INTERNAL: Constant referring to theJDOSetOperation
class.- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
int getType()
INTERNAL: Returns the type of JDO expression indicated by one of the constants in theJDOExpressionIF
interface.
-
visit
void visit(JDOVisitorIF visitor)
INTERNAL: Allows the value to be visited. This method is used for retrieval of nested data in expressions.
-
-