Interface TransformingIterator.TransformerFunction<In,Out>
-
- Type Parameters:
In
- The input class typeOut
- The output class type
- Enclosing class:
- TransformingIterator<In,Out>
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public static interface TransformingIterator.TransformerFunction<In,Out>
A functional interface similar toFunction
, except throwing an exception
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Out
apply(In input)
Applies the transformation to the given input object, returning an object of the output type
-
-
-
Method Detail
-
apply
Out apply(In input) throws sailpoint.tools.GeneralException
Applies the transformation to the given input object, returning an object of the output type- Parameters:
input
- The input object to transform- Returns:
- The output object
- Throws:
sailpoint.tools.GeneralException
- if any failures occur
-
-