public static enum ProcessConstants.DataMappingType extends java.lang.Enum<ProcessConstants.DataMappingType>
| Enum Constant and Description |
|---|
CONNECT_LATER
the parameter should be connected later
|
DATAELEMENT
the parameter is mapped to an existing data element
|
DISABLE
the parameter is marked as disabled
|
NEW_DATAELEMENT
the parameter is mapped to a new data element
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCode() |
static ProcessConstants.DataMappingType |
valueOf(int code) |
static ProcessConstants.DataMappingType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ProcessConstants.DataMappingType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ProcessConstants.DataMappingType DATAELEMENT
public static final ProcessConstants.DataMappingType NEW_DATAELEMENT
public static final ProcessConstants.DataMappingType DISABLE
public static final ProcessConstants.DataMappingType CONNECT_LATER
public static ProcessConstants.DataMappingType[] values()
for (ProcessConstants.DataMappingType c : ProcessConstants.DataMappingType.values()) System.out.println(c);
public static ProcessConstants.DataMappingType valueOf(java.lang.String name)
name - the name of the enum constant to be returned.java.lang.IllegalArgumentException - if this enum type has no constant with the specified namejava.lang.NullPointerException - if the argument is nullpublic int getCode()
public static ProcessConstants.DataMappingType valueOf(int code)