Fields Summary |
---|
private static final long | serialVersionUID |
public static final Compression | NONENo compression is used. |
public static final Compression | DEFLATEZIP public domain inflate/deflate compression technology. |
public static final Compression | GZIPGNU zip compression technology described in
RFC 1952. |
public static final Compression | COMPRESSUNIX compression technology. |
private static final String[] | myStringTable |
private static final Compression[] | myEnumValueTable |
Methods Summary |
---|
public final java.lang.Class | getCategory()Get the printing attribute class which is to be used as the "category"
for this printing attribute value.
For class Compression and any vendor-defined subclasses, the category is
class Compression itself.
return Compression.class;
|
protected javax.print.attribute.EnumSyntax[] | getEnumValueTable()Returns the enumeration value table for class Compression.
return (EnumSyntax[])myEnumValueTable.clone();
|
public final java.lang.String | getName()Get the name of the category of which this attribute value is an
instance.
For class Compression and any vendor-defined subclasses, the category
name is "compression" .
return "compression";
|
protected java.lang.String[] | getStringTable()Returns the string table for class Compression.
return (String[])myStringTable.clone();
|