Enum 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"/>
       </restriction>
     </simpleType>
     
    • 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. Or automated presentation, transformation or any other processing will take place.
    • 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 name
        NullPointerException - if the argument is null
      • value

        public String value()