Class HashPrintJobAttributeSet
java.lang.Object
javax.print.attribute.HashAttributeSet
javax.print.attribute.HashPrintJobAttributeSet
- All Implemented Interfaces:
Serializable, AttributeSet, PrintJobAttributeSet
public class HashPrintJobAttributeSet
extends HashAttributeSet
implements PrintJobAttributeSet, Serializable
Class
HashPrintJobAttributeSet
provides an attribute set which
inherits its implementation from class
HashAttributeSet
and enforces the semantic
restrictions of interface PrintJobAttributeSet
.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct a new, empty hash print job attribute set.HashPrintJobAttributeSet
(PrintJobAttribute attribute) Construct a new hash print job attribute set, initially populated with the given value.HashPrintJobAttributeSet
(PrintJobAttribute[] attributes) Construct a new hash print job attribute set, initially populated with the values from the given array.HashPrintJobAttributeSet
(PrintJobAttributeSet attributes) Construct a new attribute set, initially populated with the values from the given set where the members of the attribute set are restricted to thePrintJobAttribute
interface. -
Method Summary
Methods declared in class HashAttributeSet
add, addAll, clear, containsKey, containsValue, equals, get, hashCode, isEmpty, remove, remove, size, toArray
Modifier and TypeMethodDescriptionboolean
Adds the specified attribute to this attribute set if it is not already present, first removing any existing in the same attribute category as the specified attribute value.boolean
addAll
(AttributeSet attributes) Adds all of the elements in the specified set to this attribute.void
clear()
Removes all attributes from this attribute set.boolean
containsKey
(Class<?> category) Returnstrue
if this attribute set contains an attribute for the specified category.boolean
containsValue
(Attribute attribute) Returnstrue
if this attribute set contains the given attribute.boolean
Compares the specified object with this attribute set for equality.Returns the attribute value which this attribute set contains in the given attribute category.int
hashCode()
Returns the hash code value for this attribute set.boolean
isEmpty()
Returnstrue
if this attribute set contains no attributes.boolean
Removes any attribute for this category from this attribute set if present.boolean
Removes the specified attribute from this attribute set if present.int
size()
Returns the number of attributes in this attribute set.toArray()
Returns an array of the attributes contained in this set.Methods declared in class Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
Modifier and TypeMethodDescriptionprotected Object
clone()
Creates and returns a copy of this object.protected void
finalize()
Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class
<?> getClass()
Returns the runtime class of thisObject
.final void
notify()
Wakes up a single thread that is waiting on this object's monitor.final void
Wakes up all threads that are waiting on this object's monitor.toString()
Returns a string representation of the object.final void
wait()
Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final void
wait
(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final void
wait
(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.Methods declared in interface PrintJobAttributeSet
add, addAll
Modifier and TypeMethodDescriptionboolean
Adds the specified attribute value to this attribute set if it is not already present, first removing any existing value in the same attribute category as the specified attribute value (optional operation).boolean
addAll
(AttributeSet attributes) Adds all of the elements in the specified set to this attribute.
-
Constructor Details
-
HashPrintJobAttributeSet
public HashPrintJobAttributeSet()Construct a new, empty hash print job attribute set. -
HashPrintJobAttributeSet
Construct a new hash print job attribute set, initially populated with the given value.- Parameters:
attribute
- attribute value to add to the set- Throws:
NullPointerException
- ifattribute
isnull
-
HashPrintJobAttributeSet
Construct a new hash print job attribute set, initially populated with the values from the given array. The new attribute set is populated by adding the elements ofattributes
array to the set in sequence, starting at index 0. Thus, later array elements may replace earlier array elements if the array contains duplicate attribute values or attribute categories.- Parameters:
attributes
- array of attribute values to add to the set. Ifnull
, an empty attribute set is constructed.- Throws:
NullPointerException
- if any element ofattributes
isnull
-
HashPrintJobAttributeSet
Construct a new attribute set, initially populated with the values from the given set where the members of the attribute set are restricted to thePrintJobAttribute
interface.- Parameters:
attributes
- set of attribute values to initialise the set. Ifnull
, an empty attribute set is constructed.- Throws:
ClassCastException
- if any element ofattributes
is not an instance ofPrintJobAttribute
-