Class BooleanLiteral
- java.lang.Object
-
- io.github.willena.influxql.ast.expr.literal.BooleanLiteral
-
-
Constructor Summary
Constructors Constructor Description BooleanLiteral(boolean value)
Create from boolean
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Boolean
getValue()
Current value of the literalstatic BooleanLiteral
of(boolean value)
Create from booleanString
toString()
Convert the current Node to an influxql String that the parser must be able to read.
-
-
-
Method Detail
-
of
public static BooleanLiteral of(boolean value)
Create from boolean- Parameters:
value
- bool- Returns:
- BooleanLiteral
-
getValue
public Boolean getValue()
Description copied from interface:Literal
Current value of the literal
-
-