Package com.identityworksllc.iiq.common
Enum CommonsLoggingOutputStream.Level
- java.lang.Object
-
- java.lang.Enum<CommonsLoggingOutputStream.Level>
-
- com.identityworksllc.iiq.common.CommonsLoggingOutputStream.Level
-
- All Implemented Interfaces:
Serializable
,Comparable<CommonsLoggingOutputStream.Level>
- Enclosing class:
- CommonsLoggingOutputStream
public static enum CommonsLoggingOutputStream.Level extends Enum<CommonsLoggingOutputStream.Level>
A representation of the log level
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static CommonsLoggingOutputStream.Level
valueOf(String name)
Returns the enum constant of this type with the specified name.static CommonsLoggingOutputStream.Level[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
Fatal
public static final CommonsLoggingOutputStream.Level Fatal
-
Error
public static final CommonsLoggingOutputStream.Level Error
-
Warn
public static final CommonsLoggingOutputStream.Level Warn
-
Info
public static final CommonsLoggingOutputStream.Level Info
-
Debug
public static final CommonsLoggingOutputStream.Level Debug
-
Trace
public static final CommonsLoggingOutputStream.Level Trace
-
-
Method Detail
-
values
public static CommonsLoggingOutputStream.Level[] 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 (CommonsLoggingOutputStream.Level c : CommonsLoggingOutputStream.Level.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static CommonsLoggingOutputStream.Level 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 nameNullPointerException
- if the argument is null
-
-