org.android.activityminer.app.util
Class ParameterValuePair
java.lang.Object
org.android.activityminer.app.util.ParameterValuePair
- All Implemented Interfaces:
- Map.Entry<String,String>
public class ParameterValuePair
- extends Object
- implements Map.Entry<String,String>
A simple implementation of key value pairs < String, String > for the parameter
value entries of the ParameterValuePairAdapter.
Field Summary |
private String |
key
The parameter key. |
private String |
value
The value for the parameter key. |
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
key
private final String key
- The parameter key.
value
private String value
- The value for the parameter key.
ParameterValuePair
public ParameterValuePair(String key,
String value)
- Constructor
- Parameters:
key
- the parameter keyvalue
- the value for the parameter key
getKey
public String getKey()
- Specified by:
getKey
in interface Map.Entry<String,String>
getValue
public String getValue()
- Specified by:
getValue
in interface Map.Entry<String,String>
setValue
public String setValue(String value)
- Specified by:
setValue
in interface Map.Entry<String,String>