Class Overview
Class PrinterIsAcceptingJobs is a printing attribute class, an enumeration,
that indicates whether the printer is currently able to accept jobs. This
value is independent of the PrinterState
and PrinterStateReasons
attributes because its value does
not affect the current job; rather it affects future jobs. If the value is
NOT_ACCEPTING_JOBS, the printer will reject jobs even when the PrinterState
is IDLE. If value is ACCEPTING_JOBS, the Printer
will accept jobs even when the PrinterState
is STOPPED.
IPP Compatibility: The IPP boolean value is "true" for ACCEPTING_JOBS
and "false" for NOT_ACCEPTING_JOBS. TThe category name returned by
getName()
is the IPP attribute name. The enumeration's
integer value is the IPP enum value. The toString()
method
returns the IPP string representation of the attribute value.
Summary
Protected Constructors |
|
PrinterIsAcceptingJobs(int value)
Construct a new printer is accepting jobs enumeration value with the
given integer value.
|
Public Methods |
final
Class<? extends Attribute>
|
getCategory()
Get the printing attribute class which is to be used as the "category"
for this printing attribute value.
|
final
String
|
getName()
Get the name of the category of which this attribute value is an
instance.
|
[Expand]
Inherited Methods |
From class
javax.print.attribute.EnumSyntax
Object
|
clone()
Returns a clone of this enumeration value, which to preserve the
semantics of enumeration values is the same object as this enumeration
value.
|
EnumSyntax[]
|
getEnumValueTable()
Returns the enumeration value table for this enumeration value's
enumeration class.
|
int
|
getOffset()
Returns the lowest integer value used by this enumeration value's
enumeration class.
|
String[]
|
getStringTable()
Returns the string table for this enumeration value's enumeration class.
|
int
|
getValue()
Returns this enumeration value's integer value.
|
int
|
hashCode()
Returns a hash code value for this enumeration value.
|
Object
|
readResolve()
During object input, convert this deserialized enumeration instance to
the proper enumeration value defined in the enumeration attribute class.
|
String
|
toString()
Returns a string value corresponding to this enumeration value.
|
|
From class
java.lang.Object
Object
|
clone()
Creates and returns a copy of this object.
|
boolean
|
equals(Object obj)
Indicates whether some other object is "equal to" this one.
|
void
|
finalize()
Called by the garbage collector on an object when garbage collection
determines that there are no more references to the object.
|
final
Class<?>
|
getClass()
Returns the runtime class of this Object .
|
int
|
hashCode()
Returns a hash code value for the object.
|
final
void
|
notify()
Wakes up a single thread that is waiting on this object's
monitor.
|
final
void
|
notifyAll()
Wakes up all threads that are waiting on this object's monitor.
|
String
|
toString()
Returns a string representation of the object.
|
final
void
|
wait()
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object.
|
final
void
|
wait(long timeout, int nanos)
Causes the current thread to wait until another thread invokes the
notify() method or the
notifyAll() method for this object, or
some other thread interrupts the current thread, or a certain
amount of real time has elapsed.
|
final
void
|
wait(long timeout)
Causes the current thread to wait until either another thread invokes the
notify() method or the
notifyAll() method for this object, or a
specified amount of time has elapsed.
|
|
From interface
javax.print.attribute.Attribute
abstract
Class<? extends Attribute>
|
getCategory()
Get the printing attribute class which is to be used as the "category"
for this printing attribute value when it is added to an attribute set.
|
abstract
String
|
getName()
Get the name of the category of which this attribute value is an
instance.
|
|
Fields
The printer is currently acccepting jobs.
The printer is currently rejecting any jobs sent to it.
Protected Constructors
protected
PrinterIsAcceptingJobs
(int value)
Construct a new printer is accepting jobs enumeration value with the
given integer value.
Public Methods
public
final
Class<? extends Attribute>
getCategory
()
Get the printing attribute class which is to be used as the "category"
for this printing attribute value.
For class PrinterIsAcceptingJobs, the
category is class PrinterIsAcceptingJobs itself.
public
final
String
getName
()
Get the name of the category of which this attribute value is an
instance.
For class PrinterIsAcceptingJobs, the
category name is "printer-is-accepting-jobs"
.
Protected Methods
protected
EnumSyntax[]
getEnumValueTable
()
Returns the enumeration value table for class PrinterIsAcceptingJobs.
protected
String[]
getStringTable
()
Returns the string table for class PrinterIsAcceptingJobs.