Module java.desktop

Class PrinterLocation

java.lang.Object
javax.print.attribute.TextSyntax
javax.print.attribute.standard.PrinterLocation
所有已实现的接口:
Serializable, Cloneable, Attribute, PrintServiceAttribute

public final class PrinterLocation extends TextSyntax implements PrintServiceAttribute
PrinterLocation 是一个打印属性类,一个文本属性,用于标识设备的位置。这可能包括类似于:"在XYZ大楼二楼123A房间"的内容。

IPP 兼容性: 字符串值给出 IPP 名称值。区域设置给出 IPP 自然语言。由getName()返回的类别名称给出 IPP 属性名称。

参见:
  • Constructor Details

    • PrinterLocation

      public PrinterLocation(String location, Locale locale)
      使用给定的位置和区域设置构造新的打印机位置属性。
      参数:
      location - 打印机位置
      locale - 文本字符串的自然语言。如果为null,则解释为由Locale.getDefault()返回的默认区域设置。
      抛出:
      NullPointerException - 如果locationnull
  • Method Details

    • equals

      public boolean equals(Object object)
      返回此打印机位置属性是否等效于传入的对象。要等效,必须满足以下所有条件:
      1. object 不为null
      2. objectPrinterLocation类的实例。
      3. 此打印机位置属性的基础字符串和object的基础字符串相等。
      4. 此打印机位置属性的区域设置和object的区域设置相等。
      覆盖:
      equals 在类 TextSyntax
      参数:
      object - 要比较的Object
      返回:
      如果object等效于此打印机位置属性,则返回true,否则返回false
      参见:
    • getCategory

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

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

      指定者:
      getCategory 在接口 Attribute
      返回:
      打印属性类(类别),java.lang.Class类的实例
    • getName

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

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

      指定者:
      getName 在接口 Attribute
      返回:
      属性类别名称