public enum SignaturePackaging extends Enum<SignaturePackaging>
| Enum Constant and Description |
|---|
DETACHED |
ENVELOPED |
ENVELOPING |
| Modifier and Type | Method and Description |
|---|---|
static SignaturePackaging |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SignaturePackaging[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SignaturePackaging ENVELOPED
public static final SignaturePackaging ENVELOPING
public static final SignaturePackaging DETACHED
public static SignaturePackaging[] values()
for (SignaturePackaging c : SignaturePackaging.values()) System.out.println(c);
public static SignaturePackaging 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 © 2018. All rights reserved.