public enum PagingMode extends Enum<PagingMode>
Query paging mode.| Enum Constant and Description |
|---|
COOKIE
Paging mode is supported by cookies.
|
OFFSET
Paging mode is supported by offset.
|
| Modifier and Type | Method and Description |
|---|---|
static PagingMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PagingMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PagingMode COOKIE
public static final PagingMode OFFSET
public static PagingMode[] values()
for (PagingMode c : PagingMode.values()) System.out.println(c);
public static PagingMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullCopyright © 2025 Open Identity Platform Community. All rights reserved.