Top Description Inners Fields Constructors Methods
javax.print

public Class DocFlavor

extends Object
implements Serializable, Cloneable
Class Inheritance
All Implemented Interfaces
java.lang.Cloneable, java.io.Serializable
Known Direct Subclasses
javax.print.DocFlavor.BYTE_ARRAY, javax.print.DocFlavor.INPUT_STREAM, javax.print.DocFlavor.URL, javax.print.DocFlavor.CHAR_ARRAY, javax.print.DocFlavor.STRING, javax.print.DocFlavor.READER, javax.print.DocFlavor.SERVICE_FORMATTED
Imports
java.io.IOException, .ObjectInputStream, .ObjectOutputStream, .Serial, .Serializable

Class DocFlavor encapsulates an object that specifies the format in which print data is supplied to a DocPrintJob. "Doc" is a short, easy-to-pronounce term that means "a piece of print data." The print data format, or "doc flavor", consists of two things: A DocPrintJob obtains its print data by means of interface Doc. A Doc object lets the DocPrintJob determine the doc flavor the client can supply. A Doc object also lets the DocPrintJob obtain an instance of the doc flavor's representation class, from which the DocPrintJob then obtains the actual print data.

Client Formatted Print Data

There are two broad categories of print data, client formatted print data and service formatted print data.

For client formatted print data, the client determines or knows the print data format. For example the client may have a JPEG encoded image, a URL for HTML code, or a disk file containing plain text in some encoding, possibly obtained from an external source, and requires a way to describe the data format to the print service.

The doc flavor's representation class is a conduit for the JPS DocPrintJob to obtain a sequence of characters or bytes from the client. The doc flavor's MIME type is one of the standard media types telling how to interpret the sequence of characters or bytes. For a list of standard media types, see the Internet Assigned Numbers Authority's (IANA's) Media Types Directory . Interface Doc provides two utility operations, getReaderForText and getStreamForBytes(), to help a Doc object's client extract client formatted print data.

For client formatted print data, the print data representation class is typically one of the following (although other representation classes are permitted):


Default and Platform Encodings

For byte print data where the doc flavor's MIME type does not include a charset parameter, the Java Print Service instance assumes the US-ASCII character set by default. This is in accordance with RFC 2046, which says the default character set is US-ASCII. Note that US-ASCII is a subset of UTF-8, so in the future this may be widened if a future RFC endorses UTF-8 as the default in a compatible manner.

Also note that this is different than the behaviour of the Java runtime when interpreting a stream of bytes as text data. That assumes the default encoding for the user's locale. Thus, when spooling a file in local encoding to a Java Print Service it is important to correctly specify the encoding. Developers working in the English locales should be particularly conscious of this, as their platform encoding corresponds to the default mime charset. By this coincidence that particular case may work without specifying the encoding of platform data.

Every instance of the Java virtual machine has a default character encoding determined during virtual-machine startup and typically depends upon the locale and charset being used by the underlying operating system. In a distributed environment there is no guarantee that two VM share the same default encoding. Thus clients which want to stream platform encoded text data from the host platform to a Java Print Service instance must explicitly declare the charset and not rely on defaults.

The preferred form is the official IANA primary name for an encoding. Applications which stream text data should always specify the charset in the mime type, which necessitates obtaining the encoding of the host platform for data (eg files) stored in that platform's encoding. A CharSet which corresponds to this and is suitable for use in a mime-type for a DocFlavor can be obtained from DocFlavor.hostEncoding This may not always be the primary IANA name but is guaranteed to be understood by this VM. For common flavors, the pre-defined *HOST DocFlavors may be used.

See character encodings for more information on the character encodings supported on the Java platform.


Recommended DocFlavors

The Java Print Service API does not define any mandatorily supported DocFlavors. However, here are some examples of MIME types that a Java Print Service instance might support for client formatted print data. Nested classes inside class DocFlavor declare predefined static constant DocFlavor objects for these example doc flavors; class DocFlavor's constructor can be used to create an arbitrary doc flavor.

Service Formatted Print Data

For service formatted print data, the Java Print Service instance determines the print data format. The doc flavor's representation class denotes an interface whose methods the DocPrintJob invokes to determine the content to be printed -- such as a renderable image interface or a Java printable interface. The doc flavor's MIME type is the special value "application/x-java-jvm-local-objectref" indicating the client will supply a reference to a Java object that implements the interface named as the representation class. This MIME type is just a placeholder; what's important is the print data representation class.

For service formatted print data, the print data representation class is typically one of the following (although other representation classes are permitted). Nested classes inside class DocFlavor declare predefined static constant DocFlavor objects for these example doc flavors; class DocFlavor's constructor can be used to create an arbitrary doc flavor.


Pre-defined Doc Flavors

A Java Print Service instance is not required to support the following print data formats and print data representation classes. In fact, a developer using this class should never assume that a particular print service supports the document types corresponding to these pre-defined doc flavors. Always query the print service to determine what doc flavors it supports. However, developers who have print services that support these doc flavors are encouraged to refer to the predefined singleton instances created here. A Java Print Service instance is allowed to support any other doc flavors (or none) in addition to the above mandatory ones, at the implementation's choice.

Support for the above doc flavors is desirable so a printing client can rely on being able to print on any JPS printer, regardless of which doc flavors the printer supports. If the printer doesn't support the client's preferred doc flavor, the client can at least print plain text, or the client can convert its data to a renderable image and print the image.

Furthermore, every Java Print Service instance must fulfill these requirements for processing plain text print data:

The client must itself perform all plain text print data formatting not addressed by the above requirements.

Design Rationale

Class DocFlavor in package javax.print is similar to class java.awt.datatransfer.DataFlavor. Class DataFlavor is not used in the Java Print Service (JPS) API for three reasons which are all rooted in allowing the JPS API to be shared by other print services APIs which may need to run on Java profiles which do not include all of the Java Platform, Standard Edition.
  1. The JPS API is designed to be used in Java profiles which do not support AWT.
  2. The implementation of class java.awt.datatransfer.DataFlavor does not guarantee that equivalent data flavors will have the same serialized representation. DocFlavor does, and can be used in services which need this.
  3. The implementation of class java.awt.datatransfer.DataFlavor includes a human presentable name as part of the serialized representation. This is not appropriate as part of a service matching constraint.
Class DocFlavor's serialized representation uses the following canonical form of a MIME type string. Thus, two doc flavors with MIME types that are not identical but that are equivalent (that have the same canonical form) may be considered equal. Class DocFlavor's serialized representation also contains the fully-qualified class name of the representation class (a String object), rather than the representation class itself (a Class object). This allows a client to examine the doc flavors a Java Print Service instance supports without having to load the representation classes, which may be problematic for limited-resource clients.
Author
Alan Kaminsky
External Specification
https://www.rfc-editor.org/info/rfc2045, https://www.rfc-editor.org/info/rfc2046

Nested and Inner Type Summary

Modifier and TypeClass and Description
public static class
DocFlavor.BYTE_ARRAY

Class DocFlavor.BYTE_ARRAY provides predefined static constant DocFlavor objects for example doc flavors using a byte array (byte[]) as the print data representation class.

public static class
DocFlavor.CHAR_ARRAY

Class DocFlavor.CHAR_ARRAY provides predefined static constant DocFlavor objects for example doc flavors using a character array (char[]) as the print data representation class.

public static class
DocFlavor.INPUT_STREAM

Class DocFlavor.INPUT_STREAM provides predefined static constant DocFlavor objects for example doc flavors using a byte stream (java.io.InputStream) as the print data representation class.

public static class
DocFlavor.READER

Class DocFlavor.READER provides predefined static constant DocFlavor objects for example doc flavors using a character stream (java.io.Reader) as the print data representation class.

public static class
DocFlavor.SERVICE_FORMATTED

Class DocFlavor.SERVICE_FORMATTED provides predefined static constant DocFlavor objects for example doc flavors for service formatted print data.

public static class
DocFlavor.STRING

Class DocFlavor.STRING provides predefined static constant DocFlavor objects for example doc flavors using a string (java.lang.String) as the print data representation class.

public static class
DocFlavor.URL

Class DocFlavor.URL provides predefined static constant DocFlavor objects.

Field Summary

Modifier and TypeField and Description
public static final String
hostEncoding

A string representing the host operating system encoding.

private String
myClassName

Representation class name.

private transient MimeType
myMimeType

MIME type.

private transient String
myStringValue

String value for this doc flavor.

private static final long
serialVersionUID

Use serialVersionUID from JDK 1.4 for interoperability.

Constructor Summary

AccessConstructor and Description
public
DocFlavor(String
MIME media type string
mimeType
,
String
fully-qualified representation class name
className
)

Constructs a new doc flavor object from the given MIME type and representation class name.

Method Summary

Modifier and TypeMethod and Description
public boolean

Returns:

true if this doc flavor object equals obj, false otherwise
equals
(Object
Object to test
obj
)

Overrides java.lang.Object.equals.

Determines if this doc flavor object is equal to the given object.
public String

Returns:

the media sub-type
getMediaSubtype
()

Returns this doc flavor object's media subtype (from the MIME type).

public String

Returns:

the media type
getMediaType
()

Returns this doc flavor object's media type (from the MIME type).

public String

Returns:

the mime type
getMimeType
()

Returns this doc flavor object's MIME type string based on the canonical form.

public String

Returns:

a string representing a mime parameter, or null if that parameter is not in the mime type string
getParameter
(String
the name of the parameter. This name is internally converted to the canonical lower case format before performing the match.
paramName
)

Returns a String representing a MIME parameter.

public String

Returns:

the name of the representation class
getRepresentationClassName
()

Returns the name of this doc flavor object's representation class.

private String

Returns:

the string value
getStringValue
()

Returns this doc flavor object's string value.

public int
hashCode()

Overrides java.lang.Object.hashCode.

Returns a hash code for this doc flavor object.
private void
readObject(ObjectInputStream
the input stream
s
)

Reconstitute an instance from a stream (that is, deserialize it).

public String

Returns:

MIME type string based on the canonical form. Each parameter value is enclosed in quotes. A "class=" parameter is appended to the MIME type string to indicate the representation class name.
toString
()

Overrides java.lang.Object.toString.

Converts this DocFlavor to a string.
private void
writeObject(ObjectOutputStream
the output stream
s
)

Write the instance to a stream (ie serialize the object).

Inherited from java.lang.Object:
clonefinalizegetClassnotifynotifyAllwaitwaitwait