Interface HttpHeader

All Known Implementing Classes:
DefaultHttpHeader

public interface HttpHeader
The HttpHeader API.
Author:
Manfred Riem ([email protected])
  • Method Summary

    Modifier and Type Method Description
    void addValue​(java.lang.String value)
    Add the value.
    java.lang.String getName()
    Get the name.
    java.lang.String getValue()
    Get the value.
    java.util.Enumeration<java.lang.String> getValues()
    Get the values.
  • Method Details

    • addValue

      void addValue​(java.lang.String value)
      Add the value.
      Parameters:
      value - the value to add.
    • getName

      java.lang.String getName()
      Get the name.
      Returns:
      the name.
    • getValue

      java.lang.String getValue()
      Get the value.
      Returns:
      the value.
    • getValues

      java.util.Enumeration<java.lang.String> getValues()
      Get the values.
      Returns:
      the values.