Package org.nd4j.graph.ui
Enum LogFileWriter.EventSubtype
- java.lang.Object
-
- java.lang.Enum<LogFileWriter.EventSubtype>
-
- org.nd4j.graph.ui.LogFileWriter.EventSubtype
-
- All Implemented Interfaces:
Serializable,Comparable<LogFileWriter.EventSubtype>
- Enclosing class:
- LogFileWriter
public static enum LogFileWriter.EventSubtype extends Enum<LogFileWriter.EventSubtype>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description EVALUATIONFEATURE_LABELLEARNING_RATELOSSNONEPERFORMANCEPREDICTIONPROFILINGTUNING_METRICUSER_CUSTOM
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description byteasUIEventSubtype()static LogFileWriter.EventSubtypevalueOf(String name)Returns the enum constant of this type with the specified name.static LogFileWriter.EventSubtype[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final LogFileWriter.EventSubtype NONE
-
EVALUATION
public static final LogFileWriter.EventSubtype EVALUATION
-
LOSS
public static final LogFileWriter.EventSubtype LOSS
-
LEARNING_RATE
public static final LogFileWriter.EventSubtype LEARNING_RATE
-
TUNING_METRIC
public static final LogFileWriter.EventSubtype TUNING_METRIC
-
PERFORMANCE
public static final LogFileWriter.EventSubtype PERFORMANCE
-
PROFILING
public static final LogFileWriter.EventSubtype PROFILING
-
FEATURE_LABEL
public static final LogFileWriter.EventSubtype FEATURE_LABEL
-
PREDICTION
public static final LogFileWriter.EventSubtype PREDICTION
-
USER_CUSTOM
public static final LogFileWriter.EventSubtype USER_CUSTOM
-
-
Method Detail
-
values
public static LogFileWriter.EventSubtype[] 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 (LogFileWriter.EventSubtype c : LogFileWriter.EventSubtype.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LogFileWriter.EventSubtype 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
-
asUIEventSubtype
public byte asUIEventSubtype()
-
-