Enum LoggingLevelType
- java.lang.Object
-
- java.lang.Enum<LoggingLevelType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.LoggingLevelType
-
- All Implemented Interfaces:
Serializable
,Comparable<LoggingLevelType>
public enum LoggingLevelType extends Enum<LoggingLevelType>
TODO
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LoggingLevelType
fromValue(String v)
String
value()
static LoggingLevelType
valueOf(String name)
Returns the enum constant of this type with the specified name.static LoggingLevelType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final LoggingLevelType ALL
-
OFF
public static final LoggingLevelType OFF
-
ERROR
public static final LoggingLevelType ERROR
-
WARN
public static final LoggingLevelType WARN
-
INFO
public static final LoggingLevelType INFO
-
DEBUG
public static final LoggingLevelType DEBUG
-
TRACE
public static final LoggingLevelType TRACE
-
-
Method Detail
-
values
public static LoggingLevelType[] 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 (LoggingLevelType c : LoggingLevelType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LoggingLevelType 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
-
value
public String value()
-
fromValue
public static LoggingLevelType fromValue(String v)
-
-