Class LikeExpressionStateObject
java.lang.Object
org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractStateObject
org.eclipse.persistence.jpa.jpql.tools.model.query.LikeExpressionStateObject
- All Implemented Interfaces:
StateObject
The
LIKE condition is used to specify a search for a pattern.
The string_expression must have a string value. The pattern_value is a
string literal or a string-valued input parameter in which an underscore (_) stands for any
single character, a percent (%) character stands for any sequence of characters (including the
empty sequence), and all other characters stand for themselves. The optional escape_character
is a single-character string literal or a character-valued input parameter (i.e., char or
Character) and is used to escape the special meaning of the underscore and percent characters in
pattern_value.
BNF: like_expression ::= string_expression [NOT] LIKE pattern_value [ESCAPE escape_character]
- Since:
- 2.4
- Version:
- 2.4
- See Also:
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final StringNotifies the escape character property has changed.static final StringNotifies the visibility of theNOTidentifier has changed.static final StringNotifies the pattern value property has changed.static final StringNotifies the string state object property has changed. -
Constructor Summary
ConstructorsConstructorDescriptionLikeExpressionStateObject(StateObject parent) Creates a newLikeExpressionStateObject.LikeExpressionStateObject(StateObject parent, StateObject stringStateObject) Creates a newLikeExpressionStateObject.LikeExpressionStateObject(StateObject parent, StateObject stringStateObject, boolean not, StateObject patternValue, String escapeCharacter) Creates a newLikeExpressionStateObject.LikeExpressionStateObject(StateObject parent, StateObject stringStateObject, StateObject patternValue) Creates a newLikeExpressionStateObject. -
Method Summary
Modifier and TypeMethodDescriptionvoidaccept(StateObjectVisitor visitor) Visits thisStateObjectby the givenvisitor.protected voidaddChildren(List<StateObject> children) Adds the children of thisStateObjectto the given list.addNot()Makes sure theNOTidentifier is specified.Returns the actual parsed object if thisStateObjectrepresentation of the JPQL query was created by parsing an existing JPQL query.booleanbooleanhasNot()Determines whether theNOTidentifier is used or not.booleanbooleanprotected voidInitializes this state object.booleanisEquivalent(StateObject stateObject) Determines whether the givenStateObjectis equivalent to this one, i.e.voidMakes sure theNOTidentifier is not specified.voidsetEscapeCharacter(String escapeCharacter) voidsetExpression(LikeExpression 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.voidsetPatternValue(StateObject patternValue) voidsetStringStateObject(StateObject stringStateObject) voidChanges the visibility state of theNOTidentifier.protected voidtoTextInternal(Appendable writer) Prints out a string representation of thisStateObject, which should not be used to define atruestring representation of a JPQL query but should be used for debugging purposes.Methods inherited from class org.eclipse.persistence.jpa.jpql.tools.model.query.AbstractStateObject
acceptUnknownVisitor, acceptUnknownVisitor, addProblems, addPropertyChangeListener, areEquivalent, buildProblem, buildProblem, buildStateObject, buildStateObjects, checkParent, children, decorate, equals, findIdentificationVariable, firePropertyChanged, getChangeSupport, getDeclaration, getDecorator, getGrammar, getManagedTypeProvider, getParent, getQueryBuilder, getRoot, getType, getType, getTypeHelper, getTypeRepository, hashCode, isDecorated, parent, parent, parent, removePropertyChangeListener, setExpression, setParent, toString, toString, toStringInternal, toStringItems, toText
-
Field Details
-
ESCAPE_CHARACTER_PROPERTY
Notifies the escape character property has changed.- See Also:
-
NOT_PROPERTY
Notifies the visibility of theNOTidentifier has changed.- See Also:
-
PATTERN_VALUE_PROPERTY
Notifies the pattern value property has changed.- See Also:
-
STRING_STATE_OBJECT_PROPERTY
Notifies the string state object property has changed.- See Also:
-
-
Constructor Details
-
LikeExpressionStateObject
Creates a newLikeExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benull- Throws:
NullPointerException- The given parent cannot benull
-
LikeExpressionStateObject
Creates a newLikeExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullstringStateObject- TheStateObjectrepresenting the string expression- Throws:
NullPointerException- The given parent cannot benull
-
LikeExpressionStateObject
public LikeExpressionStateObject(StateObject parent, StateObject stringStateObject, boolean not, StateObject patternValue, String escapeCharacter) Creates a newLikeExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullstringStateObject- TheStateObjectrepresenting the string expressionnot- Determines whether theNOTidentifier is part of the expression or notpatternValue- A string literal or a string-valued input parameter in which an underscore (_) stands for any single character, a percent (%) character stands for any sequence of characters (including the empty sequence), and all other characters stand for themselvesescapeCharacter- A single-character string literal or a character-valued input parameter (i.e., char or Character) and is used to escape the special meaning of the underscore and percent characters inpattern_value- Throws:
NullPointerException- The given parent cannot benull
-
LikeExpressionStateObject
public LikeExpressionStateObject(StateObject parent, StateObject stringStateObject, StateObject patternValue) Creates a newLikeExpressionStateObject.- Parameters:
parent- The parent of this state object, which cannot benullstringStateObject- TheStateObjectrepresenting the string expressionpatternValue- a string literal or a string-valued input parameter in which an underscore (_) stands for any single character, a percent (%) character stands for any sequence of characters (including the empty sequence), and all other characters stand for themselves- Throws:
NullPointerException- The given parent cannot benull
-
-
Method Details
-
accept
Description copied from interface:StateObjectVisits thisStateObjectby the givenvisitor.- Parameters:
visitor- Thevisitorto visit this object
-
addChildren
Description copied from class:AbstractStateObjectAdds the children of thisStateObjectto the given list.- Overrides:
addChildrenin classAbstractStateObject- Parameters:
children- The list used to store the children
-
addNot
Makes sure theNOTidentifier is specified.- Returns:
- This object
-
getEscapeCharacter
-
getExpression
Description copied from interface:StateObjectReturns the actual parsed object if thisStateObjectrepresentation of the JPQL query was created by parsing an existing JPQL query.- Specified by:
getExpressionin interfaceStateObject- Overrides:
getExpressionin classAbstractStateObject- 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)
-
getPatternValue
-
getStringStateObject
-
hasEscapeCharacter
public boolean hasEscapeCharacter() -
hasNot
public boolean hasNot()Determines whether theNOTidentifier is used or not.- Returns:
trueif theNOTidentifier is part of the expression;falseotherwise
-
hasPatternValue
public boolean hasPatternValue() -
hasStringStateObject
public boolean hasStringStateObject() -
initialize
protected void initialize()Description copied from class:AbstractStateObjectInitializes this state object.- Overrides:
initializein classAbstractStateObject
-
isEquivalent
Description copied from interface:StateObjectDetermines whether the givenStateObjectis equivalent to this one, i.e. the information of bothStateObjectis the same.- Specified by:
isEquivalentin interfaceStateObject- Overrides:
isEquivalentin classAbstractStateObject- 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. -
setEscapeCharacter
-
setExpression
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 aLIKEexpression
-
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
-
setPatternValue
-
setStringStateObject
-
toggleNot
public void toggleNot()Changes the visibility state of theNOTidentifier. -
toTextInternal
Description copied from class:AbstractStateObjectPrints out a string representation of thisStateObject, which should not be used to define atruestring representation of a JPQL query but should be used for debugging purposes.- Specified by:
toTextInternalin classAbstractStateObject- Parameters:
writer- The writer used to print out the string representation- Throws:
IOException- This should never happens, it is only required becauseAppendableis used instead of any concrete class
-