Interface JDOValueIF
-
- All Known Implementing Classes:
JDOCollection,JDOField,JDOFunction,JDONativeValue,JDONull,JDOObject,JDOParameter,JDOPrimitive,JDOString,JDOVariable
public interface JDOValueIFINTERNAL: Represents a value in a JDO query. A value will return the value it represents when evaluated.
-
-
Field Summary
Fields Modifier and Type Field Description static intCOLLECTIONINTERNAL: Constant referring to theJDOCollectionclass.static intFIELDINTERNAL: Constant referring to theJDOFieldclass.static intFUNCTIONINTERNAL: Constant referring to theJDOFunctionclass.static intNATIVE_VALUEINTERNAL: Constant referring to theJDONativeValueclass.static intNULLINTERNAL: Constant referring to theJDONullclass.static intOBJECTINTERNAL: Constant referring to theJDOObjectclass.static intPARAMETERINTERNAL: Constant referring to theJDOParameterclass.static intPRIMITIVEINTERNAL: Constant referring to theJDOPrimitiveclass.static intSTRINGINTERNAL: Constant referring to theJDOStringclass.static intVARIABLEINTERNAL: Constant referring to theJDOVariableclass.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description intgetType()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 Detail
-
NULL
static final int NULL
INTERNAL: Constant referring to theJDONullclass.- See Also:
- Constant Field Values
-
FIELD
static final int FIELD
INTERNAL: Constant referring to theJDOFieldclass.- See Also:
- Constant Field Values
-
VARIABLE
static final int VARIABLE
INTERNAL: Constant referring to theJDOVariableclass.- See Also:
- Constant Field Values
-
PARAMETER
static final int PARAMETER
INTERNAL: Constant referring to theJDOParameterclass.- See Also:
- Constant Field Values
-
PRIMITIVE
static final int PRIMITIVE
INTERNAL: Constant referring to theJDOPrimitiveclass.- See Also:
- Constant Field Values
-
OBJECT
static final int OBJECT
INTERNAL: Constant referring to theJDOObjectclass.- See Also:
- Constant Field Values
-
COLLECTION
static final int COLLECTION
INTERNAL: Constant referring to theJDOCollectionclass.- See Also:
- Constant Field Values
-
STRING
static final int STRING
INTERNAL: Constant referring to theJDOStringclass.- See Also:
- Constant Field Values
-
NATIVE_VALUE
static final int NATIVE_VALUE
INTERNAL: Constant referring to theJDONativeValueclass.- See Also:
- Constant Field Values
-
FUNCTION
static final int FUNCTION
INTERNAL: Constant referring to theJDOFunctionclass.- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
int getType()
INTERNAL: Returns the type of JDO value indicated by one of the constants in theJDOValueIFinterface.
-
visit
void visit(JDOVisitorIF visitor)
INTERNAL: Allows the value to be visited. This method is used for retrieval of nested data in expressions.
-
-