public static enum MifareDesfire.FileCommMode extends java.lang.Enum<MifareDesfire.FileCommMode>
| Enum Constant and Description |
|---|
ENCIPHERED
Fully enciphered communication.
|
MACED
Plain communication secured by MACing.
|
PLAIN
Plain communication
|
| Modifier and Type | Method and Description |
|---|---|
static MifareDesfire.FileCommMode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static MifareDesfire.FileCommMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final MifareDesfire.FileCommMode PLAIN
public static final MifareDesfire.FileCommMode MACED
public static final MifareDesfire.FileCommMode ENCIPHERED
public static MifareDesfire.FileCommMode[] values()
for (MifareDesfire.FileCommMode c : MifareDesfire.FileCommMode.values()) System.out.println(c);
public static MifareDesfire.FileCommMode 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