blackboard.platform.dataintegration
Enum LogLevel
java.lang.Object
java.lang.Enum<LogLevel>
blackboard.platform.dataintegration.LogLevel
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<LogLevel>
public enum LogLevel
- extends java.lang.Enum<LogLevel>
This enum represents the Log verbosity levels supported by Data Integrations.
- Since:
- Bb 9.1 SP6
| 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 |
DEBUG
public static final LogLevel DEBUG
INFORMATION
public static final LogLevel INFORMATION
WARNING
public static final LogLevel WARNING
ERROR
public static final LogLevel ERROR
values
public static LogLevel[] 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 (LogLevel c : LogLevel.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static LogLevel 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
fromVerbosity
public static LogLevel fromVerbosity(LogService.Verbosity verbosity)
- Transform a
Log Verbosity into a LogLevel
- Parameters:
verbosity - Log verbosity.
- Returns:
- The corresponding LogLevel, or
DEBUG if an unknown verbosity is passed in.
fromOrdinal
public static LogLevel fromOrdinal(int ordinal)
Copyright © 2011 Blackboard, Inc. All Rights Reserved.