-
public interface AttributeException
接口AttributeException
是mixin接口,PrintException
的子类可以实现该接口以报告涉及特定Print Service实例不支持的一个或多个打印属性的错误情况。 根本不支持该属性,或者支持该属性,但不支持特定的指定值。 Print Service API未定义实现接口AttributeException
任何打印异常类,由打印服务实现者自行决定。
-
-
方法摘要
所有方法 实例方法 抽象方法 变量和类型 方法 描述 类<?>[]
getUnsupportedAttributes()
返回Print Service实例根本不支持该属性的打印属性类数组,如果没有此类属性,则null
。Attribute[]
getUnsupportedValues()
返回Print Service实例支持该属性但不支持该属性的特定值的打印属性数组,如果没有此类属性值,则null
。
-
-
-
方法详细信息
-
getUnsupportedAttributes
类<?>[] getUnsupportedAttributes()
返回Print Service实例根本不支持该属性的打印属性类数组,如果没有此类属性,则null
。 返回数组中的对象是扩展基接口Attribute
的类 。- 结果
- 不受支持的属性类
-
getUnsupportedValues
Attribute[] getUnsupportedValues()
返回Print Service实例支持该属性但不支持该属性的特定值的打印属性数组,如果没有此类属性值,则null
。- 结果
- unsupported attribute values
-
-