Package org.apache.iceberg.expressions
Class BoundTransform<S,T>
- java.lang.Object
-
- org.apache.iceberg.expressions.BoundTransform<S,T>
-
- Type Parameters:
S- the Java type of values transformed by this function.T- the Java type of values returned by the function.
public class BoundTransform<S,T> extends java.lang.Object implements BoundTerm<T>
A transform expression.- See Also:
- Serialized Form
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description Teval(StructLike struct)Produce a value from the struct for this expression.BoundReference<S>ref()java.lang.StringtoString()Transform<S,T>transform()Typetype()-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.iceberg.expressions.BoundTerm
comparator
-
-
-
-
Method Detail
-
eval
public T eval(StructLike struct)
Description copied from interface:BoundProduce a value from the struct for this expression.
-
ref
public BoundReference<S> ref()
-
type
public Type type()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-