Enum ExportConfig.ValidationMode
- java.lang.Object
-
- java.lang.Enum<ExportConfig.ValidationMode>
-
- de.hybris.platform.servicelayer.impex.ExportConfig.ValidationMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ExportConfig.ValidationMode>
- Enclosing class:
- ExportConfig
public static enum ExportConfig.ValidationMode extends java.lang.Enum<ExportConfig.ValidationMode>
Represents the validation modes available for export. See documentation for details on separate modes.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetCode()static ExportConfig.ValidationModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ExportConfig.ValidationMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
STRICT
public static final ExportConfig.ValidationMode STRICT
Represents the EXPORT_REIMPORT_STRICT mode.
-
RELAXED
public static final ExportConfig.ValidationMode RELAXED
Represents the EXPORT_REIMPORT_RELAXED mode.
-
WITHOUT
public static final ExportConfig.ValidationMode WITHOUT
Represents the EXPORT_ONLY mode.
-
-
Method Detail
-
values
public static ExportConfig.ValidationMode[] 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 (ExportConfig.ValidationMode c : ExportConfig.ValidationMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExportConfig.ValidationMode valueOf(java.lang.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:
java.lang.IllegalArgumentException- if this enum type has no constant with the specified namejava.lang.NullPointerException- if the argument is null
-
getCode
public java.lang.String getCode()
-
-