Package weka.attributeSelection
Enum AbstractPLSAttributeEval.LoadingsCalculations
- java.lang.Object
-
- java.lang.Enum<AbstractPLSAttributeEval.LoadingsCalculations>
-
- weka.attributeSelection.AbstractPLSAttributeEval.LoadingsCalculations
-
- All Implemented Interfaces:
Serializable
,Comparable<AbstractPLSAttributeEval.LoadingsCalculations>
- Enclosing class:
- AbstractPLSAttributeEval
public static enum AbstractPLSAttributeEval.LoadingsCalculations extends Enum<AbstractPLSAttributeEval.LoadingsCalculations>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description COMBINE_COMPONENTS
USE_FIRST_COMPONENT
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static AbstractPLSAttributeEval.LoadingsCalculations
valueOf(String name)
Returns the enum constant of this type with the specified name.static AbstractPLSAttributeEval.LoadingsCalculations[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
USE_FIRST_COMPONENT
public static final AbstractPLSAttributeEval.LoadingsCalculations USE_FIRST_COMPONENT
-
COMBINE_COMPONENTS
public static final AbstractPLSAttributeEval.LoadingsCalculations COMBINE_COMPONENTS
-
-
Method Detail
-
values
public static AbstractPLSAttributeEval.LoadingsCalculations[] 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 (AbstractPLSAttributeEval.LoadingsCalculations c : AbstractPLSAttributeEval.LoadingsCalculations.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static AbstractPLSAttributeEval.LoadingsCalculations 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
-
-