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 booleanequals(Object o)BooleangetValue()Current value of the literalinthashCode()static BooleanLiteralof(boolean value)Create from booleanStringtoString()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:LiteralCurrent value of the literal
-
-