Package de.hybris.platform.ldap.impex
Enum ImpExEntry.HeaderMode
- java.lang.Object
-
- java.lang.Enum<ImpExEntry.HeaderMode>
-
- de.hybris.platform.ldap.impex.ImpExEntry.HeaderMode
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable<ImpExEntry.HeaderMode>
- Enclosing class:
- ImpExEntry
public static enum ImpExEntry.HeaderMode extends java.lang.Enum<ImpExEntry.HeaderMode>
supported impex modes- See Also:
ImpExEntry.getHeader()
-
-
Enum Constant Summary
Enum Constants Enum Constant Description INSERTINSERT_UPDATEUPDATE
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ImpExEntry.HeaderModevalueOf(java.lang.String name)Returns the enum constant of this type with the specified name.static ImpExEntry.HeaderMode[]values()Returns an array containing the constants of this enum type, in the order they are declared.
-
-
-
Enum Constant Detail
-
INSERT
public static final ImpExEntry.HeaderMode INSERT
-
UPDATE
public static final ImpExEntry.HeaderMode UPDATE
-
INSERT_UPDATE
public static final ImpExEntry.HeaderMode INSERT_UPDATE
-
-
Method Detail
-
values
public static ImpExEntry.HeaderMode[] 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 (ImpExEntry.HeaderMode c : ImpExEntry.HeaderMode.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ImpExEntry.HeaderMode 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
-
-