public static enum Version.Error extends Enum<Version.Error>
Enum Constant and Description |
---|
KEY_TOO_SMALL |
UNSUPPORTED_ALGORITHM |
UNSUPPORTED_KEYID |
Modifier and Type | Method and Description |
---|---|
static Version.Error |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Version.Error[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Version.Error UNSUPPORTED_ALGORITHM
public static final Version.Error UNSUPPORTED_KEYID
public static final Version.Error KEY_TOO_SMALL
public static Version.Error[] values()
for (Version.Error c : Version.Error.values()) System.out.println(c);
public static Version.Error 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 © 2016–2024. All rights reserved.