Interface JDOValueIF
- All Known Implementing Classes:
JDOCollection,JDOField,JDOFunction,JDONativeValue,JDONull,JDOObject,JDOParameter,JDOPrimitive,JDOString,JDOVariable
public interface JDOValueIF
INTERNAL: Represents a value in a JDO query. A value will return
the value it represents when evaluated.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final intINTERNAL: Constant referring to theJDOCollectionclass.static final intINTERNAL: Constant referring to theJDOFieldclass.static final intINTERNAL: Constant referring to theJDOFunctionclass.static final intINTERNAL: Constant referring to theJDONativeValueclass.static final intINTERNAL: Constant referring to theJDONullclass.static final intINTERNAL: Constant referring to theJDOObjectclass.static final intINTERNAL: Constant referring to theJDOParameterclass.static final intINTERNAL: Constant referring to theJDOPrimitiveclass.static final intINTERNAL: Constant referring to theJDOStringclass.static final intINTERNAL: Constant referring to theJDOVariableclass. -
Method Summary
Modifier and TypeMethodDescriptionintgetType()INTERNAL: Returns the type of JDO value indicated by one of the constants in theJDOValueIFinterface.voidvisit(JDOVisitorIF visitor) INTERNAL: Allows the value to be visited.
-
Field Details
-
NULL
static final int NULLINTERNAL: Constant referring to theJDONullclass.- See Also:
-
FIELD
static final int FIELDINTERNAL: Constant referring to theJDOFieldclass.- See Also:
-
VARIABLE
static final int VARIABLEINTERNAL: Constant referring to theJDOVariableclass.- See Also:
-
PARAMETER
static final int PARAMETERINTERNAL: Constant referring to theJDOParameterclass.- See Also:
-
PRIMITIVE
static final int PRIMITIVEINTERNAL: Constant referring to theJDOPrimitiveclass.- See Also:
-
OBJECT
static final int OBJECTINTERNAL: Constant referring to theJDOObjectclass.- See Also:
-
COLLECTION
static final int COLLECTIONINTERNAL: Constant referring to theJDOCollectionclass.- See Also:
-
STRING
static final int STRINGINTERNAL: Constant referring to theJDOStringclass.- See Also:
-
NATIVE_VALUE
static final int NATIVE_VALUEINTERNAL: Constant referring to theJDONativeValueclass.- See Also:
-
FUNCTION
static final int FUNCTIONINTERNAL: Constant referring to theJDOFunctionclass.- See Also:
-
-
Method Details
-
getType
int getType()INTERNAL: Returns the type of JDO value indicated by one of the constants in theJDOValueIFinterface. -
visit
INTERNAL: Allows the value to be visited. This method is used for retrieval of nested data in expressions.
-