- java.lang.Object
-
- javax.print.attribute.SetOfIntegerSyntax
-
- javax.print.attribute.standard.CopiesSupported
-
- All Implemented Interfaces:
-
Serializable
,Cloneable
,Attribute
,SupportedValuesAttribute
public final class CopiesSupported extends SetOfIntegerSyntax implements SupportedValuesAttribute
Class CopiesSupported是一个打印属性类,一组整数,为Copies
属性提供支持的值。 它限于单个连续的整数范围; 不允许多个不重叠的范围。IPP兼容性: CopiesSupported属性的规范数组形式给出要包含在IPP“copies-supported”属性中的复制范围的下限和上限。 有关规范数组形式的说明,请参见
SetOfIntegerSyntax
类。 由getName()
返回的类别名称提供IPP属性名称。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 CopiesSupported(int member)
构造包含单个整数的新的副本支持属性。CopiesSupported(int lowerBound, int upperBound)
构造一个包含单个整数范围的支持新的副本属性。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 boolean
equals(Object object)
返回此副本支持的属性是否等同于传入的对象。Class<? extends Attribute>
getCategory()
获取要用作此打印属性值的“类别”的打印属性类。String
getName()
获取此属性值是一个实例的类别的名称。-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from class javax.print.attribute.SetOfIntegerSyntax
contains, contains, getMembers, hashCode, next, toString
-
-
-
-
构造方法详细信息
-
CopiesSupported
public CopiesSupported(int member)
构造包含单个整数的新的副本支持属性。 也就是说,只支持Copies的一个值。- 参数
-
member
- 设置成员。 - 异常
-
IllegalArgumentException
- (未检查异常)如果member
小于1,则抛出。
-
CopiesSupported
public CopiesSupported(int lowerBound, int upperBound)
构造一个包含单个整数范围的支持新的副本属性。 也就是说,只支持一个范围内的副本的值。- 参数
-
lowerBound
- 范围的下限。 -
upperBound
- 范围的上限。 - 异常
-
IllegalArgumentException
- (未检查的异常)如果指定了一个空范围或者如果指定了一个非空范围(lowerBound
小于1),则抛出异常。
-
-
方法详细信息
-
equals
public boolean equals(Object object)
返回此副本支持的属性是否等同于传入的对象。 要相等的,所有以下条件必须为真:-
object
不为空。 -
object
是CopiesSupported类的一个实例。 - 这支持属性的成员和
object
的成员是一样的。
- 重写:
-
equals
在SetOfIntegerSyntax
- 参数
-
object
- 要比较的对象。 - 结果
-
如果
object
相当于此副本支持的属性,object
true,否则为false。 - 另请参见:
-
Object.hashCode()
,HashMap
-
-
getCategory
public final Class<? extends Attribute> getCategory()
获取要用作此打印属性值的“类别”的打印属性类。对于CopiesSupported类,该类别是CopiesSupported类。
- Specified by:
-
getCategory
在接口Attribute
- 结果
-
打印属性类(category),一个
java.lang.Class
类的实例。
-
-