Package io.deephaven.api.expression
Class Method
java.lang.Object
io.deephaven.api.expression.Method
- All Implemented Interfaces:
ConcurrencyControl<Filter>,Expression,Filter
Represents a method 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 method arguments.static Method.Builderbuilder()invert()The logical inversion ofthis.abstract Stringname()The method name.abstract Expressionobject()The method object.static Methodof(Expression object, String name, Expression... arguments) static Methodof(Expression object, 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
-
Method
public Method()
-
-
Method Details
-
builder
-
of
-
of
-
object
The method object.- Returns:
- the method object
-
name
The method name.- Returns:
- the method name
-
arguments
The method arguments.- Returns:
- the method 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
-