| Enum Constant and Description |
|---|
NORMAL
Normal ink type for trapping.
|
OPAQUE
Opaque ink type for trapping.
|
OPAQUE_IGNORE
Opaque Ignore ink type for trapping.
|
TRANSPARENT
Transparent ink type for trapping.
|
| Modifier and Type | Method and Description |
|---|---|
static InkTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static InkTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final InkTypes NORMAL
public static final InkTypes TRANSPARENT
public static final InkTypes OPAQUE
public static final InkTypes OPAQUE_IGNORE
public static InkTypes[] values()
for (InkTypes c : InkTypes.values()) System.out.println(c);
public static InkTypes valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is null