javax.print.attribute.standard
Class JobPriority

java.lang.Object
  extended by javax.print.attribute.IntegerSyntax
      extended by javax.print.attribute.standard.JobPriority
All Implemented Interfaces:
Serializable, Cloneable, Attribute, PrintJobAttribute, PrintRequestAttribute

public final class JobPriority
extends IntegerSyntax
implements PrintJobAttribute, PrintRequestAttribute

The 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.

See Also:
Serialized Form

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.
 
Methods inherited from class javax.print.attribute.IntegerSyntax
getValue, hashCode, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
 

Constructor Detail

JobPriority

public JobPriority(int value)
Creates a JobPriority object.

Parameters:
value - the priority
Throws:
IllegalArgumentException - if value < 1 or value > 100
Method Detail

equals

public boolean equals(Object obj)
Tests if the given object is equal to this object.

Overrides:
equals in class IntegerSyntax
Parameters:
obj - the object to test
Returns:
true if both objects are equal, false otherwise.
See Also:
Object.hashCode()

getCategory

public Class<? extends Attribute> getCategory()
Returns category of this class.

Specified by:
getCategory in interface Attribute
Returns:
The class JobPriority itself.

getName

public String getName()
Returns the name of this attribute.

Specified by:
getName in interface Attribute
Returns:
The name "job-priority".