|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<Verbosity>
choco.kernel.common.logging.Verbosity
public enum Verbosity
This enum defines choco verbosity level.
Enum Constant Summary | |
---|---|
DEFAULT
display information about initial and final state of the search |
|
FINEST
display all logs |
|
OFF
disable logging |
|
QUIET
display only severe messages from core loggers and info messages otherwise. |
|
SEARCH
display the search tree |
|
SILENT
display only severe messages from core loggers and warning messages otherwise |
|
SOLUTION
display all solutions |
|
VERBOSE
display search information at regular node intervals |
Method Summary | |
---|---|
int |
intValue()
|
static Verbosity |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static Verbosity[] |
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 |
---|
public static final Verbosity OFF
public static final Verbosity SILENT
public static final Verbosity QUIET
public static final Verbosity DEFAULT
public static final Verbosity VERBOSE
public static final Verbosity SOLUTION
public static final Verbosity SEARCH
public static final Verbosity FINEST
Method Detail |
---|
public static Verbosity[] values()
for (Verbosity c : Verbosity.values()) System.out.println(c);
public static Verbosity valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is nullpublic int intValue()
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |