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

    Modifier and Type
    Method
    Description
    Returns the name of this parameter.
    Returns the value.
    void
    setValue(V value)
    Sets the value.
  • Method Details

    • getName

      String getName()
      Returns the name of this parameter.
      Returns:
      The name of this parameter.
    • getValue

      V getValue()
      Returns the value.
      Returns:
      The value.
    • setValue

      void setValue(V value)
      Sets the value.
      Parameters:
      value - The value.