|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
javax.print.attribute.standard
类 OrientationRequested
java.lang.Object javax.print.attribute.EnumSyntax javax.print.attribute.standard.OrientationRequested
- 所有已实现的接口:
- Serializable, Cloneable, Attribute, DocAttribute, PrintJobAttribute, PrintRequestAttribute
-
public final class OrientationRequested
- extends EnumSyntax
- implements DocAttribute, PrintRequestAttribute, PrintJobAttribute
类 OrientationRequested 是打印属性类,它是一种枚举,指示所打印的打印流页的所需方向;但它不描述客户端提供的打印流页的方向。
对于某些文档格式(如 "application/postscript"
),所需的打印流页方向可在该文档数据内指定。此信息由设备驱动程序在提交打印作业前生成。其他文档格式(如 "text/plain"
)在文档数据内不包括所需要的方向这一概念。在后一种情况下,打印者可以在提交文档数据后将所需的方向与该文档数据绑定。有时想让打印机仅支持某些文档格式的 OrientationRequested 属性(例如 "text/plain"
或 "text/html"
),但不支持其他文档格式(例如 "application/postscript"
)的这一属性。这与其他作业模板属性没有任何不同,因为打印作业始终能够在不同作业模板属性的值之间施加限制。但是,由于很多情况下打印机只为受支持文档格式的子集支持 OrientationRequested 属性,所以在此要加以特别说明。
IPP 兼容性:由 getName()
返回的类别名称是 IPP 属性名称。枚举的整数值是 IPP 枚举值。toString()
方法返回属性值的 IPP 字符串表示形式。
- 另请参见:
- 序列化表格
字段摘要 | |
---|---|
static OrientationRequested |
LANDSCAPE 沿介质的长边描绘内容。 |
static OrientationRequested |
PORTRAIT 沿介质的短边描绘内容。 |
static OrientationRequested |
REVERSE_LANDSCAPE 沿介质的长边描绘内容,但方式正好与横向相反。 |
static OrientationRequested |
REVERSE_PORTRAIT 沿介质的短边描绘内容,但方式正好与纵向相反。 |
构造方法摘要 | |
---|---|
protected |
OrientationRequested(int value) 构造具有给定整数值的新 OrientationRequested 枚举值。 |
方法摘要 | |
---|---|
Class<? extends Attribute> |
getCategory() 获取将用作此打印属性值的“类别”的打印属性类。 |
protected EnumSyntax[] |
getEnumValueTable() 返回类 OrientationRequested 的枚举值表。 |
String |
getName() 获取类别的名称,此属性值是该类别的一个实例。 |
protected int |
getOffset() 返回类 OrientationRequested 所使用的最小整数值。 |
protected String[] |
getStringTable() 返回类 OrientationRequested 的字符串表。 |
从类 javax.print.attribute.EnumSyntax 继承的方法 |
---|
clone, getValue, hashCode, readResolve, toString |
从类 java.lang.Object 继承的方法 |
---|
equals, finalize, getClass, notify, notifyAll, wait, wait, wait |
字段详细信息 |
---|
PORTRAIT
public static final OrientationRequested PORTRAIT
-
沿介质的短边描绘内容。
LANDSCAPE
public static final OrientationRequested LANDSCAPE
-
沿介质的长边描绘内容。横向被定义为针对纵向的介质而言,将要描绘的打印流页旋转 +90 度(即逆时针方向)。注:之所以选择 +90 方向,是因为在长边上的简单完成要么是在纵向边上完成,要么是在横向边上完成。
REVERSE_LANDSCAPE
public static final OrientationRequested REVERSE_LANDSCAPE
-
沿介质的长边描绘内容,但方式正好与横向相反。反向横向被定义为针对纵向的介质而言,将要描绘的打印流页旋转 -90 度(即顺时针方向)。注:之所以添加 REVERSE_LANDSCAPE 值,是因为有些应用程序会从纵向横向旋转 -90 度,而不是 +90 度。
REVERSE_PORTRAIT
public static final OrientationRequested REVERSE_PORTRAIT
-
沿介质的短边描绘内容,但方式正好与纵向相反。反向纵向被定义为针对纵向的介质而言,将要描绘的打印流页旋转 180 度。注: 添加 REVERSE_PORTRAIT 值是为了使用
Finishings
属性,以防在简单完成设备(这些设备只有一个完成位置)上完成纵向文档时需要相反的边。因此,简单完成设备可以“靠右”装订一个"text/plain"
纵向文档,这在某些中东语言(如希伯来语)中很常见。
构造方法详细信息 |
---|
OrientationRequested
protected OrientationRequested(int value)
-
构造具有给定整数值的新 OrientationRequested 枚举值。
- 参数:
-
value
- 整数值。
方法详细信息 |
---|
getStringTable
protected String[] getStringTable()
- 返回类 OrientationRequested 的字符串表。
-
- 覆盖:
-
类
EnumSyntax
中的getStringTable
-
- 返回:
- 字符串表
getEnumValueTable
protected EnumSyntax[] getEnumValueTable()
- 返回类 OrientationRequested 的枚举值表。
-
- 覆盖:
-
类
EnumSyntax
中的getEnumValueTable
-
- 返回:
- 值表
getOffset
protected int getOffset()
- 返回类 OrientationRequested 所使用的最小整数值。
-
- 覆盖:
-
类
EnumSyntax
中的getOffset
-
- 返回:
- 最小枚举值的偏移量。
getCategory
public final Class<? extends Attribute> getCategory()
-
获取将用作此打印属性值的“类别”的打印属性类。
对于类 OrientationRequested,该类别就是类 OrientationRequested 本身。
-
- 指定者:
-
接口
Attribute
中的getCategory
-
- 返回:
-
打印属性类(类别),这是类
java.lang.Class
的一个实例。