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
FieldsModifier and TypeFieldDescriptionstatic final intINTERNAL: Constant referring to theJDOAndclass.static final intINTERNAL: Constant referring to theJDOBooleanclass.static final intINTERNAL: Constant referring to theJDOContainsclass.static final intINTERNAL: Constant referring to theJDOEndsWithclass.static final intINTERNAL: Constant referring to theJDOEqualsclass.static final intINTERNAL: Constant referring to theJDOIsEmptyclass.static final intINTERNAL: Constant referring to theJDOLikeclass.static final intINTERNAL: Constant referring to theJDONotclass.static final intINTERNAL: Constant referring to theJDONotEqualsclass.static final intINTERNAL: Constant referring to theJDOOrclass.static final intINTERNAL: Constant referring to theJDOSetOperationclass.static final intINTERNAL: Constant referring to theJDOStartsWithclass.static final intINTERNAL: Constant referring to theJDOValueExpressionclass. -
Method Summary
Modifier and TypeMethodDescriptionintgetType()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 Details
-
AND
static final int ANDINTERNAL: Constant referring to theJDOAndclass.- See Also:
-
OR
static final int ORINTERNAL: Constant referring to theJDOOrclass.- See Also:
-
NOT
static final int NOTINTERNAL: Constant referring to theJDONotclass.- See Also:
-
BOOLEAN
static final int BOOLEANINTERNAL: Constant referring to theJDOBooleanclass.- See Also:
-
VALUE_EXPRESSION
static final int VALUE_EXPRESSIONINTERNAL: Constant referring to theJDOValueExpressionclass.- See Also:
-
EQUALS
static final int EQUALSINTERNAL: Constant referring to theJDOEqualsclass.- See Also:
-
NOT_EQUALS
static final int NOT_EQUALSINTERNAL: Constant referring to theJDONotEqualsclass.- See Also:
-
CONTAINS
static final int CONTAINSINTERNAL: Constant referring to theJDOContainsclass.- See Also:
-
IS_EMPTY
static final int IS_EMPTYINTERNAL: Constant referring to theJDOIsEmptyclass.- See Also:
-
STARTS_WITH
static final int STARTS_WITHINTERNAL: Constant referring to theJDOStartsWithclass.- See Also:
-
ENDS_WITH
static final int ENDS_WITHINTERNAL: Constant referring to theJDOEndsWithclass.- See Also:
-
LIKE
static final int LIKEINTERNAL: Constant referring to theJDOLikeclass.- See Also:
-
SET_OPERATION
static final int SET_OPERATIONINTERNAL: Constant referring to theJDOSetOperationclass.- See Also:
-
-
Method Details
-
getType
int getType()INTERNAL: Returns the type of JDO expression indicated by one of the constants in theJDOExpressionIFinterface. -
visit
INTERNAL: Allows the value to be visited. This method is used for retrieval of nested data in expressions.
-