public enum CryptoMode extends Enum<CryptoMode>
| Enum Constant and Description |
|---|
FIPS_MODE |
NON_FIPS_MODE |
| Modifier and Type | Method and Description |
|---|---|
static CryptoMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CryptoMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CryptoMode FIPS_MODE
public static final CryptoMode NON_FIPS_MODE
public static CryptoMode[] values()
for (CryptoMode c : CryptoMode.values()) System.out.println(c);
public static CryptoMode 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 © 2010 - 2020 Adobe. All Rights Reserved