- java.lang.Object
-
- javax.print.attribute.TextSyntax
-
- javax.print.attribute.standard.PrinterLocation
-
- All Implemented Interfaces:
-
Serializable
,Cloneable
,Attribute
,PrintServiceAttribute
public final class PrinterLocation extends TextSyntax implements PrintServiceAttribute
PrinterLocation类是打印属性类,一个文本属性,用于标识设备的位置。 这可能包括以下内容:"in Room 123A, second floor of building XYZ"
。IPP兼容性:字符串值给出IPP名称值。 该地区提供IPP自然语言。 由
getName()
返回的类别名称提供IPP属性名称。- 另请参见:
- Serialized Form
-
-
构造方法摘要
构造方法 Constructor 描述 PrinterLocation(String location, Locale locale)
构造具有给定位置和区域设置的新的打印机位置属性。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 boolean
equals(Object object)
返回此打印机位置属性是否等同于传入的对象。Class<? extends Attribute>
getCategory()
获取要用作此打印属性值的“类别”的打印属性类。String
getName()
获取此属性值是一个实例的类别的名称。-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from class javax.print.attribute.TextSyntax
getLocale, getValue, hashCode, toString
-
-
-
-
构造方法详细信息
-
PrinterLocation
public PrinterLocation(String location, Locale locale)
构造具有给定位置和区域设置的新的打印机位置属性。- 参数
-
location
- 打印机位置。 -
locale
- 文本字符串的自然语言。 null被解释为Locale.getDefault()
返回的默认语言环境 - 异常
-
NullPointerException
- (未选中的异常)如果location
为空,则抛出。
-
-
方法详细信息
-
equals
public boolean equals(Object object)
返回此打印机位置属性是否等同于传入的对象。 要相等的,所有以下条件必须为真:-
object
不为空。 -
object
是PrinterLocation类的一个实例。 - 此打印机位置属性的底层字符串和
object
的底层字符串相等。 - 此打印机位置属性的区域设置和
object
的区域设置相等。
- 重写:
-
equals
在TextSyntax
- 参数
-
object
- 要比较的对象。 - 结果
-
如果
object
相当于此打印机位置属性,object
真,否则为false。 - 另请参见:
-
Object.hashCode()
,HashMap
-
-
getCategory
public final Class<? extends Attribute> getCategory()
获取要用作此打印属性值的“类别”的打印属性类。对于PrinterLocation类,该类别是PrinterLocation类本身。
- Specified by:
-
getCategory
在接口Attribute
- 结果
-
打印属性类(category),一个
java.lang.Class
类的实例。
-
-