Class ImpExConstants.Syntax.Mode

  • Enclosing class:
    ImpExConstants.Syntax

    public static final class ImpExConstants.Syntax.Mode
    extends java.lang.Object
    Contains all supported header modes. A mode defines the kind of item processing.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static java.lang.String INSERT
      Indicates the insertion of items.
      static java.lang.String INSERT_UPDATE
      Indicates the insertion or update of items.
      static java.lang.String REMOVE
      Indicates the removal of items.
      static java.lang.String UPDATE
      Indicates the update of items.
    • Constructor Summary

      Constructors 
      Constructor Description
      Mode()  
    • Method Summary

      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • INSERT

        public static final java.lang.String INSERT
        Indicates the insertion of items. All items created from value lines will be inserted to the platform.
      • UPDATE

        public static final java.lang.String UPDATE
        Indicates the update of items. All items resolved from value lines will be updated with given properties.
      • REMOVE

        public static final java.lang.String REMOVE
        Indicates the removal of items. All items resolved from value lines will be removed from the platform.
      • INSERT_UPDATE

        public static final java.lang.String INSERT_UPDATE
        Indicates the insertion or update of items. All items created from value lines will be inserted to the platform, all items resolved from value lines will be updated..
    • Constructor Detail

      • Mode

        public Mode()