- java.lang.Object
-
- javax.print.attribute.EnumSyntax
-
- javax.print.attribute.standard.Chromaticity
-
- All Implemented Interfaces:
-
Serializable
,Cloneable
,Attribute
,DocAttribute
,PrintJobAttribute
,PrintRequestAttribute
public final class Chromaticity extends EnumSyntax implements DocAttribute, PrintRequestAttribute, PrintJobAttribute
Class Chromaticity是一个打印属性类,一个枚举,用于指定单色或彩色打印。 打印客户端使用它来指定如何生成或处理打印数据。 它不描述设备的颜色能力。 查询服务的ColorSupported
属性,以确定设备是否可以通过验证来支持彩色打印。下表显示了为单色或彩色文档指定色彩属性
Shows effects of specifying MONOCHROME or COLOR Chromaticity attributes ChromaticityMONOCHROME
或COLOR
的效果。
Attribute Effect on
Monochrome Document Effect on
Color DocumentMONOCHROME
Printed as is, in monochrome Printed in monochrome, with colors converted to shades of grayCOLOR
Printed as is, in monochrome Printed as is, in colorIPP兼容性:目前色度不是IPP属性。
- 另请参见:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field 描述 static Chromaticity
COLOR
彩色印刷。static Chromaticity
MONOCHROME
单色打印。
-
构造方法摘要
构造方法 Modifier Constructor 描述 protected
Chromaticity(int value)
用给定的整数值构造一个新的色度枚举值。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 Class<? extends Attribute>
getCategory()
获取要用作此打印属性值的“类别”的打印属性类。protected EnumSyntax[]
getEnumValueTable()
返回类Chromaticity的枚举值表。String
getName()
获取此属性值是一个实例的类别的名称。protected String[]
getStringTable()
返回类Chromaticity的字符串表。-
Methods inherited from class javax.print.attribute.EnumSyntax
clone, getOffset, getValue, hashCode, readResolve, toString
-
-
-
-
字段详细信息
-
MONOCHROME
public static final Chromaticity MONOCHROME
单色打印。
-
COLOR
public static final Chromaticity COLOR
彩色印刷。
-
-
方法详细信息
-
getStringTable
protected String[] getStringTable()
返回类Chromaticity的字符串表。- 重写:
-
getStringTable
在EnumSyntax
- 结果
- 字符串表
-
getEnumValueTable
protected EnumSyntax[] getEnumValueTable()
返回类Chromaticity的枚举值表。- 重写:
-
getEnumValueTable
在EnumSyntax
- 结果
- 值表
-
getCategory
public final Class<? extends Attribute> getCategory()
获取要用作此打印属性值的“类别”的打印属性类。对于类色度,类别是色度本身。
- Specified by:
-
getCategory
在接口Attribute
- 结果
-
打印属性类(category),一个
java.lang.Class
类的实例。
-
-