public enum PaginationModeValues extends java.lang.Enum<PaginationModeValues>
List of pagination mode defined on Folder
Modifier and Type | Method and Description |
---|---|
static PaginationModeValues |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PaginationModeValues[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaginationModeValues _E
E: Extend mode
public static final PaginationModeValues _N
N: Non-extend mode
public static final PaginationModeValues NONE
NONE: Returns the value entered in the Dialog Folder
public static PaginationModeValues valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant
with the specified namejava.lang.NullPointerException
- if the argument is nullpublic static PaginationModeValues[] values()
for (PaginationModeValues c : PaginationModeValues.values()) System.out.println(c);