public enum PagingEnabledOptions extends Enum<PagingEnabledOptions>
Modifier and Type | Method and Description |
---|---|
static PagingEnabledOptions |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PagingEnabledOptions[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PagingEnabledOptions ENABLED
public static final PagingEnabledOptions DISABLED
public static final PagingEnabledOptions AUTO
public static PagingEnabledOptions[] values()
for (PagingEnabledOptions c : PagingEnabledOptions.values()) System.out.println(c);
public static PagingEnabledOptions 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 © 2017–2020. All rights reserved.