Package | Description |
---|---|
io.druid.benchmark.datagen | |
io.druid.segment.column |
Modifier and Type | Method and Description |
---|---|
ValueType |
BenchmarkColumnSchema.getType() |
Modifier and Type | Method and Description |
---|---|
static BenchmarkColumnSchema |
BenchmarkColumnSchema.makeContinuousUniform(String name,
ValueType type,
boolean isMetric,
int rowSize,
Double nullProbability,
double startDouble,
double endDouble) |
static BenchmarkColumnSchema |
BenchmarkColumnSchema.makeDiscreteUniform(String name,
ValueType type,
boolean isMetric,
int rowSize,
Double nullProbability,
int startInt,
int endInt) |
static BenchmarkColumnSchema |
BenchmarkColumnSchema.makeEnumerated(String name,
ValueType type,
boolean isMetric,
int rowSize,
Double nullProbability,
List<Object> enumeratedValues,
List<Double> enumeratedProbabilities) |
static BenchmarkColumnSchema |
BenchmarkColumnSchema.makeEnumeratedDiscreteUniform(String name,
ValueType type,
boolean isMetric,
int rowSize,
Double nullProbability,
List<Object> enumeratedValues) |
static BenchmarkColumnSchema |
BenchmarkColumnSchema.makeEnumeratedSequential(String name,
ValueType type,
boolean isMetric,
int rowSize,
Double nullProbability,
List<Object> enumeratedValues) |
static BenchmarkColumnSchema |
BenchmarkColumnSchema.makeEnumeratedZipf(String name,
ValueType type,
boolean isMetric,
int rowSize,
Double nullProbability,
List<Object> enumeratedValues,
Double zipfExponent) |
static BenchmarkColumnSchema |
BenchmarkColumnSchema.makeNormal(String name,
ValueType type,
boolean isMetric,
int rowSize,
Double nullProbability,
Double mean,
Double standardDeviation,
boolean useRounding) |
static BenchmarkColumnSchema |
BenchmarkColumnSchema.makeSequential(String name,
ValueType type,
boolean isMetric,
int rowSize,
Double nullProbability,
int startInt,
int endInt) |
static BenchmarkColumnSchema |
BenchmarkColumnSchema.makeZipf(String name,
ValueType type,
boolean isMetric,
int rowSize,
Double nullProbability,
int startInt,
int endInt,
Double zipfExponent) |
Modifier and Type | Method and Description |
---|---|
ValueType |
IndexedLongsGenericColumn.getType() |
ValueType |
IndexedFloatsGenericColumn.getType() |
ValueType |
GenericColumn.getType() |
ValueType |
ColumnCapabilitiesImpl.getType() |
ValueType |
ColumnCapabilities.getType() |
ValueType |
ColumnDescriptor.getValueType() |
static ValueType |
ValueType.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ValueType[] |
ValueType.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
ColumnCapabilitiesImpl |
ColumnCapabilitiesImpl.setType(ValueType type) |
ColumnBuilder |
ColumnBuilder.setType(ValueType type) |
ColumnDescriptor.Builder |
ColumnDescriptor.Builder.setValueType(ValueType valueType) |
Constructor and Description |
---|
ColumnDescriptor(ValueType valueType,
boolean hasMultipleValues,
List<ColumnPartSerde> parts) |
Copyright © 2011–2016. All rights reserved.