Enum ItemProcessingType
- java.lang.Object
-
- java.lang.Enum<ItemProcessingType>
-
- com.evolveum.midpoint.xml.ns._public.common.common_3.ItemProcessingType
-
- All Implemented Interfaces:
Serializable
,Comparable<ItemProcessingType>
public enum ItemProcessingType extends Enum<ItemProcessingType>
Java class for ItemProcessingType.
The following schema fragment specifies the expected content contained within this class.
<simpleType name="ItemProcessingType"> <restriction base="{http://www.w3.org/2001/XMLSchema}string"> <enumeration value="ignore"/> <enumeration value="minimal"/> <enumeration value="auto"/> <enumeration value="full"/> </restriction> </simpleType>
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ItemProcessingType
fromValue(String v)
String
value()
static ItemProcessingType
valueOf(String name)
Returns the enum constant of this type with the specified name.static ItemProcessingType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
IGNORE
public static final ItemProcessingType IGNORE
Item is ignored. No processing is done at all. The item will behave in the same way as it is does not exists at all.
-
MINIMAL
public static final ItemProcessingType MINIMAL
Only very minimal item processing is done. This usually means that basic data structures about the item is maintained. The item values may be logged. But all automatic processing, presentation, transformation or any similar processing is skipped. This type of processing is designed to support item processing by custom code. The underlying data structures will be present and they can be manipulated by custom code. But any built-in automatic processing will be skipped.
-
AUTO
public static final ItemProcessingType AUTO
All usual processing of the item is applied.
-
FULL
public static final ItemProcessingType FULL
Full processing of the item is applied. For GUI this means that automated presentation takes place. For metadata the meaning is that built-in mappings are applied.
-
-
Method Detail
-
values
public static ItemProcessingType[] 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 (ItemProcessingType c : ItemProcessingType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ItemProcessingType 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 ItemProcessingType fromValue(String v)
-
-