synergynetframework.config.logging
Enum LoggingConfigPrefsItem.LoggingLevel

java.lang.Object
  extended by java.lang.Enum<LoggingConfigPrefsItem.LoggingLevel>
      extended by synergynetframework.config.logging.LoggingConfigPrefsItem.LoggingLevel
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LoggingConfigPrefsItem.LoggingLevel>
Enclosing class:
LoggingConfigPrefsItem

public static enum LoggingConfigPrefsItem.LoggingLevel
extends java.lang.Enum<LoggingConfigPrefsItem.LoggingLevel>

The Enum LoggingLevel.


Enum Constant Summary
CONFIG
          The config.
FINE
          The fine.
FINER
          The finer.
FINEST
          The finest.
INFO
          The info.
SEVERE
          The severe.
WARNING
          The warning.
 
Method Summary
static LoggingConfigPrefsItem.LoggingLevel valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LoggingConfigPrefsItem.LoggingLevel[] values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 
Methods inherited from class java.lang.Enum
compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
 
Methods inherited from class java.lang.Object
getClass, notify, notifyAll, wait, wait, wait
 

Enum Constant Detail

CONFIG

public static final LoggingConfigPrefsItem.LoggingLevel CONFIG
The config.


FINE

public static final LoggingConfigPrefsItem.LoggingLevel FINE
The fine.


FINER

public static final LoggingConfigPrefsItem.LoggingLevel FINER
The finer.


FINEST

public static final LoggingConfigPrefsItem.LoggingLevel FINEST
The finest.


INFO

public static final LoggingConfigPrefsItem.LoggingLevel INFO
The info.


SEVERE

public static final LoggingConfigPrefsItem.LoggingLevel SEVERE
The severe.


WARNING

public static final LoggingConfigPrefsItem.LoggingLevel WARNING
The warning.

Method Detail

values

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

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

valueOf

public static LoggingConfigPrefsItem.LoggingLevel 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