Package com.arcadedb.query.sql.parser
Class LikeOperator
- java.lang.Object
-
- com.arcadedb.query.sql.parser.SimpleNode
-
- com.arcadedb.query.sql.parser.LikeOperator
-
- All Implemented Interfaces:
BinaryCompareOperator
,Node
public class LikeOperator extends SimpleNode implements BinaryCompareOperator
-
-
Field Summary
-
Fields inherited from class com.arcadedb.query.sql.parser.SimpleNode
cachedStringForm, children, value
-
-
Constructor Summary
Constructors Constructor Description LikeOperator(int id)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description LikeOperator
copy()
boolean
equals(Object obj)
boolean
execute(DatabaseInternal database, Object iLeft, Object iRight)
int
hashCode()
String
toString()
-
Methods inherited from class com.arcadedb.query.sql.parser.SimpleNode
getCacheableElements, getIdentityElements, getValue, isCacheable, jjtAddChild, jjtClose, jjtGetChild, jjtGetFirstToken, jjtGetLastToken, jjtGetNumChildren, jjtGetParent, jjtGetValue, jjtOpen, jjtSetFirstToken, jjtSetLastToken, jjtSetParent, jjtSetValue, refersToParent, toString, toString
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.arcadedb.query.sql.parser.BinaryCompareOperator
isRangeOperator
-
-
-
-
Method Detail
-
execute
public boolean execute(DatabaseInternal database, Object iLeft, Object iRight)
- Specified by:
execute
in interfaceBinaryCompareOperator
-
toString
public String toString()
- Overrides:
toString
in classSimpleNode
-
copy
public LikeOperator copy()
- Specified by:
copy
in interfaceBinaryCompareOperator
- Overrides:
copy
in classSimpleNode
-
equals
public boolean equals(Object obj)
- Overrides:
equals
in classSimpleNode
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classSimpleNode
-
-