public enum MspBaseAlgorithm extends java.lang.Enum<MspBaseAlgorithm>
| Enum Constant and Description | 
|---|
BASE_CAP
CAP algorithm 
 | 
BASE_GPF
Gemalto proprietary format algorithm 
 | 
BASE_OATH
Oath algorithm 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static MspBaseAlgorithm | 
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. 
 | 
static MspBaseAlgorithm[] | 
values()
Returns an array containing the constants of this enum type, in
the order they are declared. 
 | 
public static final MspBaseAlgorithm BASE_CAP
public static final MspBaseAlgorithm BASE_OATH
public static final MspBaseAlgorithm BASE_GPF
public static MspBaseAlgorithm[] values()
for (MspBaseAlgorithm c : MspBaseAlgorithm.values()) System.out.println(c);
public static MspBaseAlgorithm 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