Package io.deephaven.api.expression
Class Function
java.lang.Object
io.deephaven.api.expression.Function
- All Implemented Interfaces:
ConcurrencyControl<Filter>,Expression,Filter
Represents a function call.
-
Nested Class Summary
Nested ClassesNested 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
Constructors -
Method Summary
Modifier and TypeMethodDescriptionabstract List<Expression>The function arguments.static Function.Builderbuilder()invert()The logical inversion ofthis.abstract Stringname()The function name.static Functionof(String name, Expression... arguments) static Functionof(String name, List<? extends Expression> arguments) final <T> Twalk(Expression.Visitor<T> visitor) final <T> Twalk(Filter.Visitor<T> visitor) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface io.deephaven.api.filter.Filter
withDeclaredBarriers, withRespectedBarriers, withSerial
-
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:FilterThe logical inversion ofthis. While logically equivalent toFilter.not(this), implementations of this method will return more specifically typed inversions where applicable. -
walk
- Specified by:
walkin interfaceExpression
-
walk
-