com.apama.util
Enum LogLevel

java.lang.Object
  extended by java.lang.Enum<LogLevel>
      extended by com.apama.util.LogLevel
All Implemented Interfaces:
java.io.Serializable, java.lang.Comparable<LogLevel>

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

LogLevel is an enumeration specifying all the log levels supported by Apama server components and the Java client logging API.

The Enum.name() method may be used to get the String identifier for each log level, suitable for passing to Logger.setThreshold(String).

The Enum.ordinal() method may be used to get an integer representing this log level, where OFF has value 0, CRIT is 1, etc.


Enum Constant Summary
CRIT
           
DEBUG
           
ERROR
           
FATAL
           
INFO
           
OFF
           
WARN
           
 
Method Summary
static LogLevel valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static LogLevel[] 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 LogLevel OFF

CRIT

public static final LogLevel CRIT

FATAL

public static final LogLevel FATAL

ERROR

public static final LogLevel ERROR

WARN

public static final LogLevel WARN

INFO

public static final LogLevel INFO

DEBUG

public static final LogLevel DEBUG
Method Detail

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


Submit a bug or feature
Copyright (c) 2013 Software AG, Darmstadt, Germany and/or Software AG USA Inc., Reston, VA, USA, and/or Terracotta Inc., San Francisco, CA, USA, and/or Software AG (Canada) Inc., Cambridge, Ontario, Canada, and/or, Software AG (UK) Ltd., Derby, United Kingdom, and/or Software A.G. (Israel) Ltd., Or-Yehuda, Israel and/or their licensors. Use, reproduction, transfer, publication or disclosure is prohibited except as specifically provided for in your License Agreement with Software AG