Interface NameValuePair
-
- All Known Implementing Classes:
NameValuePairImpl
public interface NameValuePair
Stores a name (String) and value (Object).
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getName()
Gets the name.Object
getValue()
Gets the value.void
setName(String aName)
Sets the name.void
setValue(Object aValue)
Sets the value.
-