public static enum ECDH.AlgorithmMode extends Enum<ECDH.AlgorithmMode>
Enum Constant and Description |
---|
DIRECT
Direct key agreement mode.
|
KW
Key wrapping mode.
|
Modifier and Type | Method and Description |
---|---|
static ECDH.AlgorithmMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ECDH.AlgorithmMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ECDH.AlgorithmMode DIRECT
public static final ECDH.AlgorithmMode KW
public static ECDH.AlgorithmMode[] values()
for (ECDH.AlgorithmMode c : ECDH.AlgorithmMode.values()) System.out.println(c);
public static ECDH.AlgorithmMode 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 © 2019 Connect2id Ltd.. All rights reserved.