Added in API level 19

PrintDocument


public final class PrintDocument
extends Object

java.lang.Object
   ↳ android.printservice.PrintDocument


This class represents a printed document from the perspective of a print service. It exposes APIs to query the document and obtain its data.

Note: All methods of this class must be executed on the main application thread.

Summary

Public methods

ParcelFileDescriptor getData()

Gets the data associated with this document.

PrintDocumentInfo getInfo()

Gets the PrintDocumentInfo that describes this document.

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

Indicates whether some other object is "equal to" this one.

void finalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

Wakes up a single thread that is waiting on this object's monitor.

final void notifyAll()

Wakes up all threads that are waiting on this object's monitor.

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait(long timeoutMillis)

Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.

final void wait()

Causes the current thread to wait until it is awakened, typically by being notified or interrupted.

Public methods

getData

Added in API level 19
public ParcelFileDescriptor getData ()

Gets the data associated with this document.

Note: It is a responsibility of the client to open a stream to the returned file descriptor, fully read the data, and close the file descriptor.

Returns
ParcelFileDescriptor A file descriptor for reading the data. This value may be null.

getInfo

Added in API level 19
public PrintDocumentInfo getInfo ()

Gets the PrintDocumentInfo that describes this document.

Returns
PrintDocumentInfo The document info. This value cannot be null.