Class MemberOfExpression
- java.lang.Object
-
- org.apache.openjpa.persistence.query.MemberOfExpression
-
public class MemberOfExpression extends java.lang.Object
Denotes e1 MEMBER OF e2 Expression.- Author:
- Pinaki Poddar
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Expression
_e1
protected Expression
_e2
protected BinaryConditionalOperator
_op
static java.lang.String
CLOSE_BRACE
static java.lang.String
COMMA
static java.lang.String
EMPTY
static java.lang.String
OPEN_BRACE
-
Constructor Summary
Constructors Constructor Description MemberOfExpression(Expression op, Expression op2)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Predicate
and(Predicate predicate)
Creates an AND of the predicate with the argument.java.lang.String
asExpression(org.apache.openjpa.persistence.query.AliasContext ctx)
Get a JPQL fragment as used in WHERE clause.java.lang.String
asJoinable(org.apache.openjpa.persistence.query.AliasContext ctx)
Gets the string representation in FROM clause.java.lang.String
asProjection(org.apache.openjpa.persistence.query.AliasContext ctx)
Gets the string representation in SELECT projection.java.lang.String
getAliasHint(org.apache.openjpa.persistence.query.AliasContext ctx)
Gets the hint to be used while creating alias.Expression
getOperand()
Expression
getOperand2()
BinaryConditionalOperator
getOperator()
Predicate
not()
Creates a negation of the predicate with the argument.Predicate
or(Predicate predicate)
Creates an OR of the predicate with the argument.-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.apache.openjpa.persistence.query.Visitable
asJoinable, asProjection, getAliasHint
-
-
-
-
Field Detail
-
_e1
protected final Expression _e1
-
_e2
protected final Expression _e2
-
_op
protected final BinaryConditionalOperator _op
-
OPEN_BRACE
public static final java.lang.String OPEN_BRACE
- See Also:
- Constant Field Values
-
CLOSE_BRACE
public static final java.lang.String CLOSE_BRACE
- See Also:
- Constant Field Values
-
COMMA
public static final java.lang.String COMMA
- See Also:
- Constant Field Values
-
EMPTY
public static final java.lang.String EMPTY
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
MemberOfExpression
public MemberOfExpression(Expression op, Expression op2)
-
-
Method Detail
-
getOperand
public final Expression getOperand()
-
getOperand2
public final Expression getOperand2()
-
getOperator
public final BinaryConditionalOperator getOperator()
-
and
public Predicate and(Predicate predicate)
Description copied from interface:Predicate
Creates an AND of the predicate with the argument.
-
or
public Predicate or(Predicate predicate)
Description copied from interface:Predicate
Creates an OR of the predicate with the argument.
-
not
public Predicate not()
Description copied from interface:Predicate
Creates a negation of the predicate with the argument.
-
asExpression
public java.lang.String asExpression(org.apache.openjpa.persistence.query.AliasContext ctx)
Description copied from interface:Visitable
Get a JPQL fragment as used in WHERE clause.- Specified by:
asExpression
in interfaceVisitable
-
asProjection
public java.lang.String asProjection(org.apache.openjpa.persistence.query.AliasContext ctx)
Description copied from interface:Visitable
Gets the string representation in SELECT projection.- Specified by:
asProjection
in interfaceVisitable
-
getAliasHint
public java.lang.String getAliasHint(org.apache.openjpa.persistence.query.AliasContext ctx)
Description copied from interface:Visitable
Gets the hint to be used while creating alias.- Specified by:
getAliasHint
in interfaceVisitable
-
asJoinable
public java.lang.String asJoinable(org.apache.openjpa.persistence.query.AliasContext ctx)
Description copied from interface:Visitable
Gets the string representation in FROM clause.- Specified by:
asJoinable
in interfaceVisitable
-
-