- java.lang.Object
-
- javax.print.attribute.EnumSyntax
-
- javax.print.attribute.standard.ColorSupported
-
- All Implemented Interfaces:
-
Serializable
,Cloneable
,Attribute
,PrintServiceAttribute
public final class ColorSupported extends EnumSyntax implements PrintServiceAttribute
ColorSupported类是一个打印属性类,一个枚举,用于标识设备是否能够进行任何类型的彩色打印,包括突出显示颜色以及全过程颜色。 与打印数据相关的所有与颜色有关的文档指令都嵌入在打印数据之外(不包括附加到打印数据之外的作业的属性)。注意:最终用户可以通过查询
PrinterMoreInfoManufacturer
属性来确定颜色支持的性质和细节。不要将ColorSupported属性与
Chromaticity
属性混淆。Chromaticity
是客户端可以为作业指定的属性,以告知打印机是否以单色或彩色打印文档,可能导致打印机以单色打印彩色文档。 ColorSupported是一个打印机描述属性,用于指示打印机是否可以打印,无论客户端如何指定打印任何特定文档。IPP兼容性:对于SUPPORTED,IPP布尔值为“true”,NOT_SUPPORTED为“false”。 由
getName()
返回的类别名称是IPP属性名称。 枚举的整数值是IPP枚举值。toString()
方法返回属性值的IPP字符串表示形式。- 另请参见:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field 描述 static ColorSupported
NOT_SUPPORTED
打印机不能进行任何类型的彩色打印。static ColorSupported
SUPPORTED
打印机能够进行某种类型的彩色打印,例如高亮颜色或全过程颜色。
-
构造方法摘要
构造方法 Modifier Constructor 描述 protected
ColorSupported(int value)
使用给定的整数值构造支持新颜色的枚举值。
-
方法摘要
所有方法 接口方法 具体的方法 Modifier and Type 方法 描述 Class<? extends Attribute>
getCategory()
获取要用作此打印属性值的“类别”的打印属性类。protected EnumSyntax[]
getEnumValueTable()
返回ColorSupported类的枚举值表。String
getName()
获取此属性值是一个实例的类别的名称。protected String[]
getStringTable()
返回ColorSupported类的字符串表。-
Methods inherited from class javax.print.attribute.EnumSyntax
clone, getOffset, getValue, hashCode, readResolve, toString
-
-
-
-
字段详细信息
-
NOT_SUPPORTED
public static final ColorSupported NOT_SUPPORTED
打印机不能进行任何类型的彩色打印。
-
SUPPORTED
public static final ColorSupported SUPPORTED
打印机能够进行某种类型的彩色打印,例如高亮颜色或全过程颜色。
-
-
方法详细信息
-
getStringTable
protected String[] getStringTable()
返回ColorSupported类的字符串表。- 重写:
-
getStringTable
在EnumSyntax
- 结果
- 字符串表
-
getEnumValueTable
protected EnumSyntax[] getEnumValueTable()
返回ColorSupported类的枚举值表。- 重写:
-
getEnumValueTable
在EnumSyntax
- 结果
- 值表
-
getCategory
public final Class<? extends Attribute> getCategory()
获取要用作此打印属性值的“类别”的打印属性类。对于ColorSupported类,该类别是ColorSupported类。
- Specified by:
-
getCategory
在接口Attribute
- 结果
-
打印属性类(category),一个
java.lang.Class
类的实例。
-
-