public static enum Logger.Mode extends Enum<Logger.Mode>
Logger.| Enum Constant and Description |
|---|
SILENT
Modo silencioso
|
VERBOSE
Modo verbose
|
| Modifier and Type | Method and Description |
|---|---|
static Logger.Mode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Logger.Mode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Logger.Mode SILENT
public static final Logger.Mode VERBOSE
public static Logger.Mode[] values()
for (Logger.Mode c : Logger.Mode.values()) System.out.println(c);
public static Logger.Mode 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 © 2016 Tecgraf/PUC-Rio. All rights reserved.