Class ExistsExpressionStateObject
- java.lang.Object
-
- org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractStateObject
-
- org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractEncapsulatedExpressionStateObject
-
- org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractSingleEncapsulatedExpressionStateObject
-
- org.eclipse.persistence.jpa.jpql.tools.model.query.ExistsExpressionStateObject
-
- All Implemented Interfaces:
StateObject
public class ExistsExpressionStateObject extends AbstractSingleEncapsulatedExpressionStateObject
AnEXISTSexpression is a predicate that istrueonly if the result of the subquery consists of one or more values and that isfalseotherwise.BNF:exists_expression ::= [NOT] EXISTS(subquery)- Since:
- 2.4
- Version:
- 2.4
- Author:
- Pascal Filion
- See Also:
ExistsExpression
-
-
Field Summary
Fields Modifier and Type Field Description static StringNOT_PROPERTYNotifies the visibility of theNOTidentifier has changed.-
Fields inherited from class org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractSingleEncapsulatedExpressionStateObject
STATE_OBJECT_PROPERTY
-
-
Constructor Summary
Constructors Constructor Description ExistsExpressionStateObject(StateObject parent)Creates a newExistsExpressionStateObject.ExistsExpressionStateObject(StateObject parent, boolean not, String jpqlFragment)Creates a newExistsExpressionStateObject.ExistsExpressionStateObject(StateObject parent, boolean not, StateObject stateObject)Creates a newExistsExpressionStateObject.ExistsExpressionStateObject(StateObject parent, String jpqlFragment)Creates a newExistsExpressionStateObject.ExistsExpressionStateObject(StateObject parent, StateObject stateObject)Creates a newExistsExpressionStateObject.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(StateObjectVisitor visitor)Visits thisStateObjectby the givenvisitor.ExistsExpressionStateObjectaddNot()Makes sure theNOTidentifier is specified.ExistsExpressiongetExpression()Returns the actual parsed object if thisStateObjectrepresentation of the JPQL query was created by parsing an existing JPQL query.StringgetIdentifier()Returns the JPQL identifier of the expression represented by thisAbstractSingleEncapsulatedExpressionStateObject.booleanhasNot()Determines whether theNOTidentifier is used or not.booleanisEquivalent(StateObject stateObject)Determines whether the givenStateObjectis equivalent to this one, i.e.voidremoveNot()Makes sure theNOTidentifier is not specified.voidsetExpression(ExistsExpression expression)Keeps a reference of theparsed objectobject, which should only be done when this object is instantiated during the conversion of a parsed JPQL query intoStateObjects.voidsetNot(boolean not)Sets whether theNOTidentifier should be part of the expression or not.voidsetStateObject(StateObject stateObject)voidtoggleNot()Changes the visibility state of theNOTidentifier.-
Methods inherited from class org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractSingleEncapsulatedExpressionStateObject
getStateObject, hasStateObject, parse
-
Methods inherited from class org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractStateObject
addPropertyChangeListener, children, decorate, equals, findIdentificationVariable, getDeclaration, getDecorator, getGrammar, getManagedTypeProvider, getParent, getQueryBuilder, getRoot, getType, getType, getTypeHelper, getTypeRepository, hashCode, isDecorated, removePropertyChangeListener, setExpression, setParent, toString, toString, toText
-
-
-
-
Field Detail
-
NOT_PROPERTY
public static String NOT_PROPERTY
Notifies the visibility of theNOTidentifier has changed.
-
-
Constructor Detail
-
ExistsExpressionStateObject
public ExistsExpressionStateObject(StateObject parent)
Creates a newExistsExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benull- Throws:
NullPointerException- The given parent cannot benull
-
ExistsExpressionStateObject
public ExistsExpressionStateObject(StateObject parent, boolean not, StateObject stateObject)
Creates a newExistsExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullnot- Determines whether theNOTidentifier is part of the expression or notstateObject- TheStateObjectrepresenting the subquery- Throws:
NullPointerException- The given parent cannot benull
-
ExistsExpressionStateObject
public ExistsExpressionStateObject(StateObject parent, boolean not, String jpqlFragment)
Creates a newExistsExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullnot- Determines whether theNOTidentifier is part of the expression or notjpqlFragment- The portion of the query representing the encapsulated expression- Throws:
NullPointerException- The given parent cannot benull
-
ExistsExpressionStateObject
public ExistsExpressionStateObject(StateObject parent, StateObject stateObject)
Creates a newExistsExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullstateObject- TheStateObjectrepresenting the subquery- Throws:
NullPointerException- The given parent cannot benull
-
ExistsExpressionStateObject
public ExistsExpressionStateObject(StateObject parent, String jpqlFragment)
Creates a newExistsExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benulljpqlFragment- The portion of the query representing the encapsulated expression- Throws:
NullPointerException- The given parent cannot benull
-
-
Method Detail
-
accept
public void accept(StateObjectVisitor visitor)
Visits thisStateObjectby the givenvisitor.- Parameters:
visitor- Thevisitorto visit this object
-
addNot
public ExistsExpressionStateObject addNot()
Makes sure theNOTidentifier is specified.- Returns:
- This object
-
getExpression
public ExistsExpression getExpression()
Returns the actual parsed object if thisStateObjectrepresentation of the JPQL query was created by parsing an existing JPQL query.- Specified by:
getExpressionin interfaceStateObject- Overrides:
getExpressionin classAbstractSingleEncapsulatedExpressionStateObject- Returns:
- The parsed object when a JPQL query is parsed and converted into a
StateObjectornullwhen the JPQL query is manually created (i.e. not from a string)
-
getIdentifier
public String getIdentifier()
Returns the JPQL identifier of the expression represented by thisAbstractSingleEncapsulatedExpressionStateObject.- Specified by:
getIdentifierin classAbstractEncapsulatedExpressionStateObject- Returns:
- The JPQL identifier that is shown before the left parenthesis
-
hasNot
public boolean hasNot()
Determines whether theNOTidentifier is used or not.- Returns:
trueif theNOTidentifier is part of the expression;falseotherwise
-
isEquivalent
public boolean isEquivalent(StateObject stateObject)
Determines whether the givenStateObjectis equivalent to this one, i.e. the information of bothStateObjectis the same.- Specified by:
isEquivalentin interfaceStateObject- Overrides:
isEquivalentin classAbstractSingleEncapsulatedExpressionStateObject- Parameters:
stateObject- TheStateObjectto compare its content to this one- Returns:
trueif both object are equivalent;falseotherwise
-
removeNot
public void removeNot()
Makes sure theNOTidentifier is not specified.
-
setExpression
public void setExpression(ExistsExpression expression)
Keeps a reference of theparsed objectobject, which should only be done when this object is instantiated during the conversion of a parsed JPQL query intoStateObjects.- Parameters:
expression- Theparsed objectrepresenting anEXISTSexpression
-
setNot
public void setNot(boolean not)
Sets whether theNOTidentifier should be part of the expression or not.- Parameters:
not-trueif theNOTidentifier should be part of the expression;falseotherwise
-
setStateObject
public void setStateObject(StateObject stateObject)
-
toggleNot
public void toggleNot()
Changes the visibility state of theNOTidentifier.
-
-