- java.lang.Object
-
- net.sf.jsqlparser.parser.ASTNodeAccessImpl
-
- net.sf.jsqlparser.expression.OverlapsCondition
-
- All Implemented Interfaces:
java.io.Serializable
,Expression
,Model
,ASTNodeAccess
public class OverlapsCondition extends ASTNodeAccessImpl implements Expression
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private ExpressionList<?>
left
private ExpressionList<?>
right
-
Constructor Summary
Constructors Constructor Description OverlapsCondition(ExpressionList<?> left, ExpressionList<?> right)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <T,S>
Taccept(ExpressionVisitor<T> expressionVisitor, S context)
ExpressionList<?>
getLeft()
ExpressionList<?>
getRight()
java.lang.String
toString()
-
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
-
-
-
-
Field Detail
-
left
private final ExpressionList<?> left
-
right
private final ExpressionList<?> right
-
-
Constructor Detail
-
OverlapsCondition
public OverlapsCondition(ExpressionList<?> left, ExpressionList<?> right)
-
-
Method Detail
-
getLeft
public ExpressionList<?> getLeft()
-
getRight
public ExpressionList<?> getRight()
-
accept
public <T,S> T accept(ExpressionVisitor<T> expressionVisitor, S context)
- Specified by:
accept
in interfaceExpression
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-