public static enum ModelParameters.ConfigSetting extends java.lang.Enum<ModelParameters.ConfigSetting>
Enum Constant and Description |
---|
CURRENT_CLUSTER |
PLAINTEXT_GZIP |
PLAINTEXT_LZ4 |
PLAINTEXT_NONE |
PLAINTEXT_SNAPPY |
SSL_GZIP |
SSL_LZ4 |
SSL_NONE |
SSL_SNAPPY |
Modifier and Type | Method and Description |
---|---|
static ModelParameters.ConfigSetting |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ModelParameters.ConfigSetting[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ModelParameters.ConfigSetting CURRENT_CLUSTER
public static final ModelParameters.ConfigSetting PLAINTEXT_NONE
public static final ModelParameters.ConfigSetting PLAINTEXT_GZIP
public static final ModelParameters.ConfigSetting PLAINTEXT_SNAPPY
public static final ModelParameters.ConfigSetting PLAINTEXT_LZ4
public static final ModelParameters.ConfigSetting SSL_NONE
public static final ModelParameters.ConfigSetting SSL_GZIP
public static final ModelParameters.ConfigSetting SSL_SNAPPY
public static final ModelParameters.ConfigSetting SSL_LZ4
public static ModelParameters.ConfigSetting[] values()
for (ModelParameters.ConfigSetting c : ModelParameters.ConfigSetting.values()) System.out.println(c);
public static ModelParameters.ConfigSetting 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 null