Uses of Class
org.glassfish.grizzly.http.util.Header

Packages that use Header
org.glassfish.grizzly.http   
org.glassfish.grizzly.http.util   
 

Uses of Header in org.glassfish.grizzly.http
 

Methods in org.glassfish.grizzly.http with parameters of type Header
 void MimeHeadersPacket.addHeader(Header header, String value)
          Add the HTTP mime header.
 void HttpTrailer.addHeader(Header header, String value)
          Add the HTTP mime header.
 void HttpResponsePacket.addHeader(Header header, String value)
           
 void HttpHeader.addHeader(Header header, String value)
          Add the HTTP mime header.
 boolean MimeHeadersPacket.containsHeader(Header header)
          Returns true, if the mime Header is present among the HttpHeader mime headers, otherwise returns false.
 boolean HttpTrailer.containsHeader(Header header)
          Returns true, if the mime Header is present among the HttpHeader mime headers, otherwise returns false.
 boolean HttpResponsePacket.containsHeader(Header header)
           
 boolean HttpHeader.containsHeader(Header header)
          Returns true, if the mime Header is present among the HttpHeader mime headers, otherwise returns false.
 String MimeHeadersPacket.getHeader(Header header)
          Get the value, of the specific HTTP mime header.
 String HttpTrailer.getHeader(Header header)
          Get the value, of the specific HTTP mime header.
 String HttpResponsePacket.getHeader(Header header)
           
 String HttpHeader.getHeader(Header header)
          Get the value, of the specific HTTP mime header.
 T HttpHeader.Builder.header(Header header, String value)
          Add the HTTP mime header.
 void MimeHeadersPacket.setHeader(Header header, String value)
          Set the value, of the specific HTTP mime header.
 void HttpTrailer.setHeader(Header header, String value)
          Set the value, of the specific HTTP mime header.
 void HttpResponsePacket.setHeader(Header header, String value)
           
 void HttpHeader.setHeader(Header header, String value)
          Set the value, of the specific HTTP mime header.
 

Uses of Header in org.glassfish.grizzly.http.util
 

Methods in org.glassfish.grizzly.http.util that return Header
static Header Header.find(String name)
           Attempts to find a HTTP header by it's standard textual definition which may differ from value value returned by Enum.name.
static Header Header.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static Header[] Header.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in org.glassfish.grizzly.http.util with parameters of type Header
 DataChunk MimeHeaders.addValue(Header header)
          Create a new named header , return the MessageBytes container for the new value
 boolean MimeHeaders.contains(Header header)
           
 String MimeHeaders.getHeader(Header header)
           
 DataChunk MimeHeaders.getValue(Header header)
          Finds and returns a header field with the given name.
 int MimeHeaders.indexOf(Header header, int fromIndex)
          Find the index of a header with the given name.
 void MimeHeaders.removeHeader(Header header)
           
 void MimeHeaders.removeHeaderMatches(Header header, String regex)
          Removes the headers with the given name whose values contain the given string.
 DataChunk MimeHeaders.setValue(Header header)
          Allow "set" operations - return a DataChunk container for the header value ( existing header or new if this .
 Iterable<String> MimeHeaders.values(Header name)
           
 



Copyright © 2012 Oracle Corporation. All Rights Reserved.