C - The type of the pagination contextB - The builder used to build the paginated elementV - The value that represents the current element being paginated@FunctionalInterface
public interface PaginationValueConsumer<C,B,V>
This is a functional interface whose functional method is accept(Object, Object, int, Object).
| Modifier and Type | Method and Description |
|---|---|
void |
accept(C context,
B builder,
int index,
V value)
Performs this operation on the given arguments.
|
void accept(@NotNull
C context,
@NotNull
B builder,
int index,
@NotNull
V value)
context - The pagination context.builder - The builder used to modify the element being paginatedindex - The index of the element being paginated in the paginationvalue - The value that represents the current element being paginated