public class GreaterThanNode extends ComparisonNode
| Constructor and Description |
|---|
GreaterThanNode(String selector,
List<String> arguments) |
| Modifier and Type | Method and Description |
|---|---|
<R,A> R |
accept(RSQLVisitor<R,A> visitor,
A param)
Accepts the visitor, calls its visit() method and returns the result.
|
String |
getOperator()
Returns a operator that is represented by this node (ex.: =gt=, ==, ...).
|
equals, getArguments, getSelector, hashCode, toStringacceptpublic String getOperator()
ComparisonNodegetOperator in class ComparisonNodepublic <R,A> R accept(RSQLVisitor<R,A> visitor, A param)
NodeEach implementation must implement this methods exactly as listed:
public <R, A> R accept(RSQLVisitor<R, A> visitor, A param) {
return visitor.visit(this, param);
}
R - Return type of the visitor's method.A - Type of an optional parameter passed to the visitor's method.visitor - The visitor whose appropriate method will be called.param - An optional parameter to pass to the visitor.Copyright © 2011–2014. All rights reserved.