public static enum TableDebug.Output extends Enum<TableDebug.Output>
Enum Constant and Description |
---|
LOG |
LOG_DEBUG |
LOG_ERROR |
LOG_INFO |
LOG_WARN |
STDERR |
STDOUT |
Modifier and Type | Method and Description |
---|---|
static TableDebug.Output |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TableDebug.Output[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TableDebug.Output STDOUT
public static final TableDebug.Output STDERR
public static final TableDebug.Output LOG
public static final TableDebug.Output LOG_DEBUG
public static final TableDebug.Output LOG_INFO
public static final TableDebug.Output LOG_WARN
public static final TableDebug.Output LOG_ERROR
public static TableDebug.Output[] values()
for (TableDebug.Output c : TableDebug.Output.values()) System.out.println(c);
public static TableDebug.Output valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2024. All rights reserved.