Class BoundParameter
- java.lang.Object
-
- io.github.willena.influxql.ast.expr.BoundParameter
-
- All Implemented Interfaces:
Expression
,Node
public class BoundParameter extends Object implements Expression
Bound parameter expression
-
-
Constructor Summary
Constructors Constructor Description BoundParameter(String name)
Create named bound parameter
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
int
hashCode()
static BoundParameter
named(String name)
Create named bound parameterString
toString()
Convert the current Node to an influxql String that the parser must be able to read.
-
-
-
Constructor Detail
-
BoundParameter
public BoundParameter(String name)
Create named bound parameter- Parameters:
name
- param
-
-
Method Detail
-
named
public static BoundParameter named(String name)
Create named bound parameter- Parameters:
name
- param- Returns:
- the BoundParameter
-
-