Package org.restlet.util
Interface NamedValue<V>
-
- All Known Implementing Classes:
CacheDirective
,Cookie
,CookieSetting
,Expectation
,Header
,Parameter
public interface NamedValue<V>
String couple between a name and a value.- Author:
- Jerome Louvel
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.String
getName()
Returns the name of this parameter.V
getValue()
Returns the value.void
setValue(V value)
Sets the value.
-