public enum Repagination extends Enum<Repagination> implements FriendlyNamed
| Enum Constant and Description |
|---|
LAST_FIRST
This repagination is useful in scenarios such as two page layout scans from unstapled booklets
(staples removed from the booklet and then the double pages scanned front/back)
First scanned page contains the last and first covers (hence the name), second scanned page contains second and before-last page, and so on.
|
NONE |
| Modifier and Type | Method and Description |
|---|---|
String |
getFriendlyName() |
static Repagination |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Repagination[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Repagination LAST_FIRST
public static final Repagination NONE
public static Repagination[] values()
for (Repagination c : Repagination.values()) System.out.println(c);
public static Repagination 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 nullpublic String getFriendlyName()
getFriendlyName in interface FriendlyNamedCopyright © 2021 sejda. All rights reserved.