public enum PDFStreamOpenMode extends java.lang.Enum<PDFStreamOpenMode>
| Enum Constant and Description |
|---|
FILTERED
Return the decrypted and decoded (i.e.
|
RAW
Return the encrypted and encoded (i.e.
|
UNFILTERED
Return the decrypted but still encoded (i.e.
|
| Modifier and Type | Method and Description |
|---|---|
static PDFStreamOpenMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static PDFStreamOpenMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PDFStreamOpenMode RAW
public static final PDFStreamOpenMode UNFILTERED
public static final PDFStreamOpenMode FILTERED
public static PDFStreamOpenMode[] values()
for (PDFStreamOpenMode c : PDFStreamOpenMode.values()) System.out.println(c);
public static PDFStreamOpenMode 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