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