public static enum BenchmarkColumnSchema.ValueDistribution extends Enum<BenchmarkColumnSchema.ValueDistribution>
| Enum Constant and Description |
|---|
DISCRETE_UNIFORM |
ENUMERATED |
NORMAL |
ROUNDED_NORMAL |
SEQUENTIAL |
UNIFORM |
ZIPF |
| Modifier and Type | Method and Description |
|---|---|
static BenchmarkColumnSchema.ValueDistribution |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BenchmarkColumnSchema.ValueDistribution[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BenchmarkColumnSchema.ValueDistribution SEQUENTIAL
public static final BenchmarkColumnSchema.ValueDistribution DISCRETE_UNIFORM
public static final BenchmarkColumnSchema.ValueDistribution ROUNDED_NORMAL
public static final BenchmarkColumnSchema.ValueDistribution ZIPF
public static final BenchmarkColumnSchema.ValueDistribution ENUMERATED
public static final BenchmarkColumnSchema.ValueDistribution UNIFORM
public static final BenchmarkColumnSchema.ValueDistribution NORMAL
public static BenchmarkColumnSchema.ValueDistribution[] values()
for (BenchmarkColumnSchema.ValueDistribution c : BenchmarkColumnSchema.ValueDistribution.values()) System.out.println(c);
public static BenchmarkColumnSchema.ValueDistribution 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 © 2011–2017. All rights reserved.