| Constructor and Description | 
|---|
StepInjectionMetaEntry(String key,
                      int valueType,
                      String description)  | 
StepInjectionMetaEntry(String key,
                      Object value,
                      int valueType,
                      String description)  | 
| Modifier and Type | Method and Description | 
|---|---|
StepInjectionMetaEntry | 
clone()  | 
String | 
getDescription()  | 
List<StepInjectionMetaEntry> | 
getDetails()  | 
String | 
getKey()  | 
Object | 
getValue()  | 
int | 
getValueType()  | 
void | 
setDescription(String description)  | 
void | 
setDetails(List<StepInjectionMetaEntry> details)  | 
void | 
setKey(String key)  | 
void | 
setValue(Object value)  | 
void | 
setValueType(int valueType)  | 
String | 
toString()  | 
public StepInjectionMetaEntry(String key, Object value, int valueType, String description)
key - value - valueType - description - public StepInjectionMetaEntry clone()
public String getKey()
public void setKey(String key)
key - the key to setpublic Object getValue()
public void setValue(Object value)
value - the value to setpublic String getDescription()
public void setDescription(String description)
description - the description to setpublic int getValueType()
public void setValueType(int valueType)
valueType - the valueType to setpublic List<StepInjectionMetaEntry> getDetails()
public void setDetails(List<StepInjectionMetaEntry> details)
details - the details to set. In case the data type of this entry is NONE (0) you can specify a list of entries. For
          example, for a step with a list of entries (filenames, fields, keys, etc) you can specify the list of
          metadata entries with this list.