- java.lang.Object
-
- javax.print.attribute.EnumSyntax
-
- javax.print.attribute.standard.PresentationDirection
-
- All Implemented Interfaces:
-
Serializable
,Cloneable
,Attribute
,PrintJobAttribute
,PrintRequestAttribute
public final class PresentationDirection extends EnumSyntax implements PrintJobAttribute, PrintRequestAttribute
类PresentationDirection是打印属性类,枚举,与NumberUp
属性结合使用,以指示多个打印流页面在所选介质的实例的单侧上施加的布局。 这对于镜像不同脚本的文本布局约定很有用。 例如,英语是“toright-tobottom”,希伯来语是“toleft-tobottom”,日语通常是“tobottom-toleft”。IPP兼容性:此属性不是IPP 1.1属性; 它是IPP 1.1的生产打印扩展( PDF )中的属性。 由
getName()
返回的类别名称是IPP属性名称。 枚举的整数值是IPP枚举值。toString()
方法返回属性值的IPP字符串表示形式。- 另请参见:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field 描述 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
页面按照从左下角开始的列进行排列,向上和向右移动。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 Class<? extends Attribute>
getCategory()
获取要用作此打印属性值的“类别”的打印属性类。protected EnumSyntax[]
getEnumValueTable()
返回类PresentationDirection的枚举值表。String
getName()
获取此属性值是一个实例的类别的名称。protected String[]
getStringTable()
返回类PresentationDirection的字符串表。-
Methods inherited from class 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 Class<? extends Attribute> getCategory()
获取要用作此打印属性值的“类别”的打印属性类。对于类PresentationDirection,类别是PresentationDirection类。
- Specified by:
-
getCategory
在接口Attribute
- 结果
-
打印属性类(category),一个
java.lang.Class
类的实例。
-
-