Module java.desktop
Package javax.print

Interface AttributeException


public interface AttributeException
接口AttributeException是一个混合接口,PrintException的子类可以实现该接口,以报告涉及一个或多个打印属性的错误条件,这些属性是特定打印服务实例不支持的。要么该属性根本不受支持,要么该属性受支持,但不支持特定指定的值。打印服务API没有定义任何实现接口AttributeException的打印异常类,这取决于打印服务实现者的自行决定。
  • Method Summary

    Modifier and Type
    Method
    Description
    Class<?>[]
    返回打印服务实例不支持该属性的打印属性类数组,如果没有这样的属性,则返回null
    返回打印服务实例支持该属性但不支持该属性特定值的打印属性数组,如果没有这样的属性值,则返回null
  • Method Details

    • getUnsupportedAttributes

      Class<?>[] getUnsupportedAttributes()
      返回打印服务实例不支持该属性的打印属性类数组,如果没有这样的属性,则返回null。返回的数组中的对象是扩展基础接口Attribute的类。
      返回:
      不支持的属性类
    • getUnsupportedValues

      Attribute[] getUnsupportedValues()
      返回打印服务实例支持该属性但不支持该属性特定值的打印属性数组,如果没有这样的属性值,则返回null
      返回:
      不支持的属性值