public static enum PropagatedTimesStore.ConfidenceCalculationMethod extends Enum<PropagatedTimesStore.ConfidenceCalculationMethod>
Enum Constant and Description |
---|
BOOTSTRAP
Calculate confidence intervals around the mean using the bootstrap.
|
MIN_MAX
Take the min and the max of the experienced of the experienced times.
|
NONE
Do not calculate confidence intervals
|
PERCENTILE
Calculate confidence intervals based on percentiles, which is what you want to do when
you have a scheduled network.
|
Modifier and Type | Method and Description |
---|---|
static PropagatedTimesStore.ConfidenceCalculationMethod |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static PropagatedTimesStore.ConfidenceCalculationMethod[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final PropagatedTimesStore.ConfidenceCalculationMethod NONE
public static final PropagatedTimesStore.ConfidenceCalculationMethod BOOTSTRAP
public static final PropagatedTimesStore.ConfidenceCalculationMethod PERCENTILE
public static final PropagatedTimesStore.ConfidenceCalculationMethod MIN_MAX
public static PropagatedTimesStore.ConfidenceCalculationMethod[] values()
for (PropagatedTimesStore.ConfidenceCalculationMethod c : PropagatedTimesStore.ConfidenceCalculationMethod.values()) System.out.println(c);
public static PropagatedTimesStore.ConfidenceCalculationMethod 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 © 2019. All rights reserved.