- java.lang.Object
-
- javax.print.attribute.SetOfIntegerSyntax
-
- javax.print.attribute.standard.CopiesSupported
-
- 实现的所有接口
-
Serializable
,Cloneable
,Attribute
,SupportedValuesAttribute
public final class CopiesSupported extends SetOfIntegerSyntax implements SupportedValuesAttribute
类CopiesSupported
是打印属性类,一组整数,它为Copies
属性提供支持的值。 它仅限于一个连续的整数范围; 不允许多个不重叠的范围。IPP兼容性: CopiesSupported属性的规范数组形式给出了要包含在IPP“支持副本”属性中的副本范围的下限和上限。 有关规范数组形式的说明,请参见类
SetOfIntegerSyntax
。getName()
返回的类别名称给出了IPP属性名称。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 构造器 描述 CopiesSupported(int member)
构造包含单个整数的新副本支持的属性。CopiesSupported(int lowerBound, int upperBound)
构造包含单个整数范围的新副本支持的属性。
-
-
-
构造方法详细信息
-
CopiesSupported
public CopiesSupported(int member)
构造包含单个整数的新副本支持的属性。 也就是说,仅支持一个值Copies
。- 参数
-
member
- 设置成员 - 异常
-
IllegalArgumentException
- 如果member < 1
-
CopiesSupported
public CopiesSupported(int lowerBound, int upperBound)
构造包含单个整数范围的新副本支持的属性。 也就是说,仅支持一个范围内的那些值Copies
。- 参数
-
lowerBound
- 范围的下限 -
upperBound
- 范围的上限 - 异常
-
IllegalArgumentException
- 如果指定了null
范围或者指定了non-null
范围且lowerBound
小于1
-
-
方法详细信息
-
equals
public boolean equals(Object object)
返回此副本支持的属性是否等效于传入的对象。 为了等效,所有以下条件必须为真:-
object
不是null
。 -
object
是类CopiesSupported
的实例。 - 这个副本支持属性的成员和
object
的成员是相同的。
- 重写:
-
equals
在类SetOfIntegerSyntax
- 参数
-
object
-Object
来比较 - 结果
-
true
如果object
等效于此副本支持的属性,否则为false
- 另请参见:
-
Object.hashCode()
,HashMap
-
-
getCategory
public final 类<? extends Attribute> getCategory()
获取将用作此打印属性值的“类别”的打印属性类。对于类
CopiesSupported
,该类别是类CopiesSupported
本身。- Specified by:
-
getCategory
在界面Attribute
- 结果
-
打印属性类(类别),类
java.lang.Class
的实例
-
-