-
public interface AttributeException
Interface AttributeException是一个mixin接口,它可以实现PrintException
的子类来报告一个特定Print Service实例不支持的一个或多个打印属性的错误条件。 该属性根本不受支持,或者该属性被支持,但不支持特定的指定值。 Print Service API没有定义任何实现接口AttributeException的打印例外类,这些类别由Print Service实现者自行决定。
-
-
方法摘要
所有方法 接口方法 抽象方法 Modifier and Type 方法 描述 Class<?>[]
getUnsupportedAttributes()
返回Print Service实例根本不支持该属性的打印属性类的数组,如果没有这样的属性,则返回null。Attribute[]
getUnsupportedValues()
返回Print Service实例支持该属性的打印属性数组,但不支持该属性的特定值;如果没有此属性值,则返回null。
-
-
-
方法详细信息
-
getUnsupportedAttributes
Class<?>[] getUnsupportedAttributes()
返回Print Service实例根本不支持该属性的打印属性类的数组,如果没有这样的属性,则返回null。 返回数组中的对象是扩展基础接口Attribute
的类 。- 结果
- 不支持的属性类
-
getUnsupportedValues
Attribute[] getUnsupportedValues()
返回Print Service实例支持该属性的打印属性数组,但不支持该属性的特定值;如果没有此属性值,则返回null。- 结果
- unsupported attribute values
-
-