org.eclipse.jpt.jpa.eclipselink.core.context.persistence.logging
Enum LoggingLevel

java.lang.Object
  extended by java.lang.Enum<LoggingLevel>
      extended by org.eclipse.jpt.jpa.eclipselink.core.context.persistence.logging.LoggingLevel
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LoggingLevel>

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

LoggingLevel


Enum Constant Summary
all
           
config
           
fine
           
finer
           
finest
           
info
           
off
           
severe
           
warning
           
 
Field Summary
static java.lang.String ALL
           
static java.lang.String CONFIG
           
static java.lang.String FINE
           
static java.lang.String FINER
           
static java.lang.String FINEST
           
static java.lang.String INFO
           
static java.lang.String OFF
           
static java.lang.String SEVERE
           
static java.lang.String WARNING
           
 
Method Summary
static LoggingLevel valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static 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

off

public static final LoggingLevel off

severe

public static final LoggingLevel severe

warning

public static final LoggingLevel warning

info

public static final LoggingLevel info

config

public static final LoggingLevel config

fine

public static final LoggingLevel fine

finer

public static final LoggingLevel finer

finest

public static final LoggingLevel finest

all

public static final LoggingLevel all
Field Detail

OFF

public static final java.lang.String OFF
See Also:
Constant Field Values

SEVERE

public static final java.lang.String SEVERE
See Also:
Constant Field Values

WARNING

public static final java.lang.String WARNING
See Also:
Constant Field Values

INFO

public static final java.lang.String INFO
See Also:
Constant Field Values

CONFIG

public static final java.lang.String CONFIG
See Also:
Constant Field Values

FINE

public static final java.lang.String FINE
See Also:
Constant Field Values

FINER

public static final java.lang.String FINER
See Also:
Constant Field Values

FINEST

public static final java.lang.String FINEST
See Also:
Constant Field Values

ALL

public static final java.lang.String ALL
See Also:
Constant Field Values
Method Detail

values

public static 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 (LoggingLevel c : 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 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