Enum ImpExValueLineError.ImpExLineErrorType
- java.lang.Object
-
- java.lang.Enum<ImpExValueLineError.ImpExLineErrorType>
-
- de.hybris.platform.servicelayer.impex.ImpExValueLineError.ImpExLineErrorType
-
- All Implemented Interfaces:
java.io.Serializable
,java.lang.Comparable<ImpExValueLineError.ImpExLineErrorType>
- Enclosing interface:
- ImpExValueLineError
public static enum ImpExValueLineError.ImpExLineErrorType extends java.lang.Enum<ImpExValueLineError.ImpExLineErrorType>
-
-
Enum Constant Summary
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ImpExValueLineError.ImpExLineErrorType
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static ImpExValueLineError.ImpExLineErrorType[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
PARTIALLY_PROCESSED
public static final ImpExValueLineError.ImpExLineErrorType PARTIALLY_PROCESSED
-
NOT_PROCESSED
public static final ImpExValueLineError.ImpExLineErrorType NOT_PROCESSED
-
PARTIALLY_PROCESSED_WITH_ERROR
public static final ImpExValueLineError.ImpExLineErrorType PARTIALLY_PROCESSED_WITH_ERROR
-
NOT_PROCESSED_WITH_ERROR
public static final ImpExValueLineError.ImpExLineErrorType NOT_PROCESSED_WITH_ERROR
-
WRONG_OR_MISSING_HEADER
public static final ImpExValueLineError.ImpExLineErrorType WRONG_OR_MISSING_HEADER
-
NOT_PROCESSED_CONFLICTING
public static final ImpExValueLineError.ImpExLineErrorType NOT_PROCESSED_CONFLICTING
-
NOT_EXISTING_ITEM
public static final ImpExValueLineError.ImpExLineErrorType NOT_EXISTING_ITEM
-
REFERENCE_VIOLATION
public static final ImpExValueLineError.ImpExLineErrorType REFERENCE_VIOLATION
-
CANNOT_REMOVE_ITEM
public static final ImpExValueLineError.ImpExLineErrorType CANNOT_REMOVE_ITEM
-
INVALID_DATA_FORMAT
public static final ImpExValueLineError.ImpExLineErrorType INVALID_DATA_FORMAT
-
UNKNOWN
public static final ImpExValueLineError.ImpExLineErrorType UNKNOWN
-
-
Method Detail
-
values
public static ImpExValueLineError.ImpExLineErrorType[] 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 (ImpExValueLineError.ImpExLineErrorType c : ImpExValueLineError.ImpExLineErrorType.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImpExValueLineError.ImpExLineErrorType 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
-
-