@CodingStyleguideUnaware public enum AlgorithmCodeSimpleType extends Enum<AlgorithmCodeSimpleType>
Java class for AlgorithmCodeSimpleType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="AlgorithmCodeSimpleType">
<restriction base="{http://www.w3.org/2001/XMLSchema}string">
<enumeration value="Md5"/>
<enumeration value="Sha1"/>
<enumeration value="Sha256"/>
</restriction>
</simpleType>
| Enum Constant and Description |
|---|
MD_5
Indicates the algorithm used was MD5
|
SHA_1
Indicates the algorithm used was SHA-1
|
SHA_256
Indicates the algorithm used was SHA256
|
| Modifier and Type | Method and Description |
|---|---|
static AlgorithmCodeSimpleType |
fromValue(String v) |
String |
value() |
static AlgorithmCodeSimpleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AlgorithmCodeSimpleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlgorithmCodeSimpleType MD_5
public static final AlgorithmCodeSimpleType SHA_1
public static final AlgorithmCodeSimpleType SHA_256
public static AlgorithmCodeSimpleType[] values()
for (AlgorithmCodeSimpleType c : AlgorithmCodeSimpleType.values()) System.out.println(c);
public static AlgorithmCodeSimpleType 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 String value()
public static AlgorithmCodeSimpleType fromValue(String v)
Copyright © 2020 toop.eu. All rights reserved.