public enum NettyParams extends Enum<NettyParams>
Modifier and Type | Method and Description |
---|---|
Object |
getValue(String value)
Get converted value from a string option value.
|
Boolean |
isChannelOption()
Is this a channel option or not?
|
static NettyParams |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NettyParams[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NettyParams keepAlive
public static final NettyParams bufferFactoryClass
public static final NettyParams connectTimeoutMillis
public static final NettyParams reuseAddress
public static final NettyParams receiveBufferSize
public static final NettyParams sendBufferSize
public static final NettyParams trafficClass
public static final NettyParams sslContextFactory
public static final NettyParams keystorePath
public static final NettyParams keystorePassword
public static final NettyParams keyPassword
public static final NettyParams keystoreType
public static final NettyParams truststorePath
public static final NettyParams truststorePassword
public static final NettyParams certAlgorithm
public static final NettyParams sslProtocol
public static final NettyParams needClientAuthentication
public static final NettyParams wantClientAuthentication
public static NettyParams[] values()
for (NettyParams c : NettyParams.values()) System.out.println(c);
public static NettyParams 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 Object getValue(String value)
Get converted value from a string option value.
value
- - option valuepublic Boolean isChannelOption()
Copyright © 2005–2016. All rights reserved.