public enum ChannelControl extends java.lang.Enum<ChannelControl>
Enum Constant and Description |
---|
CLOSE_AFTER
terminates the communication with the card (instantaneously closes the physical channel or
initiates the card removal sequence depending on the observation mode)
|
KEEP_OPEN
lefts the physical channel open
|
Modifier and Type | Method and Description |
---|---|
static ChannelControl |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ChannelControl[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ChannelControl KEEP_OPEN
public static final ChannelControl CLOSE_AFTER
public static ChannelControl[] values()
for (ChannelControl c : ChannelControl.values()) System.out.println(c);
public static ChannelControl 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