Package org.opennms.netmgt.flows.api
Enum Flow.SamplingAlgorithm
- java.lang.Object
-
- java.lang.Enum<Flow.SamplingAlgorithm>
-
- org.opennms.netmgt.flows.api.Flow.SamplingAlgorithm
-
- All Implemented Interfaces:
Serializable
,Comparable<Flow.SamplingAlgorithm>
- Enclosing interface:
- Flow
public static enum Flow.SamplingAlgorithm extends Enum<Flow.SamplingAlgorithm>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method 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.
-
-
-
Enum Constant Detail
-
Unassigned
public static final Flow.SamplingAlgorithm Unassigned
-
SystematicCountBasedSampling
public static final Flow.SamplingAlgorithm SystematicCountBasedSampling
-
SystematicTimeBasedSampling
public static final Flow.SamplingAlgorithm SystematicTimeBasedSampling
-
RandomNoutOfNSampling
public static final Flow.SamplingAlgorithm RandomNoutOfNSampling
-
UniformProbabilisticSampling
public static final Flow.SamplingAlgorithm UniformProbabilisticSampling
-
PropertyMatchFiltering
public static final Flow.SamplingAlgorithm PropertyMatchFiltering
-
HashBasedFiltering
public static final Flow.SamplingAlgorithm HashBasedFiltering
-
FlowStateDependentIntermediateFlowSelectionProcess
public static final Flow.SamplingAlgorithm FlowStateDependentIntermediateFlowSelectionProcess
-
-
Method Detail
-
values
public static Flow.SamplingAlgorithm[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (Flow.SamplingAlgorithm c : Flow.SamplingAlgorithm.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static Flow.SamplingAlgorithm valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
-