Enum Class ItemProcessingType

java.lang.Object
java.lang.Enum<ItemProcessingType>
com.evolveum.midpoint.xml.ns._public.common.common_3.ItemProcessingType
All Implemented Interfaces:
TypeSafeEnum, Serializable, Comparable<ItemProcessingType>, Constable

public enum ItemProcessingType extends Enum<ItemProcessingType> implements TypeSafeEnum
Specifies the "depth" of item processing.
  • Enum Constant Details

    • 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 Details

    • values

      public static ItemProcessingType[] values()
      Returns an array containing the constants of this enum class, in the order they are declared.
      Returns:
      an array containing the constants of this enum class, in the order they are declared
    • valueOf

      public static ItemProcessingType valueOf(String name)
      Returns the enum constant of this class with the specified name. The string must match exactly an identifier used to declare an enum constant in this class. (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 class has no constant with the specified name
      NullPointerException - if the argument is null
    • value

      public String value()
      Description copied from interface: TypeSafeEnum
      Returns enum value defined as in schema.
      Specified by:
      value in interface TypeSafeEnum
      Returns:
    • fromValue

      public static ItemProcessingType fromValue(String v)