Enum ProfilingLevel
- java.lang.Object
-
- java.lang.Enum<ProfilingLevel>
-
- com.evolveum.midpoint.gui.impl.page.admin.configuration.component.ProfilingLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<ProfilingLevel>
public enum ProfilingLevel extends Enum<ProfilingLevel>
- Author:
- lazyman
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ARGUMENTS
ENTRY_EXIT
OFF
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ProfilingLevel
fromLoggerLevelType(LoggingLevelType level)
String
getLocalizationKey()
static LoggingLevelType
toLoggerLevelType(ProfilingLevel level)
static ProfilingLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProfilingLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
OFF
public static final ProfilingLevel OFF
-
ENTRY_EXIT
public static final ProfilingLevel ENTRY_EXIT
-
ARGUMENTS
public static final ProfilingLevel ARGUMENTS
-
-
Method Detail
-
values
public static ProfilingLevel[] 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 (ProfilingLevel c : ProfilingLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProfilingLevel 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
-
getLocalizationKey
public String getLocalizationKey()
-
toLoggerLevelType
public static LoggingLevelType toLoggerLevelType(ProfilingLevel level)
-
fromLoggerLevelType
public static ProfilingLevel fromLoggerLevelType(LoggingLevelType level)
-
-