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