Module net.sf.jsqlparser
Class ComparisonOperator
- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.expression.BinaryExpression
-
- net.sf.jsqlparser.expression.operators.relational.OldOracleJoinBinaryExpression
-
- net.sf.jsqlparser.expression.operators.relational.ComparisonOperator
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
,SupportsOldOracleJoinSyntax
,Model
,ASTNodeAccess
- Direct Known Subclasses:
ContainedBy
,Contains
,CosineSimilarity
,DoubleAnd
,EqualsTo
,GeometryDistance
,GreaterThan
,GreaterThanEquals
,MinorThan
,MinorThanEquals
,NotEqualsTo
,TSQLLeftJoin
,TSQLRightJoin
public abstract class ComparisonOperator extends OldOracleJoinBinaryExpression
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
operator
-
Fields inherited from interface net.sf.jsqlparser.expression.operators.relational.SupportsOldOracleJoinSyntax
NO_ORACLE_JOIN, NO_ORACLE_PRIOR, ORACLE_JOIN_LEFT, ORACLE_JOIN_RIGHT, ORACLE_PRIOR_END, ORACLE_PRIOR_START
-
-
Constructor Summary
Constructors Constructor Description ComparisonOperator(java.lang.String operator)
ComparisonOperator(java.lang.String operator, Expression left, Expression right)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getStringExpression()
ComparisonOperator
withLeftExpression(Expression arg0)
ComparisonOperator
withOldOracleJoinSyntax(int oldOracleJoinSyntax)
ComparisonOperator
withOraclePriorPosition(int oraclePriorPosition)
ComparisonOperator
withRightExpression(Expression arg0)
-
Methods inherited from class net.sf.jsqlparser.expression.operators.relational.OldOracleJoinBinaryExpression
getOldOracleJoinSyntax, getOraclePriorPosition, setOldOracleJoinSyntax, setOraclePriorPosition, toString
-
Methods inherited from class net.sf.jsqlparser.expression.BinaryExpression
add, and, bitAnd, bitOr, bitShiftLeft, bitShiftRight, bitXor, build, concat, divide, divideInt, getLeftExpression, getLeftExpression, getRightExpression, getRightExpression, modulo, multiply, or, setLeftExpression, setRightExpression, subtract, xor
-
Methods inherited from class net.sf.jsqlparser.parser.ASTNodeAccessImpl
appendTo, getASTNode, getParent, getParent, setASTNode
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface net.sf.jsqlparser.parser.ASTNodeAccess
getASTNode, setASTNode
-
Methods inherited from interface net.sf.jsqlparser.expression.Expression
accept, accept
-
-
-
-
Constructor Detail
-
ComparisonOperator
public ComparisonOperator(java.lang.String operator)
-
ComparisonOperator
public ComparisonOperator(java.lang.String operator, Expression left, Expression right)
-
-
Method Detail
-
getStringExpression
public java.lang.String getStringExpression()
- Specified by:
getStringExpression
in classBinaryExpression
-
withLeftExpression
public ComparisonOperator withLeftExpression(Expression arg0)
- Overrides:
withLeftExpression
in classOldOracleJoinBinaryExpression
-
withRightExpression
public ComparisonOperator withRightExpression(Expression arg0)
- Overrides:
withRightExpression
in classOldOracleJoinBinaryExpression
-
withOldOracleJoinSyntax
public ComparisonOperator withOldOracleJoinSyntax(int oldOracleJoinSyntax)
- Specified by:
withOldOracleJoinSyntax
in interfaceSupportsOldOracleJoinSyntax
- Overrides:
withOldOracleJoinSyntax
in classOldOracleJoinBinaryExpression
-
withOraclePriorPosition
public ComparisonOperator withOraclePriorPosition(int oraclePriorPosition)
- Specified by:
withOraclePriorPosition
in interfaceSupportsOldOracleJoinSyntax
- Overrides:
withOraclePriorPosition
in classOldOracleJoinBinaryExpression
-
-