public enum SamplingAlgorithm extends Enum<SamplingAlgorithm>
Enum Constant and Description |
---|
FlowStateDependentIntermediateFlowSelectionProcess |
HashBasedFiltering |
PropertyMatchFiltering |
RandomNoutOfNSampling |
SystematicCountBasedSampling |
SystematicTimeBasedSampling |
Unassigned |
UniformProbabilisticSampling |
Modifier and Type | Method and Description |
---|---|
static SamplingAlgorithm |
from(Flow.SamplingAlgorithm samplingAlgorithm) |
static SamplingAlgorithm |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SamplingAlgorithm[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
@SerializedName(value="Unassigned") public static final SamplingAlgorithm Unassigned
@SerializedName(value="SystematicCountBasedSampling") public static final SamplingAlgorithm SystematicCountBasedSampling
@SerializedName(value="SystematicTimeBasedSampling") public static final SamplingAlgorithm SystematicTimeBasedSampling
@SerializedName(value="RandomNoutOfNSampling") public static final SamplingAlgorithm RandomNoutOfNSampling
@SerializedName(value="UniformProbabilisticSampling") public static final SamplingAlgorithm UniformProbabilisticSampling
@SerializedName(value="PropertyMatchFiltering") public static final SamplingAlgorithm PropertyMatchFiltering
@SerializedName(value="HashBasedFiltering") public static final SamplingAlgorithm HashBasedFiltering
@SerializedName(value="FlowStateDependentIntermediateFlowSelectionProcess") public static final SamplingAlgorithm FlowStateDependentIntermediateFlowSelectionProcess
public static SamplingAlgorithm[] values()
for (SamplingAlgorithm c : SamplingAlgorithm.values()) System.out.println(c);
public static SamplingAlgorithm 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 nullpublic static SamplingAlgorithm from(Flow.SamplingAlgorithm samplingAlgorithm)
Copyright © 2021. All rights reserved.