Package net.pricefx.common.api.chart
Enum WhiskerType
- Object
-
- Enum<WhiskerType>
-
- WhiskerType
-
- All Implemented Interfaces:
Serializable
,Comparable<WhiskerType>
public enum WhiskerType extends Enum<WhiskerType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MIN_MAX
NONE
OUTLIER_15_IQR
OUTLIER_30_IQR
P_01_99TH
P_02_09_91_98TH
P_02_98TH
P_05_95TH
P_09_91TH
P_10_90TH
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static WhiskerType
valueOf(String name)
Returns the enum constant of this type with the specified name.static WhiskerType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final WhiskerType NONE
-
MIN_MAX
public static final WhiskerType MIN_MAX
-
P_10_90TH
public static final WhiskerType P_10_90TH
-
P_09_91TH
public static final WhiskerType P_09_91TH
-
P_05_95TH
public static final WhiskerType P_05_95TH
-
P_02_98TH
public static final WhiskerType P_02_98TH
-
P_01_99TH
public static final WhiskerType P_01_99TH
-
P_02_09_91_98TH
public static final WhiskerType P_02_09_91_98TH
-
OUTLIER_15_IQR
public static final WhiskerType OUTLIER_15_IQR
-
OUTLIER_30_IQR
public static final WhiskerType OUTLIER_30_IQR
-
-
Method Detail
-
values
public static WhiskerType[] 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 (WhiskerType c : WhiskerType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static WhiskerType 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
-
-