Interface JDOExpressionIF
-
- All Known Implementing Classes:
JDOAnd,JDOBoolean,JDOContains,JDOEndsWith,JDOEquals,JDOIsEmpty,JDOLike,JDONot,JDONotEquals,JDOOr,JDOSetOperation,JDOStartsWith,JDOValueExpression
public interface JDOExpressionIFINTERNAL: 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 intANDINTERNAL: Constant referring to theJDOAndclass.static intBOOLEANINTERNAL: Constant referring to theJDOBooleanclass.static intCONTAINSINTERNAL: Constant referring to theJDOContainsclass.static intENDS_WITHINTERNAL: Constant referring to theJDOEndsWithclass.static intEQUALSINTERNAL: Constant referring to theJDOEqualsclass.static intIS_EMPTYINTERNAL: Constant referring to theJDOIsEmptyclass.static intLIKEINTERNAL: Constant referring to theJDOLikeclass.static intNOTINTERNAL: Constant referring to theJDONotclass.static intNOT_EQUALSINTERNAL: Constant referring to theJDONotEqualsclass.static intORINTERNAL: Constant referring to theJDOOrclass.static intSET_OPERATIONINTERNAL: Constant referring to theJDOSetOperationclass.static intSTARTS_WITHINTERNAL: Constant referring to theJDOStartsWithclass.static intVALUE_EXPRESSIONINTERNAL: Constant referring to theJDOValueExpressionclass.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetType()INTERNAL: Returns the type of JDO expression indicated by one of the constants in theJDOExpressionIFinterface.voidvisit(JDOVisitorIF visitor)INTERNAL: Allows the value to be visited.
-
-
-
Field Detail
-
AND
static final int AND
INTERNAL: Constant referring to theJDOAndclass.- See Also:
- Constant Field Values
-
OR
static final int OR
INTERNAL: Constant referring to theJDOOrclass.- See Also:
- Constant Field Values
-
NOT
static final int NOT
INTERNAL: Constant referring to theJDONotclass.- See Also:
- Constant Field Values
-
BOOLEAN
static final int BOOLEAN
INTERNAL: Constant referring to theJDOBooleanclass.- See Also:
- Constant Field Values
-
VALUE_EXPRESSION
static final int VALUE_EXPRESSION
INTERNAL: Constant referring to theJDOValueExpressionclass.- See Also:
- Constant Field Values
-
EQUALS
static final int EQUALS
INTERNAL: Constant referring to theJDOEqualsclass.- See Also:
- Constant Field Values
-
NOT_EQUALS
static final int NOT_EQUALS
INTERNAL: Constant referring to theJDONotEqualsclass.- See Also:
- Constant Field Values
-
CONTAINS
static final int CONTAINS
INTERNAL: Constant referring to theJDOContainsclass.- See Also:
- Constant Field Values
-
IS_EMPTY
static final int IS_EMPTY
INTERNAL: Constant referring to theJDOIsEmptyclass.- See Also:
- Constant Field Values
-
STARTS_WITH
static final int STARTS_WITH
INTERNAL: Constant referring to theJDOStartsWithclass.- See Also:
- Constant Field Values
-
ENDS_WITH
static final int ENDS_WITH
INTERNAL: Constant referring to theJDOEndsWithclass.- See Also:
- Constant Field Values
-
LIKE
static final int LIKE
INTERNAL: Constant referring to theJDOLikeclass.- See Also:
- Constant Field Values
-
SET_OPERATION
static final int SET_OPERATION
INTERNAL: Constant referring to theJDOSetOperationclass.- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
int getType()
INTERNAL: Returns the type of JDO expression indicated by one of the constants in theJDOExpressionIFinterface.
-
visit
void visit(JDOVisitorIF visitor)
INTERNAL: Allows the value to be visited. This method is used for retrieval of nested data in expressions.
-
-