public enum SslState extends Enum<SslState>
Enum Constant and Description |
---|
DISABLED
Enum value Disabled.
|
IP_BASED_ENABLED
Enum value IpBasedEnabled.
|
SNI_ENABLED
Enum value SniEnabled.
|
Modifier and Type | Method and Description |
---|---|
static SslState |
fromString(String value)
Parses a serialized value to a SslState instance.
|
String |
toString() |
static SslState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SslState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SslState DISABLED
public static final SslState SNI_ENABLED
public static final SslState IP_BASED_ENABLED
public static SslState[] values()
for (SslState c : SslState.values()) System.out.println(c);
public static SslState 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 static SslState fromString(String value)
value
- the serialized value to parse.Copyright © 2019. All rights reserved.