| Enum Constant and Description |
|---|
DOCUMENT
Print only the document.
|
DOCUMENT_AND_COMMENTS
Print the document and associated annotations
|
DOCUMENT_AND_STAMPS
Print the document and stamp annotations.
|
FORM_FIELDS_ONLY
Print only the data within form fields.
|
| Modifier and Type | Method and Description |
|---|---|
static PrintWhat |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PrintWhat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PrintWhat DOCUMENT
public static final PrintWhat DOCUMENT_AND_COMMENTS
public static final PrintWhat DOCUMENT_AND_STAMPS
public static final PrintWhat FORM_FIELDS_ONLY
public static PrintWhat[] values()
for (PrintWhat c : PrintWhat.values()) System.out.println(c);
public static PrintWhat 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 null