public static enum OpenSslCertificateCompressionConfig.AlgorithmMode extends Enum<OpenSslCertificateCompressionConfig.AlgorithmMode>
OpenSslCertificateCompressionAlgorithm
.Enum Constant and Description |
---|
Both
Compression and Decompression are supported and both should be advertized.
|
Compress
Compression supported and should be advertized.
|
Decompress
Decompression supported and should be advertized.
|
Modifier and Type | Method and Description |
---|---|
static OpenSslCertificateCompressionConfig.AlgorithmMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static OpenSslCertificateCompressionConfig.AlgorithmMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final OpenSslCertificateCompressionConfig.AlgorithmMode Compress
public static final OpenSslCertificateCompressionConfig.AlgorithmMode Decompress
public static final OpenSslCertificateCompressionConfig.AlgorithmMode Both
public static OpenSslCertificateCompressionConfig.AlgorithmMode[] values()
for (OpenSslCertificateCompressionConfig.AlgorithmMode c : OpenSslCertificateCompressionConfig.AlgorithmMode.values()) System.out.println(c);
public static OpenSslCertificateCompressionConfig.AlgorithmMode 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 © 2008–2024 The Netty Project. All rights reserved.