Package org.apache.cayenne.exp.parser
Class ASTLikeIgnoreCase
java.lang.Object
org.apache.cayenne.exp.Expression
org.apache.cayenne.exp.parser.SimpleNode
org.apache.cayenne.exp.parser.ConditionNode
org.apache.cayenne.exp.parser.PatternMatchNode
org.apache.cayenne.exp.parser.ASTLikeIgnoreCase
- All Implemented Interfaces:
Serializable
,Node
,XMLSerializable
"Case insensitive like" expression.
- See Also:
-
Field Summary
Fields inherited from class org.apache.cayenne.exp.parser.PatternMatchNode
escapeChar, ignoringCase, pattern, patternCompiled
Fields inherited from class org.apache.cayenne.exp.parser.SimpleNode
children, id, parent
Fields inherited from class org.apache.cayenne.exp.Expression
ADD, AND, ASTERISK, BETWEEN, BITWISE_AND, BITWISE_LEFT_SHIFT, BITWISE_NOT, BITWISE_OR, BITWISE_RIGHT_SHIFT, BITWISE_XOR, CUSTOM_OP, DB_PATH, DBID_PATH, DIVIDE, ENCLOSING_OBJECT, EQUAL_TO, EXISTS, FALSE, FULL_OBJECT, FUNCTION_CALL, GREATER_THAN, GREATER_THAN_EQUAL_TO, IN, LESS_THAN, LESS_THAN_EQUAL_TO, LIKE, LIKE_IGNORE_CASE, LIST, MULTIPLY, NEGATIVE, NOT, NOT_BETWEEN, NOT_EQUAL_TO, NOT_EXISTS, NOT_IN, NOT_LIKE, NOT_LIKE_IGNORE_CASE, OBJ_PATH, OR, PRUNED_NODE, SUBQUERY, SUBTRACT, TRUE, type
-
Constructor Summary
ConstructorDescriptionASTLikeIgnoreCase
(SimpleNode path, Object pattern) ASTLikeIgnoreCase
(SimpleNode path, Object pattern, char escapeChar) -
Method Summary
Modifier and TypeMethodDescriptionprotected void
appendChildrenAsEJBQL
(List<Object> parameterAccumulator, Appendable out, String rootId) Encodes child of this node with specified index to EJBQLprotected Boolean
evaluateSubNode
(Object o, Object[] evaluatedChildren) protected String
getEJBQLExpressionOperator
(int index) Returns operator for EJBQL statements, which can differ for Cayenne expression operatorprotected String
getExpressionOperator
(int index) protected int
int
getType()
Returns a type of expression.Creates a copy of this expression node, without copying children.Methods inherited from class org.apache.cayenne.exp.parser.PatternMatchNode
getEscapeChar, getPattern, isIgnoringCase, jjtAddChild, matchPattern, setEscapeChar
Methods inherited from class org.apache.cayenne.exp.parser.ConditionNode
evaluateNode, jjtSetParent
Methods inherited from class org.apache.cayenne.exp.parser.SimpleNode
appendAsEJBQL, appendAsEJBQL, appendAsEscapedString, appendAsString, appendScalarAsString, connectChildren, encodeScalarAsEJBQL, evaluate, evaluateChild, expName, flattenTree, getOperand, getOperandCount, getPathAliases, jjtClose, jjtGetChild, jjtGetNumChildren, jjtGetParent, jjtOpen, notExp, pruneNodeForPrunedChild, setOperand, unwrapChild, wrapChild
Methods inherited from class org.apache.cayenne.exp.Expression
andExp, andExp, deepCopy, encodeAsXML, equals, filter, filterObjects, first, hashCode, joinExp, joinExp, match, orExp, orExp, params, params, paramsArray, setType, toEJBQL, toEJBQL, toString, transform, transformExpression, traverse, traverse
-
Constructor Details
-
ASTLikeIgnoreCase
public ASTLikeIgnoreCase() -
ASTLikeIgnoreCase
-
ASTLikeIgnoreCase
-
-
Method Details
-
getRequiredChildrenCount
protected int getRequiredChildrenCount()- Specified by:
getRequiredChildrenCount
in classConditionNode
-
evaluateSubNode
- Specified by:
evaluateSubNode
in classConditionNode
- Throws:
Exception
-
shallowCopy
Creates a copy of this expression node, without copying children.- Specified by:
shallowCopy
in classExpression
-
getExpressionOperator
- Specified by:
getExpressionOperator
in classSimpleNode
-
getType
public int getType()Description copied from class:Expression
Returns a type of expression. Most common types are defined as public static fields of this interface.- Overrides:
getType
in classExpression
-
getEJBQLExpressionOperator
Description copied from class:SimpleNode
Returns operator for EJBQL statements, which can differ for Cayenne expression operator- Overrides:
getEJBQLExpressionOperator
in classSimpleNode
-
appendChildrenAsEJBQL
protected void appendChildrenAsEJBQL(List<Object> parameterAccumulator, Appendable out, String rootId) throws IOException Description copied from class:SimpleNode
Encodes child of this node with specified index to EJBQL- Overrides:
appendChildrenAsEJBQL
in classPatternMatchNode
- Throws:
IOException
-