Enum OperationResultDetailLevel
- java.lang.Object
-
- java.lang.Enum<OperationResultDetailLevel>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.OperationResultDetailLevel
-
- All Implemented Interfaces:
Serializable
,Comparable<OperationResultDetailLevel>
public enum OperationResultDetailLevel extends Enum<OperationResultDetailLevel>
Java class for OperationResultDetailLevel.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="OperationResultDetailLevel"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="full"/> <enumeration value="cleanedUp"/> <enumeration value="top"/> <enumeration value="none"/> </restriction> </simpleType>
-
-
Enum Constant Summary
Enum Constants Enum Constant Description CLEANED_UP
Operation result is cleaned up from minor successful subresults.FULL
Full operation result is preserved, no changes are made.NONE
Nothing is stored, just like no operation result (null) was provided.TOP
Only the top level result (root) is preserved, all subresults are removed.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static OperationResultDetailLevel
fromValue(String v)
String
value()
static OperationResultDetailLevel
valueOf(String name)
Returns the enum constant of this type with the specified name.static OperationResultDetailLevel[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
FULL
public static final OperationResultDetailLevel FULL
Full operation result is preserved, no changes are made.
-
CLEANED_UP
public static final OperationResultDetailLevel CLEANED_UP
Operation result is cleaned up from minor successful subresults. Only first level subresults are cleaned up this way.
-
TOP
public static final OperationResultDetailLevel TOP
Only the top level result (root) is preserved, all subresults are removed.
-
NONE
public static final OperationResultDetailLevel NONE
Nothing is stored, just like no operation result (null) was provided.
-
-
Method Detail
-
values
public static OperationResultDetailLevel[] 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 (OperationResultDetailLevel c : OperationResultDetailLevel.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static OperationResultDetailLevel 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 OperationResultDetailLevel fromValue(String v)
-
-