OrientationRequested
is a printing attribute class, an
enumeration, that indicates the desired orientation for printed print-stream
pages; it does not describe the orientation of the client-supplied
print-stream pages.
For some document formats (such as "application/postscript"
), the
desired orientation of the print-stream pages is specified within the
document data. This information is generated by a device driver prior to the
submission of the print job. Other document formats (such as
"text/plain"
) do not include the notion of desired orientation within
the document data. In the latter case it is possible for the printer to bind
the desired orientation to the document data after it has been submitted. It
is expected that a printer would only support the
OrientationRequested
attribute for some document formats (e.g.,
"text/plain"
or "text/html"
) but not others (e.g.
"application/postscript"
). This is no different from any other job
template attribute, since a print job can always impose constraints among the
values of different job template attributes. However, a special mention is
made here since it is very likely that a printer will support the
OrientationRequested
attribute for only a subset of the supported
document formats.
IPP Compatibility: The category name returned by getName()
is
the IPP attribute name. The enumeration's integer value is the IPP enum
value. The toString()
method returns the IPP string representation of
the attribute value.
Modifier and Type | Field and Description |
---|---|
public static final OrientationRequested | LANDSCAPE
The content will be imaged across the long edge of the medium. |
private static final OrientationRequested[] | myEnumValueTable
The enumeration value table for class |
private static final String[] | myStringTable
The string table for class |
public static final OrientationRequested | PORTRAIT
The content will be imaged across the short edge of the medium. |
public static final OrientationRequested | REVERSE_LANDSCAPE
The content will be imaged across the long edge of the medium, but in the opposite manner from landscape. |
public static final OrientationRequested | REVERSE_PORTRAIT
The content will be imaged across the short edge of the medium, but in the opposite manner from portrait. |
private static final long | serialVersionUID
Use serialVersionUID from JDK 1.4 for interoperability.
|
Access | Constructor and Description |
---|---|
protected | OrientationRequested(int
Integer value value)Construct a new orientation requested enumeration value with the given integer value. |
Modifier and Type | Method and Description |
---|---|
public final Class | Returns: printing attribute class (category), an instance of classjava. Implements javax. Get the printing attribute class which is to be used as the "category" for this printing attribute value. |
protected EnumSyntax[] | getEnumValueTable()
Overrides javax. Returns the enumeration value table for class
|
public final String | Returns: attribute category nameImplements javax. Get the name of the category of which this attribute value is an instance. |
protected int | getOffset()
Overrides javax. Returns the lowest integer value used by class
|
protected String[] | getStringTable()
Overrides javax. Returns the string table for class |
LANDSCAPE | back to summary |
---|---|
public static final OrientationRequested LANDSCAPE The content will be imaged across the long edge of the medium. Landscape is defined to be a rotation of the print-stream page to be imaged by +90 degrees with respect to the medium (i.e. anti-clockwise) from the portrait orientation Note The +90 direction was chosen because simple finishing on the long edge is the same edge whether portrait or landscape. |
myEnumValueTable | back to summary |
---|---|
private static final OrientationRequested[] myEnumValueTable The enumeration value table for class |
myStringTable | back to summary |
---|---|
private static final String[] myStringTable The string table for class |
PORTRAIT | back to summary |
---|---|
public static final OrientationRequested PORTRAIT The content will be imaged across the short edge of the medium. |
REVERSE_LANDSCAPE | back to summary |
---|---|
public static final OrientationRequested REVERSE_LANDSCAPE The content will be imaged across the long edge of the medium, but in the opposite manner from landscape. Reverse-landscape is defined to be a rotation of the print-stream page to be imaged by -90 degrees with respect to the medium (i.e. clockwise) from the portrait orientation Note The REVERSE_LANDSCAPE value was added because some applications rotate landscape -90 degrees from portrait, rather than +90 degrees. |
REVERSE_PORTRAIT | back to summary |
---|---|
public static final OrientationRequested REVERSE_PORTRAIT The content will be imaged across the short edge of the medium, but in the opposite manner from portrait. Reverse-portrait is defined to be a rotation of the print-stream page to be imaged by 180 degrees with respect to the medium from the portrait orientation Note The
REVERSE_PORTRAIT value was added for use with the
|
serialVersionUID | back to summary |
---|---|
private static final long serialVersionUID Hides javax. Use serialVersionUID from JDK 1.4 for interoperability. |
OrientationRequested | back to summary |
---|---|
protected OrientationRequested(int value) Construct a new orientation requested enumeration value with the given integer value.
|
getCategory | back to summary |
---|---|
public final Class Implements javax. Get the printing attribute class which is to be used as the "category" for this printing attribute value.
For class
|
getEnumValueTable | back to summary |
---|---|
protected EnumSyntax[] getEnumValueTable() Overrides javax. Returns the enumeration value table for class
|
getName | back to summary |
---|---|
public final String getName() Implements javax. Get the name of the category of which this attribute value is an instance.
For class
|
getOffset | back to summary |
---|---|
protected int getOffset() Overrides javax. Returns the lowest integer value used by class
|
getStringTable | back to summary |
---|---|
protected String[] getStringTable() Overrides javax. Returns the string table for class
|