public enum AlgorithmTypes extends java.lang.Enum<AlgorithmTypes>
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static AlgorithmTypes |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlgorithmTypes[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="0") public static final AlgorithmTypes SKGL
@SerializedName(value="1") public static final AlgorithmTypes SKM15
public static AlgorithmTypes[] values()
for (AlgorithmTypes c : AlgorithmTypes.values()) System.out.println(c);
public static AlgorithmTypes 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 nullpublic int getValue()