Package io.deephaven.api.expression
Class Function
java.lang.Object
io.deephaven.api.expression.Function
- All Implemented Interfaces:
Expression
,Filter
Represents a function call.
-
Nested Class Summary
Nested classes/interfaces inherited from interface io.deephaven.api.expression.Expression
Expression.Visitor<T>
Nested classes/interfaces inherited from interface io.deephaven.api.filter.Filter
Filter.Visitor<T>
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionabstract List<Expression>
The function arguments.static Function.Builder
builder()
invert()
The logical inversion ofthis
.abstract String
name()
The function name.static Function
of
(String name, Expression... arguments) static Function
of
(String name, List<? extends Expression> arguments) final <T> T
walk
(Expression.Visitor<T> visitor) final <T> T
walk
(Filter.Visitor<T> visitor)
-
Constructor Details
-
Function
public Function()
-
-
Method Details
-
builder
-
of
-
of
-
name
The function name.- Returns:
- the name
-
arguments
The function arguments.- Returns:
- the arguments
-
invert
Description copied from interface:Filter
The logical inversion ofthis
. While logically equivalent toFilter.not(this)
, implementations of this method will return more specifically typed inversions where applicable. -
walk
- Specified by:
walk
in interfaceExpression
-
walk
-