public enum STPrintColorMode extends Enum<STPrintColorMode>
Java class for ST_PrintColorMode.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ST_PrintColorMode">
<restriction base="{http://www.w3.org/2001/XMLSchema}token">
<enumeration value="bw"/>
<enumeration value="gray"/>
<enumeration value="clr"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
BW
Black and White Mode
|
CLR
Color Mode
|
GRAY
Grayscale Mode
|
| Modifier and Type | Method and Description |
|---|---|
static STPrintColorMode |
fromValue(String v) |
String |
value() |
static STPrintColorMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static STPrintColorMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final STPrintColorMode BW
public static final STPrintColorMode GRAY
public static final STPrintColorMode CLR
public static STPrintColorMode[] values()
for (STPrintColorMode c : STPrintColorMode.values()) System.out.println(c);
public static STPrintColorMode valueOf(String name)
name - the name of the enum constant to be returned.IllegalArgumentException - if this enum type has no constant with the specified nameNullPointerException - if the argument is nullpublic String value()
public static STPrintColorMode fromValue(String v)
Copyright © 2007-2021. All Rights Reserved.