public static enum SampleIndex.SampleType extends Enum<SampleIndex.SampleType>
Enum Constant and Description |
---|
DENSE
The samples will be dense and may bave a front bias.
|
EVEN
Samples are taken at even space offsets.
|
RANDOM
Sample offsets are computed randomly.
|
Modifier and Type | Method and Description |
---|---|
static SampleIndex.SampleType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SampleIndex.SampleType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SampleIndex.SampleType EVEN
public static final SampleIndex.SampleType RANDOM
public static final SampleIndex.SampleType DENSE
public static SampleIndex.SampleType[] values()
for (SampleIndex.SampleType c : SampleIndex.SampleType.values()) System.out.println(c);
public static SampleIndex.SampleType 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 © 2006–2019 SYSTAP, LLC DBA Blazegraph. All rights reserved.