Class JDOValueExpression
- java.lang.Object
-
- net.ontopia.persistence.query.jdo.JDOValueExpression
-
- All Implemented Interfaces:
JDOExpressionIF
public class JDOValueExpression extends Object implements JDOExpressionIF
INTERNAL: JDOQL boolean expression value: true or false.
-
-
Field Summary
Fields Modifier and Type Field Description protected JDOValueIF
value
-
Fields inherited from interface net.ontopia.persistence.query.jdo.JDOExpressionIF
AND, BOOLEAN, CONTAINS, ENDS_WITH, EQUALS, IS_EMPTY, LIKE, NOT, NOT_EQUALS, OR, SET_OPERATION, STARTS_WITH, VALUE_EXPRESSION
-
-
Constructor Summary
Constructors Constructor Description JDOValueExpression(JDOValueIF value)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
int
getType()
INTERNAL: Returns the type of JDO expression indicated by one of the constants in theJDOExpressionIF
interface.JDOValueIF
getValue()
int
hashCode()
void
setValue(JDOValueIF value)
String
toString()
void
visit(JDOVisitorIF visitor)
INTERNAL: Allows the value to be visited.
-
-
-
Field Detail
-
value
protected JDOValueIF value
-
-
Constructor Detail
-
JDOValueExpression
public JDOValueExpression(JDOValueIF value)
-
-
Method Detail
-
getType
public int getType()
Description copied from interface:JDOExpressionIF
INTERNAL: Returns the type of JDO expression indicated by one of the constants in theJDOExpressionIF
interface.- Specified by:
getType
in interfaceJDOExpressionIF
-
getValue
public JDOValueIF getValue()
-
setValue
public void setValue(JDOValueIF value)
-
visit
public void visit(JDOVisitorIF visitor)
Description copied from interface:JDOExpressionIF
INTERNAL: Allows the value to be visited. This method is used for retrieval of nested data in expressions.- Specified by:
visit
in interfaceJDOExpressionIF
-
-