模块  java.desktop

Class PrinterLocation

  • 实现的所有接口
    SerializableCloneableAttributePrintServiceAttribute

    public final class PrinterLocation
    extends TextSyntax
    implements PrintServiceAttribute
    PrinterLocation是打印属性类,即文本属性,用于标识设备的位置。 这可能包括: "in Room 123A, second floor of building XYZ"

    IPP兼容性:字符串值给出IPP名称值。 语言环境提供IPP自然语言。 getName()返回的类别名称给出了IPP属性名称。

    另请参见:
    Serialized Form
    • 构造方法详细信息

      • PrinterLocation

        public PrinterLocation​(String location,
                               Locale locale)
        使用给定的位置和区域设置构造新的打印机位置属性。
        参数
        location - 打印机位置
        locale - 文本字符串的自然语言。 null被解释为Locale.getDefault()返回的默认语言环境
        异常
        NullPointerException - 如果 locationnull
    • 方法详细信息

      • equals

        public boolean equals​(Object object)
        返回此打印机位置属性是否等效于传入的对象。 为了等效,所有以下条件必须为真:
        1. object不是null
        2. object是类PrinterLocation的实例。
        3. 此打印机位置属性的基础字符串和object的基础字符串相等。
        4. 此打印机位置属性的区域设置和object的区域设置相同。
        重写:
        equalsTextSyntax
        参数
        object - Object来比较
        结果
        true如果 object等效于此打印机位置属性, false
        另请参见:
        Object.hashCode()HashMap
      • getCategory

        public final <? extends Attribute> getCategory()
        获取将用作此打印属性值的“类别”的打印属性类。

        对于类PrinterLocation ,该类别本身是PrinterLocation类。

        Specified by:
        getCategory接口 Attribute
        结果
        打印属性类(类别),类java.lang.Class的实例
      • getName

        public final String getName()
        获取此属性值为实例的类别的名称。

        对于类PrinterLocation ,类别名称为"printer-location"

        Specified by:
        getName在界面 Attribute
        结果
        属性类别名称