Package weka.classifiers.meta
Enum MinMaxLimits.LimitHandling
- java.lang.Object
-
- java.lang.Enum<MinMaxLimits.LimitHandling>
-
- weka.classifiers.meta.MinMaxLimits.LimitHandling
-
- All Implemented Interfaces:
Serializable
,Comparable<MinMaxLimits.LimitHandling>
- Enclosing class:
- MinMaxLimits
public static enum MinMaxLimits.LimitHandling extends Enum<MinMaxLimits.LimitHandling>
Determines the type of handling for the limit- Version:
- $Revision$
- Author:
- fracpete (fracpete at waikato dot ac dot nz)
-
-
Enum Constant Summary
Enum Constants Enum Constant Description AS_IS
no special handling, just as-is.CLASS_RANGE
determined based on class attribute range.MANUAL
manually supplied value for limit.
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static MinMaxLimits.LimitHandling
valueOf(String name)
Returns the enum constant of this type with the specified name.static MinMaxLimits.LimitHandling[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
AS_IS
public static final MinMaxLimits.LimitHandling AS_IS
no special handling, just as-is.
-
MANUAL
public static final MinMaxLimits.LimitHandling MANUAL
manually supplied value for limit.
-
CLASS_RANGE
public static final MinMaxLimits.LimitHandling CLASS_RANGE
determined based on class attribute range.
-
-
Method Detail
-
values
public static MinMaxLimits.LimitHandling[] 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 (MinMaxLimits.LimitHandling c : MinMaxLimits.LimitHandling.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static MinMaxLimits.LimitHandling 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
-
-