public enum PaperSize extends Enum<PaperSize>
The option to set the Paper size of the result document after comparison.
Enum Constant and Description |
---|
A0
A0
|
A1
A1
|
A2
A2
|
A3
A3
|
A4
A4
|
A5
A5
|
A6
A6
|
A7
A7
|
A8
A8
|
DEFAULT
Default
|
Modifier and Type | Method and Description |
---|---|
static PaperSize |
fromString(String toStringValue) |
String |
toString() |
static PaperSize |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PaperSize[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PaperSize A0
A0
public static final PaperSize A1
A1
public static final PaperSize A2
A2
public static final PaperSize A3
A3
public static final PaperSize A4
A4
public static final PaperSize A5
A5
public static final PaperSize A6
A6
public static final PaperSize A7
A7
public static final PaperSize A8
A8
public static final PaperSize DEFAULT
Default
public static PaperSize 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 static PaperSize[] values()
for (PaperSize c : PaperSize.values()) System.out.println(c);
Copyright © 2023. All rights reserved.