public enum AlgorithmType extends Enum<AlgorithmType> implements Serializable
Enum Constant and Description |
---|
ASYMMETRIC |
HASHING |
SYMMETRIC |
Modifier and Type | Field and Description |
---|---|
static long |
serialVersionUID |
Modifier and Type | Method and Description |
---|---|
static AlgorithmType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlgorithmType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlgorithmType SYMMETRIC
public static final AlgorithmType ASYMMETRIC
public static final AlgorithmType HASHING
public static final long serialVersionUID
public static AlgorithmType[] values()
for (AlgorithmType c : AlgorithmType.values()) System.out.println(c);
public static AlgorithmType 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 © 2023. All rights reserved.