Enum ProfilingDataManager.Subsystem
- java.lang.Object
-
- java.lang.Enum<ProfilingDataManager.Subsystem>
-
- com.evolveum.midpoint.util.aspect.ProfilingDataManager.Subsystem
-
- All Implemented Interfaces:
Serializable
,Comparable<ProfilingDataManager.Subsystem>
- Enclosing class:
- ProfilingDataManager
public static enum ProfilingDataManager.Subsystem extends Enum<ProfilingDataManager.Subsystem>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description MODEL
PROVISIONING
REPOSITORY
SYNCHRONIZATION_SERVICE
TASK_MANAGER
UCF
WEB
WORKFLOW
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ProfilingDataManager.Subsystem
valueOf(String name)
Returns the enum constant of this type with the specified name.static ProfilingDataManager.Subsystem[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
REPOSITORY
public static final ProfilingDataManager.Subsystem REPOSITORY
-
TASK_MANAGER
public static final ProfilingDataManager.Subsystem TASK_MANAGER
-
PROVISIONING
public static final ProfilingDataManager.Subsystem PROVISIONING
-
SYNCHRONIZATION_SERVICE
public static final ProfilingDataManager.Subsystem SYNCHRONIZATION_SERVICE
-
MODEL
public static final ProfilingDataManager.Subsystem MODEL
-
UCF
public static final ProfilingDataManager.Subsystem UCF
-
WORKFLOW
public static final ProfilingDataManager.Subsystem WORKFLOW
-
WEB
public static final ProfilingDataManager.Subsystem WEB
-
-
Method Detail
-
values
public static ProfilingDataManager.Subsystem[] 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 (ProfilingDataManager.Subsystem c : ProfilingDataManager.Subsystem.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ProfilingDataManager.Subsystem 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
-
-