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