public enum ECIPolicy extends java.lang.Enum<ECIPolicy>
ECIPolicy is an enumeration defining the policy
for the ECI protocoll.
The type is one of:
| TRANSMIT | Transmit ECI escape sequence |
| REMOVE | Remove ECI escape sequence |
| Enum Constant and Description |
|---|
REMOVE
Remove ECI escape sequence
|
TRANSMIT
Transmit ECI escape sequence
|
| Modifier and Type | Method and Description |
|---|---|
static ECIPolicy |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ECIPolicy[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECIPolicy TRANSMIT
public static final ECIPolicy REMOVE
public static ECIPolicy[] values()
for (ECIPolicy c : ECIPolicy.values()) System.out.println(c);
public static ECIPolicy 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