javax.print.attribute.standard
public final class: NumberUpSupported [javadoc |
source]
java.lang.Object
javax.print.attribute.SetOfIntegerSyntax
javax.print.attribute.standard.NumberUpSupported
All Implemented Interfaces:
SupportedValuesAttribute, Cloneable, Serializable
Class NumberUpSupported is a printing attribute class, a set of integers,
that gives the supported values for a
NumberUp attribute.
IPP Compatibility: The NumberUpSupported attribute's canonical array
form gives the lower and upper bound for each range of number-up to be
included in an IPP "number-up-supported" attribute. See class SetOfIntegerSyntax for an
explanation of canonical array form. The category name returned by
getName()
gives the IPP attribute name.
Methods from java.lang.Object: |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method from javax.print.attribute.standard.NumberUpSupported Detail: |
public boolean equals(Object object) {
return (super.equals (object) &&
object instanceof NumberUpSupported);
}
Returns whether this number up supported attribute is equivalent to the
passed in object. To be equivalent, all of the following conditions
must be true:
-
object is not null.
-
object is an instance of class NumberUpSupported.
-
This number up supported attribute's members and
object 's
members are the same.
|
public final Class<Attribute> getCategory() {
return NumberUpSupported.class;
}
Get the printing attribute class which is to be used as the "category"
for this printing attribute value.
For class NumberUpSupported, the
category is class NumberUpSupported itself. |
public final String getName() {
return "number-up-supported";
}
Get the name of the category of which this attribute value is an
instance.
For class NumberUpSupported, the
category name is "number-up-supported" . |