Enum LowerStatistic
- java.lang.Object
-
- java.lang.Enum<LowerStatistic>
-
- adams.gui.tools.wekainvestigator.tab.classifytab.output.repeated.LowerStatistic
-
- All Implemented Interfaces:
Serializable
,Comparable<LowerStatistic>
public enum LowerStatistic extends Enum<LowerStatistic>
Enumeration of lower bound statistics to compute.- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MIN
QUARTILE25
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static LowerStatistic
valueOf(String name)
Returns the enum constant of this type with the specified name.static LowerStatistic[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
MIN
public static final LowerStatistic MIN
-
QUARTILE25
public static final LowerStatistic QUARTILE25
-
-
Method Detail
-
values
public static LowerStatistic[] 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 (LowerStatistic c : LowerStatistic.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LowerStatistic 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
-
-