Class BooleanFunction
- java.lang.Object
-
- com.apple.foundationdb.relational.api.fluentsql.expression.BooleanFunction
-
- All Implemented Interfaces:
BooleanExpressionTrait
,Expression<DataType.BooleanType>
,FunctionLike<DataType.BooleanType>
@Immutable @API(EXPERIMENTAL) public class BooleanFunction extends java.lang.Object implements BooleanExpressionTrait, FunctionLike<DataType.BooleanType>
This represents a boolean function.
-
-
Constructor Summary
Constructors Constructor Description BooleanFunction(Operation operator, java.util.List<Expression<?>> args)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description <R,C>
Raccept(FluentVisitor<R,C> visitor, C context)
boolean
equals(java.lang.Object o)
java.lang.Iterable<Expression<?>>
getArguments()
Operation
getName()
DataType
getType()
int
hashCode()
java.lang.String
toString()
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface com.apple.foundationdb.relational.api.fluentsql.expression.BooleanExpressionTrait
and, nested, not, or
-
-
-
-
Constructor Detail
-
BooleanFunction
public BooleanFunction(@Nonnull Operation operator, @Nonnull java.util.List<Expression<?>> args)
-
-
Method Detail
-
accept
public <R,C> R accept(@Nonnull FluentVisitor<R,C> visitor, @Nonnull C context)
- Specified by:
accept
in interfaceExpression<DataType.BooleanType>
-
getArguments
@Nonnull public java.lang.Iterable<Expression<?>> getArguments()
- Specified by:
getArguments
in interfaceFunctionLike<DataType.BooleanType>
-
getName
@Nonnull public Operation getName()
- Specified by:
getName
in interfaceFunctionLike<DataType.BooleanType>
-
getType
@Nonnull public DataType getType()
- Specified by:
getType
in interfaceExpression<DataType.BooleanType>
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
-