public enum CanonicalizationAlgorithm extends Enum<CanonicalizationAlgorithm>
Modifier and Type | Method and Description |
---|---|
String |
algoName()
Gets the canonicalization algorithm representation.
|
static CanonicalizationAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CanonicalizationAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CanonicalizationAlgorithm SIMPLE
public static final CanonicalizationAlgorithm RELAXED
public static CanonicalizationAlgorithm[] values()
for (CanonicalizationAlgorithm c : CanonicalizationAlgorithm.values()) System.out.println(c);
public static CanonicalizationAlgorithm 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 algoName()
Copyright © 2021 Eclipse. All rights reserved.