Uses of Class
com.headius.invokebinder.transform.Transform
-
Packages that use Transform Package Description com.headius.invokebinder com.headius.invokebinder.transform -
-
Uses of Transform in com.headius.invokebinder
Fields in com.headius.invokebinder with type parameters of type Transform Modifier and Type Field Description private java.util.List<Transform>
Binder. transforms
Methods in com.headius.invokebinder with parameters of type Transform Modifier and Type Method Description private void
Binder. add(Transform transform)
Add a Transform to the chain.private void
Binder. add(Transform transform, java.lang.invoke.MethodType target)
Add a Transform with an associated MethodType target to the chain.Constructors in com.headius.invokebinder with parameters of type Transform Constructor Description Binder(Binder source, Transform transform)
Construct a new Binder using the given invokebinder plus an additional transformBinder(Binder source, Transform transform, java.lang.invoke.MethodType type)
Construct a new Binder using the given invokebinder plus an additional transform and current type -
Uses of Transform in com.headius.invokebinder.transform
Subclasses of Transform in com.headius.invokebinder.transform Modifier and Type Class Description class
Cast
A casting transform.class
Catch
An exception-handling transform.class
Collect
An argument-boxing transform with a fixed incoming size.class
Convert
An argument conversion transform.class
Drop
An argument drop transform.class
Filter
An argument-filtering transform.class
FilterReturn
An return-filtering transform.class
Fold
An argument-folding transform.class
Insert
An argument insertion transform.class
Permute
A permutation transform.class
Spread
An array-spreading transform.class
TryFinally
An try-finally transform.class
Varargs
An argument-boxing transform.
-