public static enum Client.ClientProperty extends java.lang.Enum<Client.ClientProperty>
Enum Constant and Description |
---|
POOLING_ENABLED |
POOLING_MAX_IDLE_TIME |
POOLING_MAX_SIZE |
POOLING_QUEUE_TIMEOUT |
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getKeyName() |
static Client.ClientProperty |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static Client.ClientProperty[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Client.ClientProperty POOLING_ENABLED
public static final Client.ClientProperty POOLING_MAX_SIZE
public static final Client.ClientProperty POOLING_MAX_IDLE_TIME
public static final Client.ClientProperty POOLING_QUEUE_TIMEOUT
public static Client.ClientProperty[] values()
for (Client.ClientProperty c : Client.ClientProperty.values()) System.out.println(c);
public static Client.ClientProperty valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullpublic java.lang.String getKeyName()