Class TransformIterable<T,R>
- java.lang.Object
-
- software.amazon.awssdk.enhanced.dynamodb.internal.TransformIterable<T,R>
-
- All Implemented Interfaces:
Iterable<R>
,SdkIterable<R>
public class TransformIterable<T,R> extends Object implements SdkIterable<R>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Iterator<R>
iterator()
static <T,R>
TransformIterable<T,R>of(SdkIterable<T> iterable, Function<T,R> transformFunction)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
Methods inherited from interface software.amazon.awssdk.core.pagination.sync.SdkIterable
stream
-
-
-
-
Method Detail
-
of
public static <T,R> TransformIterable<T,R> of(SdkIterable<T> iterable, Function<T,R> transformFunction)
-
-