Enum LoggingComponentType
- java.lang.Object
-
- java.lang.Enum<LoggingComponentType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.LoggingComponentType
-
- All Implemented Interfaces:
Serializable
,Comparable<LoggingComponentType>
public enum LoggingComponentType extends Enum<LoggingComponentType>
Java class for LoggingComponentType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="LoggingComponentType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="ALL"/> <enumeration value="MODEL"/> <enumeration value="PROVISIONING"/> <enumeration value="REPOSITORY"/> <enumeration value="WEB"/> <enumeration value="GUI"/> <enumeration value="TASKMANAGER"/> <enumeration value="RESOURCEOBJECTCHANGELISTENER"/> <enumeration value="WORKFLOWS"/> <enumeration value="NOTIFICATIONS"/> <enumeration value="ACCESS_CERTIFICATION"/> <enumeration value="SECURITY"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description ACCESS_CERTIFICATION
ALL
GUI
MODEL
NOTIFICATIONS
PROVISIONING
REPOSITORY
RESOURCEOBJECTCHANGELISTENER
SECURITY
TASKMANAGER
WEB
WORKFLOWS
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static LoggingComponentType
fromValue(String v)
String
value()
static LoggingComponentType
valueOf(String name)
Returns the enum constant of this type with the specified name.static LoggingComponentType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
ALL
public static final LoggingComponentType ALL
-
MODEL
public static final LoggingComponentType MODEL
-
PROVISIONING
public static final LoggingComponentType PROVISIONING
-
REPOSITORY
public static final LoggingComponentType REPOSITORY
-
WEB
public static final LoggingComponentType WEB
-
GUI
public static final LoggingComponentType GUI
-
TASKMANAGER
public static final LoggingComponentType TASKMANAGER
-
RESOURCEOBJECTCHANGELISTENER
public static final LoggingComponentType RESOURCEOBJECTCHANGELISTENER
-
WORKFLOWS
public static final LoggingComponentType WORKFLOWS
-
NOTIFICATIONS
public static final LoggingComponentType NOTIFICATIONS
-
ACCESS_CERTIFICATION
public static final LoggingComponentType ACCESS_CERTIFICATION
-
SECURITY
public static final LoggingComponentType SECURITY
-
-
Method Detail
-
values
public static LoggingComponentType[] 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 (LoggingComponentType c : LoggingComponentType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static LoggingComponentType 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 LoggingComponentType fromValue(String v)
-
-