public enum AS2MessageStructure extends Enum<AS2MessageStructure>
Enum Constant and Description |
---|
ENCRYPTED |
ENCRYPTED_COMPRESSED |
ENCRYPTED_COMPRESSED_SIGNED |
PLAIN |
PLAIN_COMPRESSED |
SIGNED |
SIGNED_COMPRESSED |
SIGNED_ENCRYPTED |
Modifier and Type | Method and Description |
---|---|
boolean |
isCompressed() |
boolean |
isEncrypted() |
boolean |
isSigned() |
static AS2MessageStructure |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AS2MessageStructure[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AS2MessageStructure PLAIN
public static final AS2MessageStructure SIGNED
public static final AS2MessageStructure ENCRYPTED
public static final AS2MessageStructure SIGNED_ENCRYPTED
public static final AS2MessageStructure PLAIN_COMPRESSED
public static final AS2MessageStructure SIGNED_COMPRESSED
public static final AS2MessageStructure ENCRYPTED_COMPRESSED
public static final AS2MessageStructure ENCRYPTED_COMPRESSED_SIGNED
public static AS2MessageStructure[] values()
for (AS2MessageStructure c : AS2MessageStructure.values()) System.out.println(c);
public static AS2MessageStructure 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 boolean isSigned()
public boolean isEncrypted()
public boolean isCompressed()
Apache Camel