Enum Class VisualSets.BoxAndWhiskerDisplayMode
java.lang.Object
java.lang.Enum<VisualSets.BoxAndWhiskerDisplayMode>
com.amalgamasimulation.visualsets.VisualSets.BoxAndWhiskerDisplayMode
- All Implemented Interfaces:
Serializable,Comparable<VisualSets.BoxAndWhiskerDisplayMode>,Constable
- Enclosing interface:
VisualSets
public static enum VisualSets.BoxAndWhiskerDisplayMode
extends Enum<VisualSets.BoxAndWhiskerDisplayMode>
Display mode for the Box-and-Whisker plot.
-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>> -
Enum Constant Summary
Enum ConstantsEnum ConstantDescriptionQuartiles (25-th percentile and 75-th percentile) for the box and full range for the whiskers.One standard deviation for the box and a 95% confidence interval for the whiskers. -
Method Summary
Modifier and TypeMethodDescriptionReturns the enum constant of this class with the specified name.static VisualSets.BoxAndWhiskerDisplayMode[]values()Returns an array containing the constants of this enum class, in the order they are declared.
-
Enum Constant Details
-
QUARTILES_AND_RANGE
Quartiles (25-th percentile and 75-th percentile) for the box and full range for the whiskers. -
STANDARD_DEVIATION_AND_95_CONFIDENCE_INTERVAL
public static final VisualSets.BoxAndWhiskerDisplayMode STANDARD_DEVIATION_AND_95_CONFIDENCE_INTERVALOne standard deviation for the box and a 95% confidence interval for the whiskers.
-
-
Method Details
-
values
Returns an array containing the constants of this enum class, in the order they are declared.- Returns:
- an array containing the constants of this enum class, in the order they are declared
-
valueOf
Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified nameNullPointerException- if the argument is null
-