public static enum MifareDesfire.FileCommMode extends 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(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(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 null