Class HashDocAttributeSet
java.lang.Object
javax.print.attribute.HashAttributeSet
javax.print.attribute.HashDocAttributeSet
- All Implemented Interfaces:
Serializable, AttributeSet, DocAttributeSet
Class
HashDocAttributeSet provides an attribute set which inherits
its implementation from class HashAttributeSet and
enforces the semantic restrictions of interface
DocAttributeSet.- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstruct a new, empty hash doc attribute set.HashDocAttributeSet(DocAttribute attribute) Construct a new hash doc attribute set, initially populated with the given value.HashDocAttributeSet(DocAttribute[] attributes) Construct a new hash doc attribute set, initially populated with the values from the given array.HashDocAttributeSet(DocAttributeSet 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 theDocAttributeinterface. -
Method Summary
Methods declared in class HashAttributeSet
add, addAll, clear, containsKey, containsValue, equals, get, hashCode, isEmpty, remove, remove, size, toArrayModifier and TypeMethodDescriptionbooleanAdds 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.booleanaddAll(AttributeSet attributes) Adds all of the elements in the specified set to this attribute.voidclear()Removes all attributes from this attribute set.booleancontainsKey(Class<?> category) Returnstrueif this attribute set contains an attribute for the specified category.booleancontainsValue(Attribute attribute) Returnstrueif this attribute set contains the given attribute.booleanCompares the specified object with this attribute set for equality.Returns the attribute value which this attribute set contains in the given attribute category.inthashCode()Returns the hash code value for this attribute set.booleanisEmpty()Returnstrueif this attribute set contains no attributes.booleanRemoves any attribute for this category from this attribute set if present.booleanRemoves the specified attribute from this attribute set if present.intsize()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, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()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 voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(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 voidwait(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 DocAttributeSet
add, addAllModifier and TypeMethodDescriptionbooleanAdds 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).booleanaddAll(AttributeSet attributes) Adds all of the elements in the specified set to this attribute.
-
Constructor Details
-
HashDocAttributeSet
public HashDocAttributeSet()Construct a new, empty hash doc attribute set. -
HashDocAttributeSet
Construct a new hash doc attribute set, initially populated with the given value.- Parameters:
attribute- attribute value to add to the set- Throws:
NullPointerException- ifattributeisnull
-
HashDocAttributeSet
Construct a new hash doc attribute set, initially populated with the values from the given array. The new attribute set is populated by adding the elements ofattributesarray 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 ofattributesisnull
-
HashDocAttributeSet
Construct a new attribute set, initially populated with the values from the given set where the members of the attribute set are restricted to theDocAttributeinterface.- Parameters:
attributes- set of attribute values to initialise the set. Ifnull, an empty attribute set is constructed.- Throws:
ClassCastException- if any element ofattributesis not an instance ofDocAttribute
-