water.util
Enum Log.Tag.Sys

java.lang.Object
  extended by java.lang.Enum<Log.Tag.Sys>
      extended by water.util.Log.Tag.Sys
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<Log.Tag.Sys>, Log.Tag
Enclosing interface:
Log.Tag

public static enum Log.Tag.Sys
extends java.lang.Enum<Log.Tag.Sys>
implements Log.Tag

Which subsystem of h2o?


Nested Class Summary
 
Nested classes/interfaces inherited from interface water.util.Log.Tag
Log.Tag.Kind, Log.Tag.Sys
 
Enum Constant Summary
CLEAN
           
CONFM
           
DRF__
           
EXCEL
           
GBM__
           
GENLM
           
HDFS_
           
HTTPD
           
KMEAN
           
PARSE
           
RANDF
           
SCORM
           
STORE
           
WATER
           
 
Method Summary
static Log.Tag.Sys valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static Log.Tag.Sys[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

RANDF

public static final Log.Tag.Sys RANDF

GBM__

public static final Log.Tag.Sys GBM__

DRF__

public static final Log.Tag.Sys DRF__

GENLM

public static final Log.Tag.Sys GENLM

KMEAN

public static final Log.Tag.Sys KMEAN

PARSE

public static final Log.Tag.Sys PARSE

STORE

public static final Log.Tag.Sys STORE

WATER

public static final Log.Tag.Sys WATER

HDFS_

public static final Log.Tag.Sys HDFS_

HTTPD

public static final Log.Tag.Sys HTTPD

CLEAN

public static final Log.Tag.Sys CLEAN

CONFM

public static final Log.Tag.Sys CONFM

EXCEL

public static final Log.Tag.Sys EXCEL

SCORM

public static final Log.Tag.Sys SCORM
Method Detail

values

public static Log.Tag.Sys[] 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 (Log.Tag.Sys c : Log.Tag.Sys.values())
    System.out.println(c);

Returns:
an array containing the constants of this enum type, in the order they are declared

valueOf

public static Log.Tag.Sys valueOf(java.lang.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:
java.lang.IllegalArgumentException - if this enum type has no constant with the specified name
java.lang.NullPointerException - if the argument is null