javax.print.attribute.standard
public final class JobPriority extends IntegerSyntax implements PrintJobAttribute, PrintRequestAttribute
JobPriority
printing attribute specifies
the priority for scheduling a job on the print service.
A client may specify any value between 1 (lowest priority) and 100 (highest priority). A print service prints jobs with a priority value of n before those with a priority value of n-1.
IPP Compatibility: JobPriority is an IPP 1.1 attribute.
Constructor Summary | |
---|---|
JobPriority(int value)
Creates a JobPriority object.
|
Method Summary | |
---|---|
boolean | equals(Object obj)
Tests if the given object is equal to this object.
|
Class<? extends Attribute> | getCategory()
Returns category of this class.
|
String | getName()
Returns the name of this attribute.
|
JobPriority
object.
Parameters: value the priority
Throws: IllegalArgumentException if value < 1 or value > 100
Parameters: obj the object to test
Returns: true
if both objects are equal,
false
otherwise.
Returns: The class JobPriority
itself.
Returns: The name "job-priority".