所有类
javax.print.attribute.standard
类 PrinterInfo
java.lang.Object
javax.print.attribute.TextSyntax
javax.print.attribute.standard.PrinterInfo
-
所有已实现的接口:
-
Serializable, Cloneable, Attribute, PrintServiceAttribute
-
public final class PrinterInfo
- extends TextSyntax
- implements PrintServiceAttribute
类 PrinterInfo 是打印属性类,它是一种文本属性,提供了有关打印机的描述性信息。这包括类似于下面的信息:"This printer can be used for printing color transparencies for HR presentations"
或 "Out of courtesy for others, please print only small (1-5 page) jobs at this printer"
,乃至 \ "This printer is going away on July 1, 1997, please find a new printer"
。
IPP 兼容性:字符串值提供了 IPP 名称值。语言环境提供了 IPP 自然语言。由 getName()
返回的类别名称提供了 IPP 属性名称。
-
另请参见:
-
序列化表格
PrinterInfo
public PrinterInfo(String info,
Locale locale)
-
构造具有给定信息字符串和语言环境的新 PrinterInfo 属性。
-
参数:
-
info
- 打印机信息字符串。
-
locale
- 文本字符串的自然语言。将 null 解释为默认的语言环境,这是 Locale.getDefault()
返回的语言环语。
-
抛出:
-
NullPointerException
- (未经检查的异常)如果 info
为 null。
equals
public boolean equals(Object object)
-
返回此 PrinterInfo 属性是否等效于传入的对象。若要等效,以下所有条件都必须为 true:
object
不为 null。
object
是类 PrinterInfo 的一个实例。
- 此 PrinterInfo 属性的基础字符串和
object
的基础字符串相等。
- 此 PrinterInfo 属性的语言环境和
object
的语言环境相等。
-
-
覆盖:
-
类
TextSyntax
中的 equals
-
-
参数:
-
object
- 要比较的对象。
-
返回:
-
如果
object
等效于此 PrinterInfo 属性,则返回 True,否则返回 false。
-
另请参见:
-
Object.hashCode()
, Hashtable
getCategory
public final Class<? extends Attribute> getCategory()
-
获取将用作此打印属性值的“类别”的打印属性类。
对于类 PrinterInfo,该类别就是类 PrinterInfo 本身。
-
-
指定者:
-
接口
Attribute
中的 getCategory
-
-
返回:
-
打印属性类(类别),这是类
java.lang.Class
的一个实例。
getName
public final String getName()
-
获取类别的名称,此属性值是该类别的一个实例。
对于类 PrinterInfo,类别名称是 "printer-info"
。
-
-
指定者:
-
接口
Attribute
中的 getName
-
-
返回:
-
属性类别名称。
所有类