public enum CanonicalAlgorithm extends Enum<CanonicalAlgorithm> implements HasCode<CanonicalAlgorithm>
| Modifier and Type | Class and Description |
|---|---|
static class |
CanonicalAlgorithm.CanonicalAlgorithmDeserializer |
| Enum Constant and Description |
|---|
CANONICALIZATION |
CANONICALIZATION_11 |
| Modifier and Type | Method and Description |
|---|---|
String |
getCode() |
static CanonicalAlgorithm |
of(String code) |
static CanonicalAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CanonicalAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CanonicalAlgorithm CANONICALIZATION
public static final CanonicalAlgorithm CANONICALIZATION_11
public static CanonicalAlgorithm[] values()
for (CanonicalAlgorithm c : CanonicalAlgorithm.values()) System.out.println(c);
public static CanonicalAlgorithm 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 static CanonicalAlgorithm of(String code)
public String getCode()
getCode in interface HasCode<CanonicalAlgorithm>Copyright © 2019. All rights reserved.