Package org.codehaus.mojo.jaxb2
Enum BufferingLog.LogLevel
- java.lang.Object
-
- java.lang.Enum<BufferingLog.LogLevel>
-
- org.codehaus.mojo.jaxb2.BufferingLog.LogLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<BufferingLog.LogLevel>
- Enclosing class:
- BufferingLog
public static enum BufferingLog.LogLevel extends Enum<BufferingLog.LogLevel>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static BufferingLog.LogLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static BufferingLog.LogLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
DEBUG
public static final BufferingLog.LogLevel DEBUG
-
INFO
public static final BufferingLog.LogLevel INFO
-
WARN
public static final BufferingLog.LogLevel WARN
-
ERROR
public static final BufferingLog.LogLevel ERROR
-
NONE
public static final BufferingLog.LogLevel NONE
-
-
Method Detail
-
values
public static BufferingLog.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 (BufferingLog.LogLevel c : BufferingLog.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 BufferingLog.LogLevel 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
-
-