public static enum StringDigester.OutputFormat extends Enum<StringDigester.OutputFormat>
Enum Constant and Description |
---|
BASE64
Base64-encoding.
|
HEX_LOWER
Hexadecimal encoding, with lower case characters.
|
HEX_UPPER
Hexadecimal encoding, with upper case characters.
|
Modifier and Type | Method and Description |
---|---|
static StringDigester.OutputFormat |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static StringDigester.OutputFormat[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final StringDigester.OutputFormat BASE64
public static final StringDigester.OutputFormat HEX_LOWER
public static final StringDigester.OutputFormat HEX_UPPER
public static StringDigester.OutputFormat[] values()
for (StringDigester.OutputFormat c : StringDigester.OutputFormat.values()) System.out.println(c);
public static StringDigester.OutputFormat 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 © 1999–2017. All rights reserved.