com.ibm.pim.job
Enum ItemImport.ImportSemantics
java.lang.Object
java.lang.Enum<ItemImport.ImportSemantics>
com.ibm.pim.job.ItemImport.ImportSemantics
- All Implemented Interfaces:
- java.io.Serializable, java.lang.Comparable<ItemImport.ImportSemantics>
- Enclosing interface:
- ItemImport
public static enum ItemImport.ImportSemantics
- extends java.lang.Enum<ItemImport.ImportSemantics>
Methods inherited from class java.lang.Enum |
clone, compareTo, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
finalize, getClass, notify, notifyAll, wait, wait, wait |
UPDATE
public static final ItemImport.ImportSemantics UPDATE
REPLACE
public static final ItemImport.ImportSemantics REPLACE
DELETE
public static final ItemImport.ImportSemantics DELETE
values
public static final ItemImport.ImportSemantics[] values()
- Returns an array containing the constants of this enum type, in
the order they're declared. This method may be used to iterate
over the constants as follows:
for(ItemImport.ImportSemantics c : ItemImport.ImportSemantics.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they're declared
valueOf
public static ItemImport.ImportSemantics 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 name