public enum AS2CompressionAlgorithm extends Enum<AS2CompressionAlgorithm>
Enum Constant and Description |
---|
ZLIB |
Modifier and Type | Method and Description |
---|---|
String |
getAlgorithmName() |
org.bouncycastle.asn1.ASN1ObjectIdentifier |
getAlgorithmOID() |
org.bouncycastle.operator.OutputCompressor |
getOutputCompressor() |
static AS2CompressionAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AS2CompressionAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AS2CompressionAlgorithm ZLIB
public static AS2CompressionAlgorithm[] values()
for (AS2CompressionAlgorithm c : AS2CompressionAlgorithm.values()) System.out.println(c);
public static AS2CompressionAlgorithm 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 getAlgorithmName()
public org.bouncycastle.asn1.ASN1ObjectIdentifier getAlgorithmOID()
public org.bouncycastle.operator.OutputCompressor getOutputCompressor()
Apache Camel