java.lang.Object
javax.print.attribute.IntegerSyntax
javax.print.attribute.standard.NumberOfDocuments
- All Implemented Interfaces:
- Serializable,- Cloneable,- Attribute,- PrintJobAttribute
Class 
NumberOfDocuments is an integer valued printing attribute that
 indicates the number of individual docs the printer has accepted for this
 job, regardless of whether the docs' print data has reached the printer or
 not.
 
 IPP Compatibility: The integer value gives the IPP integer value. The
 category name returned by getName() gives the IPP attribute name.
- See Also:
- 
Constructor SummaryConstructorsConstructorDescriptionNumberOfDocuments(int value) Construct a new number of documents attribute with the given integer value.
- 
Method SummaryModifier and TypeMethodDescriptionbooleanReturns whether this number of documents attribute is equivalent to the passed in object.Get the printing attribute class which is to be used as the "category" for this printing attribute value.final StringgetName()Get the name of the category of which this attribute value is an instance.Methods declared in class javax.print.attribute.IntegerSyntaxgetValue, hashCode, toString
- 
Constructor Details- 
NumberOfDocumentspublic NumberOfDocuments(int value) Construct a new number of documents attribute with the given integer value.- Parameters:
- value- Integer value
- Throws:
- IllegalArgumentException- if- valueis negative
 
 
- 
- 
Method Details- 
equalsReturns whether this number of documents attribute is equivalent to the passed in object. To be equivalent, all of the following conditions must be true:- objectis not- null.
- objectis an instance of class- NumberOfDocuments.
- This number of documents attribute's value and object's value are equal.
 - Overrides:
- equalsin class- IntegerSyntax
- Parameters:
- object-- Objectto compare to
- Returns:
- trueif- objectis equivalent to this number of documents attribute,- falseotherwise
- See Also:
 
- 
getCategoryGet the printing attribute class which is to be used as the "category" for this printing attribute value.For class NumberOfDocuments, the category is classNumberOfDocumentsitself.- Specified by:
- getCategoryin interface- Attribute
- Returns:
- printing attribute class (category), an instance of class
         java.lang.Class
 
- 
getNameGet the name of the category of which this attribute value is an instance.For class NumberOfDocuments, the category name is"number-of-documents".
 
-