示例#1
0
 // Set the specified input value
 // @param key input key
 // @param value value
 public void setInput(EodInput key, String value)
 {
     setInput(key.toString(), value);
 }
示例#2
0
 public EodStagingInputBuilder withInput(EodInput key, String value)
 {
     _data.setInput(key, value);
     return(this);
 }
示例#3
0
 // Return the specified input value
 // @param key input key
 // @return input
 public String getInput(EodInput key)
 {
     return(getInput(key.toString()));
 }