Class ImpExConstants.Syntax.Mode
- java.lang.Object
-
- de.hybris.platform.impex.constants.ImpExConstants.Syntax.Mode
-
- Enclosing class:
- ImpExConstants.Syntax
public static final class ImpExConstants.Syntax.Mode extends java.lang.ObjectContains all supported header modes. A mode defines the kind of item processing.
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringINSERTIndicates the insertion of items.static java.lang.StringINSERT_UPDATEIndicates the insertion or update of items.static java.lang.StringREMOVEIndicates the removal of items.static java.lang.StringUPDATEIndicates the update of items.
-
Constructor Summary
Constructors Constructor Description Mode()
-
-
-
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..
-
-