Module datarush.analytics
Enum DecisionTreeTraceLevel
- java.lang.Object
-
- java.lang.Enum<DecisionTreeTraceLevel>
-
- com.pervasive.datarush.analytics.decisiontree.learner.DecisionTreeTraceLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<DecisionTreeTraceLevel>
public enum DecisionTreeTraceLevel extends Enum<DecisionTreeTraceLevel>
Controls verbose decision tree logging
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EXTRA_VERBOSE
Extra verbose loggingOFF
Turn off, just get basic loggingVERBOSE
Verbose logging
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static DecisionTreeTraceLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static DecisionTreeTraceLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFF
public static final DecisionTreeTraceLevel OFF
Turn off, just get basic logging
-
VERBOSE
public static final DecisionTreeTraceLevel VERBOSE
Verbose logging
-
EXTRA_VERBOSE
public static final DecisionTreeTraceLevel EXTRA_VERBOSE
Extra verbose logging
-
-
Method Detail
-
values
public static DecisionTreeTraceLevel[] 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 (DecisionTreeTraceLevel c : DecisionTreeTraceLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static DecisionTreeTraceLevel 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
-
-