Module  java.desktop

Class PrinterLocation

  • All Implemented Interfaces:
    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 - (未选中的异常)如果 location为空,则抛出。
    • 方法详细信息

      • equals

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

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

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

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

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

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

        Specified by:
        getName在接口 Attribute
        结果
        属性类别名称。