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
Fields Modifier and Type Field Description static int
COLLECTION
INTERNAL: Constant referring to theJDOCollection
class.static int
FIELD
INTERNAL: Constant referring to theJDOField
class.static int
FUNCTION
INTERNAL: Constant referring to theJDOFunction
class.static int
NATIVE_VALUE
INTERNAL: Constant referring to theJDONativeValue
class.static int
NULL
INTERNAL: Constant referring to theJDONull
class.static int
OBJECT
INTERNAL: Constant referring to theJDOObject
class.static int
PARAMETER
INTERNAL: Constant referring to theJDOParameter
class.static int
PRIMITIVE
INTERNAL: Constant referring to theJDOPrimitive
class.static int
STRING
INTERNAL: Constant referring to theJDOString
class.static int
VARIABLE
INTERNAL: Constant referring to theJDOVariable
class.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description int
getType()
INTERNAL: Returns the type of JDO value indicated by one of the constants in theJDOValueIF
interface.void
visit(JDOVisitorIF visitor)
INTERNAL: Allows the value to be visited.
-
-
-
Field Detail
-
NULL
static final int NULL
INTERNAL: Constant referring to theJDONull
class.- See Also:
- Constant Field Values
-
FIELD
static final int FIELD
INTERNAL: Constant referring to theJDOField
class.- See Also:
- Constant Field Values
-
VARIABLE
static final int VARIABLE
INTERNAL: Constant referring to theJDOVariable
class.- See Also:
- Constant Field Values
-
PARAMETER
static final int PARAMETER
INTERNAL: Constant referring to theJDOParameter
class.- See Also:
- Constant Field Values
-
PRIMITIVE
static final int PRIMITIVE
INTERNAL: Constant referring to theJDOPrimitive
class.- See Also:
- Constant Field Values
-
OBJECT
static final int OBJECT
INTERNAL: Constant referring to theJDOObject
class.- See Also:
- Constant Field Values
-
COLLECTION
static final int COLLECTION
INTERNAL: Constant referring to theJDOCollection
class.- See Also:
- Constant Field Values
-
STRING
static final int STRING
INTERNAL: Constant referring to theJDOString
class.- See Also:
- Constant Field Values
-
NATIVE_VALUE
static final int NATIVE_VALUE
INTERNAL: Constant referring to theJDONativeValue
class.- See Also:
- Constant Field Values
-
FUNCTION
static final int FUNCTION
INTERNAL: Constant referring to theJDOFunction
class.- See Also:
- Constant Field Values
-
-
Method Detail
-
getType
int getType()
INTERNAL: Returns the type of JDO value indicated by one of the constants in theJDOValueIF
interface.
-
visit
void visit(JDOVisitorIF visitor)
INTERNAL: Allows the value to be visited. This method is used for retrieval of nested data in expressions.
-
-