| Package | Description |
|---|---|
| com.influxdb.client.domain |
| Modifier and Type | Class and Description |
|---|---|
class |
ArrayExpression
Used to create and directly specify the elements of an array object
|
class |
BinaryExpression
uses binary operators to act on two operands in an expression
|
class |
BooleanLiteral
Represents boolean values
|
class |
CallExpression
Represents a function call
|
class |
ConditionalExpression
Selects one of two expressions, `Alternate` or `Consequent`, depending on a third boolean expression, `Test`
|
class |
DateTimeLiteral
Represents an instant in time with nanosecond precision using the syntax of golang's RFC3339 Nanosecond variant
|
class |
DictExpression
Used to create and directly specify the elements of a dictionary
|
class |
DurationLiteral
Represents the elapsed time between two instants as an int64 nanosecond count with syntax of golang's time.Duration
|
class |
FloatLiteral
Represents floating point numbers according to the double representations defined by the IEEE-754-1985
|
class |
FunctionExpression
Function expression
|
class |
Identifier
A valid Flux identifier
|
class |
IndexExpression
Represents indexing into an array
|
class |
IntegerLiteral
Represents integer numbers
|
class |
LogicalExpression
Represents the rule conditions that collectively evaluate to either true or false
|
class |
MemberExpression
Represents accessing a property of an object
|
class |
ObjectExpression
Allows the declaration of an anonymous object within a declaration
|
class |
ParenExpression
Represents an expression wrapped in parenthesis
|
class |
PipeExpression
Call expression with pipe argument
|
class |
PipeLiteral
Represents a specialized literal value, indicating the left hand value of a pipe expression
|
class |
PropertyKey
PropertyKey
|
class |
RegexpLiteral
Expressions begin and end with `/` and are regular expressions with syntax accepted by RE2
|
class |
StringLiteral
Expressions begin and end with double quote marks
|
class |
UnaryExpression
Uses operators to act on a single operand in an expression
|
class |
UnsignedIntegerLiteral
Represents integer numbers
|
| Modifier and Type | Method and Description |
|---|---|
Expression |
ConditionalExpression.getAlternate()
Get alternate
|
Expression |
PipeExpression.getArgument()
Get argument
|
Expression |
ReturnStatement.getArgument()
Get argument
|
Expression |
UnaryExpression.getArgument()
Get argument
|
Expression |
IndexExpression.getArray()
Get array
|
Expression |
CallExpression.getCallee()
Get callee
|
Expression |
ConditionalExpression.getConsequent()
Get consequent
|
Expression |
ExpressionStatement.getExpression()
Get expression
|
Expression |
ParenExpression.getExpression()
Get expression
|
Expression |
IndexExpression.getIndex()
Get index
|
Expression |
VariableAssignment.getInit()
Get init
|
Expression |
MemberAssignment.getInit()
Get init
|
Expression |
DictItem.getKey()
Get key
|
Expression |
BinaryExpression.getLeft()
Get left
|
Expression |
LogicalExpression.getLeft()
Get left
|
Expression |
MemberExpression.getObject()
Get object
|
Expression |
BinaryExpression.getRight()
Get right
|
Expression |
LogicalExpression.getRight()
Get right
|
Expression |
ConditionalExpression.getTest()
Get test
|
Expression |
DictItem.getVal()
Get val
|
Expression |
Property.getValue()
Get value
|
| Modifier and Type | Method and Description |
|---|---|
List<Expression> |
CallExpression.getArguments()
Function arguments
|
List<Expression> |
ArrayExpression.getElements()
Elements of the array
|
| Modifier and Type | Method and Description |
|---|---|
CallExpression |
CallExpression.addArgumentsItem(Expression argumentsItem) |
ArrayExpression |
ArrayExpression.addElementsItem(Expression elementsItem) |
ConditionalExpression |
ConditionalExpression.alternate(Expression alternate) |
PipeExpression |
PipeExpression.argument(Expression argument) |
ReturnStatement |
ReturnStatement.argument(Expression argument) |
UnaryExpression |
UnaryExpression.argument(Expression argument) |
IndexExpression |
IndexExpression.array(Expression array) |
CallExpression |
CallExpression.callee(Expression callee) |
ConditionalExpression |
ConditionalExpression.consequent(Expression consequent) |
ExpressionStatement |
ExpressionStatement.expression(Expression expression) |
ParenExpression |
ParenExpression.expression(Expression expression) |
IndexExpression |
IndexExpression.index(Expression index) |
VariableAssignment |
VariableAssignment.init(Expression init) |
MemberAssignment |
MemberAssignment.init(Expression init) |
DictItem |
DictItem.key(Expression key) |
BinaryExpression |
BinaryExpression.left(Expression left) |
LogicalExpression |
LogicalExpression.left(Expression left) |
MemberExpression |
MemberExpression.object(Expression object) |
BinaryExpression |
BinaryExpression.right(Expression right) |
LogicalExpression |
LogicalExpression.right(Expression right) |
void |
ConditionalExpression.setAlternate(Expression alternate) |
void |
PipeExpression.setArgument(Expression argument) |
void |
ReturnStatement.setArgument(Expression argument) |
void |
UnaryExpression.setArgument(Expression argument) |
void |
IndexExpression.setArray(Expression array) |
void |
CallExpression.setCallee(Expression callee) |
void |
ConditionalExpression.setConsequent(Expression consequent) |
void |
ExpressionStatement.setExpression(Expression expression) |
void |
ParenExpression.setExpression(Expression expression) |
void |
IndexExpression.setIndex(Expression index) |
void |
VariableAssignment.setInit(Expression init) |
void |
MemberAssignment.setInit(Expression init) |
void |
DictItem.setKey(Expression key) |
void |
BinaryExpression.setLeft(Expression left) |
void |
LogicalExpression.setLeft(Expression left) |
void |
MemberExpression.setObject(Expression object) |
void |
BinaryExpression.setRight(Expression right) |
void |
LogicalExpression.setRight(Expression right) |
void |
ConditionalExpression.setTest(Expression test) |
void |
DictItem.setVal(Expression val) |
void |
Property.setValue(Expression value) |
ConditionalExpression |
ConditionalExpression.test(Expression test) |
DictItem |
DictItem.val(Expression val) |
Property |
Property.value(Expression value) |
| Modifier and Type | Method and Description |
|---|---|
CallExpression |
CallExpression.arguments(List<Expression> arguments) |
ArrayExpression |
ArrayExpression.elements(List<Expression> elements) |
void |
CallExpression.setArguments(List<Expression> arguments) |
void |
ArrayExpression.setElements(List<Expression> elements) |
Copyright © 2018–2023 InfluxData, Inc.. All rights reserved.