public enum SystemProperties extends Enum<SystemProperties>
| Enum Constant and Description |
|---|
CASSANDRA_THRIFT_SOCKET_TIMEOUT
What's the default socket timeout for thrift in miliseconds.
|
HECTOR_PERFORM_NAME_RESOLUTION
Should hector perform name resolution?
Default: no; Do not perform name resolution
For example: -DHECTOR_PERFORM_NAME_RESOLUTION=true
|
| Modifier and Type | Method and Description |
|---|---|
static SystemProperties |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SystemProperties[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SystemProperties HECTOR_PERFORM_NAME_RESOLUTION
public static final SystemProperties CASSANDRA_THRIFT_SOCKET_TIMEOUT
public static SystemProperties[] values()
for (SystemProperties c : SystemProperties.values()) System.out.println(c);
public static SystemProperties 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 © 2014. All Rights Reserved.