public enum SamplingScheme extends Enum<SamplingScheme>
Enum Constant and Description |
---|
JENSENS_PARTITIONING |
NONE |
SIMPLE_RANDOM_SAMPLING |
STRATIFIED_SAMPLING |
Modifier and Type | Method and Description |
---|---|
static SamplingScheme |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SamplingScheme[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SamplingScheme NONE
public static final SamplingScheme SIMPLE_RANDOM_SAMPLING
public static final SamplingScheme STRATIFIED_SAMPLING
public static final SamplingScheme JENSENS_PARTITIONING
public static SamplingScheme[] values()
for (SamplingScheme c : SamplingScheme.values()) System.out.println(c);
public static SamplingScheme 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 © 2017–2018. All rights reserved.