public enum AlgorithmFamily extends Enum<AlgorithmFamily>
| Modifier and Type | Method and Description |
|---|---|
static AlgorithmFamily |
forName(String name) |
static AlgorithmFamily |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlgorithmFamily[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlgorithmFamily HMAC
public static final AlgorithmFamily RSA
public static final AlgorithmFamily EC
public static AlgorithmFamily[] values()
for (AlgorithmFamily c : AlgorithmFamily.values()) System.out.println(c);
public static AlgorithmFamily 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 nullpublic static AlgorithmFamily forName(String name)
Copyright © 2017. All rights reserved.