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