- java.lang.Object
-
- javax.print.attribute.EnumSyntax
-
- javax.print.attribute.standard.PresentationDirection
-
- 实现的所有接口
-
Serializable
,Cloneable
,Attribute
,PrintJobAttribute
,PrintRequestAttribute
public final class PresentationDirection extends EnumSyntax implements PrintJobAttribute, PrintRequestAttribute
类PresentationDirection
是打印属性类,枚举,与NumberUp
属性结合使用,以指示要在所选介质的实例的单面上施加的多个打印流页面的布局。 这对于镜像不同脚本的文本布局约定很有用。 例如,英语是“toright-tobottom”,希伯来语是“宽容的”,日语通常是“tobottom-toleft”。IPP兼容性:此属性不是IPP 1.1属性; 它是IPP 1.1的生产印刷扩展( PDF )中的属性。
getName()
返回的类别名称是IPP属性名称。 枚举的整数值是IPP枚举值。toString()
方法返回属性值的IPP字符串表示形式。- 另请参见:
- Serialized Form
-
-
字段汇总
字段 变量和类型 字段 描述 static PresentationDirection
TOBOTTOM_TOLEFT
页面从右上角开始按列排列,向左下方开始。static PresentationDirection
TOBOTTOM_TORIGHT
页面从左上角开始按列排列,向下和向右。static PresentationDirection
TOLEFT_TOBOTTOM
页面从右上角开始按行排列,向左和向下行进。static PresentationDirection
TOLEFT_TOTOP
页面从右下角开始按行排列,向左和向上显示。static PresentationDirection
TORIGHT_TOBOTTOM
页面从左上角开始按行排列,向右和向下。static PresentationDirection
TORIGHT_TOTOP
页面从左下角开始按行排列,向右和向上显示。static PresentationDirection
TOTOP_TOLEFT
页面从右下角开始按列排列,朝向顶部和左侧。static PresentationDirection
TOTOP_TORIGHT
页面从左下角开始按列排列,向右和向右移动。
-
方法摘要
所有方法 实例方法 具体的方法 变量和类型 方法 描述 类<? extends Attribute>
getCategory()
获取将用作此打印属性值的“类别”的打印属性类。protected EnumSyntax[]
getEnumValueTable()
返回类PresentationDirection
的枚举值表。String
getName()
获取此属性值为实例的类别的名称。protected String[]
getStringTable()
返回类PresentationDirection
的字符串表。-
声明方法的类 javax.print.attribute.EnumSyntax
clone, getOffset, getValue, hashCode, readResolve, toString
-
-
-
-
字段详细信息
-
TOBOTTOM_TORIGHT
public static final PresentationDirection TOBOTTOM_TORIGHT
页面从左上角开始按列排列,向下和向右。
-
TOBOTTOM_TOLEFT
public static final PresentationDirection TOBOTTOM_TOLEFT
页面从右上角开始按列排列,向左下方开始。
-
TOTOP_TORIGHT
public static final PresentationDirection TOTOP_TORIGHT
页面从左下角开始按列排列,向右和向右移动。
-
TOTOP_TOLEFT
public static final PresentationDirection TOTOP_TOLEFT
页面从右下角开始按列排列,朝向顶部和左侧。
-
TORIGHT_TOBOTTOM
public static final PresentationDirection TORIGHT_TOBOTTOM
页面从左上角开始按行排列,向右和向下。
-
TORIGHT_TOTOP
public static final PresentationDirection TORIGHT_TOTOP
页面从左下角开始按行排列,向右和向上显示。
-
TOLEFT_TOBOTTOM
public static final PresentationDirection TOLEFT_TOBOTTOM
页面从右上角开始按行排列,向左和向下行进。
-
TOLEFT_TOTOP
public static final PresentationDirection TOLEFT_TOTOP
页面从右下角开始按行排列,向左和向上显示。
-
-
方法详细信息
-
getStringTable
protected String[] getStringTable()
返回类PresentationDirection
的字符串表。- 重写:
-
getStringTable
类EnumSyntax
- 结果
- 字符串表
-
getEnumValueTable
protected EnumSyntax[] getEnumValueTable()
返回类PresentationDirection
的枚举值表。- 重写:
-
getEnumValueTable
类EnumSyntax
- 结果
- 价值表
-
getCategory
public final 类<? extends Attribute> getCategory()
获取将用作此打印属性值的“类别”的打印属性类。对于类
PresentationDirection
,类别为PresentationDirection
类。- Specified by:
-
getCategory
接口Attribute
- 结果
-
打印属性类(类别),类
java.lang.Class
的实例
-
-