Package com.lexmark.saperion.search
Class Paging
- java.lang.Object
-
- com.lexmark.saperion.search.Paging
-
public final class Paging extends java.lang.Object
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static <ElementType,ExceptionType extends com.lexmark.saperion.exceptions.EcmException>
java.lang.Iterable<ElementType>iterate(int pageSize, EcmSearchFunction<ElementType,ExceptionType> supplier)
static <ElementType,ExceptionType extends com.lexmark.saperion.exceptions.EcmException>
PagedIterator<ElementType,ExceptionType>iterator(int pageSize, EcmSearchFunction<ElementType,ExceptionType> supplier)
static <ElementType,ExceptionType extends com.lexmark.saperion.exceptions.EcmException>
java.util.stream.Stream<ElementType>stream(int pageSize, EcmSearchFunction<ElementType,ExceptionType> supplier)
-
-
-
Method Detail
-
iterate
public static <ElementType,ExceptionType extends com.lexmark.saperion.exceptions.EcmException> java.lang.Iterable<ElementType> iterate(int pageSize, EcmSearchFunction<ElementType,ExceptionType> supplier)
-
iterator
public static <ElementType,ExceptionType extends com.lexmark.saperion.exceptions.EcmException> PagedIterator<ElementType,ExceptionType> iterator(int pageSize, EcmSearchFunction<ElementType,ExceptionType> supplier)
-
stream
public static <ElementType,ExceptionType extends com.lexmark.saperion.exceptions.EcmException> java.util.stream.Stream<ElementType> stream(int pageSize, EcmSearchFunction<ElementType,ExceptionType> supplier)
-
-