public enum SCardProtocol extends Enum<SCardProtocol>
| Enum Constant and Description |
|---|
SCARD_PROTOCOL_0
This parameter may be zero only if dwShareMode is set to
SCARD_SHARE_DIRECT.
|
SCARD_PROTOCOL_RAW |
SCARD_PROTOCOL_T0
T=0 is an acceptable protocol.
|
SCARD_PROTOCOL_T1
T=1 is an acceptable protocol.
|
SCARD_PROTOCOL_T15 |
| Modifier and Type | Method and Description |
|---|---|
static SCardProtocol |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SCardProtocol[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SCardProtocol SCARD_PROTOCOL_T0
public static final SCardProtocol SCARD_PROTOCOL_T1
public static final SCardProtocol SCARD_PROTOCOL_T15
public static final SCardProtocol SCARD_PROTOCOL_0
public static final SCardProtocol SCARD_PROTOCOL_RAW
public static SCardProtocol[] values()
for (SCardProtocol c : SCardProtocol.values()) System.out.println(c);
public static SCardProtocol 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 nullCopyright © 2011-2013. All Rights Reserved.