public final class Destination extends URISyntax implements PrintJobAttribute, PrintRequestAttribute
此属性的常见用途是将输出重定向到本地磁盘文件的应用程序:例如“file:out.prn”。 请注意,“file:”方案URI实例的正确构造应使用toURI()
类的toURI()
方法执行 。 有关详细信息,请参阅该类的文档。
如果在PrintRequest中指定了目标URI,并且不能通过PrintService输出,那么将抛出PrintException。 PrintException可以实现URIException来提供更具体的原因。
IPP兼容性:目标不是IPP属性。
public Destination(URI uri)
uri
- URI。
NullPointerException
- (未经检查的异常)如果
uri
为空,则抛出。
public boolean equals(Object object)
object
不为空。 object
是目的地类的一个实例。 object
的URI相等。 equals
在类别
URISyntax
object
- 要比较的对象。
object
等效于此目标属性,则为True,
object
为false。
Object.hashCode()
, HashMap
public final 类<? extends Attribute> getCategory()
对于目的地类,该类别是目的地本身。
getCategory
在界面
Attribute
java.lang.Class
的实例。
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2014, Oracle and/or its affiliates. All rights reserved.