Top Description Fields Constructors Methods
javax.print.attribute.standard

public final Class PrinterURI

extends URISyntax
implements PrintServiceAttribute
Class Inheritance
All Implemented Interfaces
javax.print.attribute.PrintServiceAttribute, javax.print.attribute.Attribute, java.io.Serializable
Imports
java.io.Serial, java.net.URI, javax.print.attribute.Attribute, .PrintServiceAttribute, .URISyntax

Class PrinterURI is a printing attribute class, a URI, that specifies the globally unique name of a printer. If it has such a name, an administrator determines a printer's URI and sets this attribute to that name.

IPP Compatibility: This implements the IPP printer-uri attribute. The string form returned by toString() gives the IPP printer-uri value. The category name returned by getName() gives the IPP attribute name.

Author
Robert Herriot

Field Summary

Modifier and TypeField and Description
private static final long
serialVersionUID

Hides javax.print.attribute.URISyntax.serialVersionUID.

Use serialVersionUID from JDK 1.4 for interoperability.

Constructor Summary

AccessConstructor and Description
public
PrinterURI(URI
URI of the printer
uri
)

Constructs a new PrinterURI attribute with the specified URI.

Method Summary

Modifier and TypeMethod and Description
public boolean

Returns:

true if object is equivalent to this PrinterURI attribute, false otherwise
equals
(Object
Object to compare to
object
)

Overrides javax.print.attribute.URISyntax.equals.

Returns whether this printer name attribute is equivalent to the passed in object.

public final Class<? extends Attribute>

Returns:

printing attribute class (category), an instance of class java.lang.Class
getCategory
()

Implements javax.print.attribute.Attribute.getCategory.

Get the printing attribute class which is to be used as the "category" for this printing attribute value.

public final String

Returns:

attribute category name
getName
()

Implements javax.print.attribute.Attribute.getName.

Get the name of the category of which this attribute value is an instance.

Inherited from javax.print.attribute.URISyntax:
getURIhashCodetoString

Field Detail

serialVersionUIDback to summary
private static final long serialVersionUID

Hides javax.print.attribute.URISyntax.serialVersionUID.

Use serialVersionUID from JDK 1.4 for interoperability.

Annotations
@Serial

Constructor Detail

PrinterURIback to summary
public PrinterURI(URI uri)

Constructs a new PrinterURI attribute with the specified URI.

Parameters
uri:URI

URI of the printer

Exceptions
NullPointerException:
if uri is null

Method Detail

equalsback to summary
public boolean equals(Object object)

Overrides javax.print.attribute.URISyntax.equals.

Returns whether this printer name attribute is equivalent to the passed in object. To be equivalent, all of the following conditions must be true:

  1. object is not null.
  2. object is an instance of class PrinterURI.
  3. This PrinterURI attribute's underlying URI and object's underlying URI are equal.
Parameters
object:Object

Object to compare to

Returns:boolean

true if object is equivalent to this PrinterURI attribute, false otherwise

getCategoryback to summary
public final Class<? extends Attribute> getCategory()

Implements javax.print.attribute.Attribute.getCategory.

Get the printing attribute class which is to be used as the "category" for this printing attribute value.

For class PrinterURI and any vendor-defined subclasses, the category is class PrinterURI itself.

Returns:Class<? extends Attribute>

printing attribute class (category), an instance of class java.lang.Class

getNameback to summary
public final String getName()

Implements javax.print.attribute.Attribute.getName.

Get the name of the category of which this attribute value is an instance.

For class PrinterURI and any vendor-defined subclasses, the category name is "printer-uri".

Returns:String

attribute category name