Oracle Application Server Wireless Java API Reference
B10400-01

oracle.panama
Interface InputValueMap

All Known Subinterfaces:
Arguments, OutputArguments

public interface InputValueMap

Method Summary
 java.lang.String getInputValue(java.lang.String name)
          Gets the value of an argument by the argument name.
 java.lang.String[] getInputValues(java.lang.String name)
          Gets the values of an argument by the argument name.
 void setInputValue(java.lang.String name, java.lang.String value)
          Sets the value of an argument.
 void setInputValues(java.lang.String name, java.lang.String[] values)
          Sets the values of an argument.

 

Method Detail

getInputValue

public java.lang.String getInputValue(java.lang.String name)
Gets the value of an argument by the argument name.
Parameters:
name - the argument name.
Returns:
the value of or null if no such argument or if the value is undefined.
See Also:
Argument.getValue()

getInputValues

public java.lang.String[] getInputValues(java.lang.String name)
Gets the values of an argument by the argument name.
Parameters:
name - the argument name.
Returns:
the values of or null if no such argument or if the value is undefined.
See Also:
Argument.getValues()

setInputValue

public void setInputValue(java.lang.String name,
                          java.lang.String value)
Sets the value of an argument. If the argument doesn't exists the a new is created.
Parameters:
name - the name of the argument.
value - the value.
See Also:
Argument.setValue()

setInputValues

public void setInputValues(java.lang.String name,
                           java.lang.String[] values)
Sets the values of an argument. If the argument doesn't exists the a new is created.
Parameters:
name - the name of the argument.
values - string array containing the values.
See Also:
Argument.setValues()

Oracle Application Server Wireless Java API Reference
B10400-01

Copyright © 2003 Oracle Corporation. All Rights Reserved.