Interface FunctionLike<T extends DataType>
-
- Type Parameters:
T
- The type of the function.
- All Superinterfaces:
Expression<T>
- All Known Implementing Classes:
BooleanFunction
,ComparableFunction
,NumericFunction
@Immutable public interface FunctionLike<T extends DataType> extends Expression<T>
Represents a function.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Iterable<Expression<?>>
getArguments()
Operation
getName()
-
Methods inherited from interface com.apple.foundationdb.relational.api.fluentsql.expression.Expression
accept, getType
-
-
-
-
Method Detail
-
getArguments
@Nonnull java.lang.Iterable<Expression<?>> getArguments()
-
getName
@Nonnull Operation getName()
-
-