Enum ConfigParameter
- java.lang.Object
-
- java.lang.Enum<ConfigParameter>
-
- org.copperengine.performancetest.main.ConfigParameter
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ConfigParameter>
public enum ConfigParameter extends java.lang.Enum<ConfigParameter>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static java.util.List<ConfigParameter>all4group(ConfigParameterGroup grp)java.lang.ObjectgetDefaultValue()java.lang.StringgetDescription()ConfigParameterGroupgetGrp()java.lang.StringgetKey()java.lang.StringgetMandatory()static ConfigParametervalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ConfigParameter[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PROC_POOL_NUMB_OF_THREADS
public static final ConfigParameter PROC_POOL_NUMB_OF_THREADS
-
PROC_DEQUEUE_BULK_SIZE
public static final ConfigParameter PROC_DEQUEUE_BULK_SIZE
-
MOCK_ADAPTER_NUMB_OF_THREADS
public static final ConfigParameter MOCK_ADAPTER_NUMB_OF_THREADS
-
COMPRESSION
public static final ConfigParameter COMPRESSION
-
DS_JDBC_URL
public static final ConfigParameter DS_JDBC_URL
-
DS_DRIVER_CLASS
public static final ConfigParameter DS_DRIVER_CLASS
-
DS_USER
public static final ConfigParameter DS_USER
-
DS_PASSWORD
public static final ConfigParameter DS_PASSWORD
-
DS_MIN_POOL_SIZE
public static final ConfigParameter DS_MIN_POOL_SIZE
-
DS_MAX_POOL_SIZE
public static final ConfigParameter DS_MAX_POOL_SIZE
-
BATCHER_NUMB_OF_THREADS
public static final ConfigParameter BATCHER_NUMB_OF_THREADS
-
CASSANDRA_HOSTS
public static final ConfigParameter CASSANDRA_HOSTS
-
CASSANDRA_PORT
public static final ConfigParameter CASSANDRA_PORT
-
CASSANDRA_KEYSPACE
public static final ConfigParameter CASSANDRA_KEYSPACE
-
THROUGHPUTTEST_NUMBER_OF_WORKFLOW_INSTANCES
public static final ConfigParameter THROUGHPUTTEST_NUMBER_OF_WORKFLOW_INSTANCES
-
THROUGHPUTTEST_DATA_SIZE
public static final ConfigParameter THROUGHPUTTEST_DATA_SIZE
-
THROUGHPUTTEST_NUMBER_OF_INSERT_THREADS
public static final ConfigParameter THROUGHPUTTEST_NUMBER_OF_INSERT_THREADS
-
THROUGHPUTTEST_BATCHS_SIZE
public static final ConfigParameter THROUGHPUTTEST_BATCHS_SIZE
-
THROUGHPUTTEST_NUMBER_OF_EXTRA_PROC_POOLS
public static final ConfigParameter THROUGHPUTTEST_NUMBER_OF_EXTRA_PROC_POOLS
-
LATENCY_NUMBER_OF_WORKFLOW_INSTANCES
public static final ConfigParameter LATENCY_NUMBER_OF_WORKFLOW_INSTANCES
-
LATENCY_DATA_SIZE
public static final ConfigParameter LATENCY_DATA_SIZE
-
-
Method Detail
-
values
public static ConfigParameter[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ConfigParameter c : ConfigParameter.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ConfigParameter valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getDescription
public java.lang.String getDescription()
-
getGrp
public ConfigParameterGroup getGrp()
-
getKey
public java.lang.String getKey()
-
all4group
public static java.util.List<ConfigParameter> all4group(ConfigParameterGroup grp)
-
getMandatory
public java.lang.String getMandatory()
-
getDefaultValue
public java.lang.Object getDefaultValue()
-
-