public static enum CryptoCoverageUtil.CoverageScope extends Enum<CryptoCoverageUtil.CoverageScope>
| Enum Constant and Description |
|---|
CONTENT
Checks for encryption of the matching elements.
|
ELEMENT
Checks for a signature over the matching elements.
|
| Modifier and Type | Method and Description |
|---|---|
static CryptoCoverageUtil.CoverageScope |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static CryptoCoverageUtil.CoverageScope[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final CryptoCoverageUtil.CoverageScope CONTENT
public static final CryptoCoverageUtil.CoverageScope ELEMENT
public static CryptoCoverageUtil.CoverageScope[] values()
for (CryptoCoverageUtil.CoverageScope c : CryptoCoverageUtil.CoverageScope.values()) System.out.println(c);
public static CryptoCoverageUtil.CoverageScope 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 nullApache CXF