javax.print.attribute.standard
Class JobPrioritySupported

java.lang.Object
  extended by javax.print.attribute.IntegerSyntax
      extended by javax.print.attribute.standard.JobPrioritySupported
All Implemented Interfaces:
Serializable, Cloneable, Attribute, SupportedValuesAttribute

public final class JobPrioritySupported
extends IntegerSyntax
implements SupportedValuesAttribute

The JobPrioritySupported printing attribute provides the supported values for the JobPriority attribute.

A client may specify any JobPriority value between 1 and 100. If a print service supports fewer priority levels it indicates the maximum levels through this attribute. The print service then automatically maps the job priority value provided by the client in an even distribution over the whole range of 1 to 100.

IPP Compatibility: JobPrioritySupported is an IPP 1.1 attribute.

See Also:
JobPriority, Serialized Form

Constructor Summary
JobPrioritySupported(int value)
          Creates a JobPrioritySupported 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

JobPrioritySupported

public JobPrioritySupported(int value)
Creates a JobPrioritySupported 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 JobPrioritySupported itself.

getName

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

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