choco.kernel.common.logging
Enum Verbosity

java.lang.Object
  extended by java.lang.Enum<Verbosity>
      extended by choco.kernel.common.logging.Verbosity
All Implemented Interfaces:
Serializable, Comparable<Verbosity>

public enum Verbosity
extends Enum<Verbosity>

This enum defines choco verbosity level.

Since:
16 avr. 2009 version 2.1.0
Version:
2.1.0
Author:
Arnaud Malapert

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

OFF

public static final Verbosity OFF
disable logging


SILENT

public static final Verbosity SILENT
display only severe messages from core loggers and warning messages otherwise


QUIET

public static final Verbosity QUIET
display only severe messages from core loggers and info messages otherwise.


DEFAULT

public static final Verbosity DEFAULT
display information about initial and final state of the search


VERBOSE

public static final Verbosity VERBOSE
display search information at regular node intervals


SOLUTION

public static final Verbosity SOLUTION
display all solutions


SEARCH

public static final Verbosity SEARCH
display the search tree


FINEST

public static final Verbosity FINEST
display all logs

Method Detail

values

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

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

valueOf

public static Verbosity 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 name
NullPointerException - if the argument is null

intValue

public int intValue()


Copyright © 2012. All Rights Reserved.