Enum ActivityEventLoggingOptionType
- java.lang.Object
-
- java.lang.Enum<ActivityEventLoggingOptionType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.ActivityEventLoggingOptionType
-
- All Implemented Interfaces:
Serializable
,Comparable<ActivityEventLoggingOptionType>
public enum ActivityEventLoggingOptionType extends Enum<ActivityEventLoggingOptionType>
Java class for ActivityEventLoggingOptionType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ActivityEventLoggingOptionType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="none"/> <enumeration value="brief"/> <enumeration value="full"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ActivityEventLoggingOptionType
fromValue(String v)
String
value()
static ActivityEventLoggingOptionType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ActivityEventLoggingOptionType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
NONE
public static final ActivityEventLoggingOptionType NONE
Event should not be logged.
-
BRIEF
public static final ActivityEventLoggingOptionType BRIEF
Event should be logged briefly, typically by writing a single log line.
-
FULL
public static final ActivityEventLoggingOptionType FULL
Event should be logged fully. A couple of lines containing e.g. statistical information can be written.
-
-
Method Detail
-
values
public static ActivityEventLoggingOptionType[] 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 (ActivityEventLoggingOptionType c : ActivityEventLoggingOptionType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ActivityEventLoggingOptionType 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 ActivityEventLoggingOptionType fromValue(String v)
-
-