public enum FilterType extends java.lang.Enum<FilterType>
Enum Constant and Description |
---|
ASCII85
ASCII85 encoding.
|
FLATE
Flate encoding.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getDecode()
Returns the decode value that can be written in the PDF output for
this filter type.
|
static FilterType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static FilterType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final FilterType ASCII85
public static final FilterType FLATE
public static FilterType[] values()
for (FilterType c : FilterType.values()) System.out.println(c);
public static FilterType 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 nullpublic java.lang.String getDecode()
null
).