Fields Summary |
---|
private static final long | serialVersionUID |
public static final PrintQuality | DRAFTLowest quality available on the printer. |
public static final PrintQuality | NORMALNormal or intermediate quality on the printer. |
public static final PrintQuality | HIGHHighest quality available on the printer. |
private static final String[] | myStringTable |
private static final PrintQuality[] | 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 PrintQuality and any vendor-defined subclasses, the category is
class PrintQuality itself.
return PrintQuality.class;
|
protected javax.print.attribute.EnumSyntax[] | getEnumValueTable()Returns the enumeration value table for class PrintQuality.
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 PrintQuality and any vendor-defined subclasses, the category
name is "print-quality" .
return "print-quality";
|
protected int | getOffset()Returns the lowest integer value used by class PrintQuality.
return 3;
|
protected java.lang.String[] | getStringTable()Returns the string table for class PrintQuality.
return (String[])myStringTable.clone();
|