| java.lang.Object org.apache.catalina.connector.http.HttpRequestLine
HttpRequestLine | final class HttpRequestLine (Code) | | HTTP request line enum type.
author: Remy Maucherat version: $Revision: 1.6 $ $Date: 2002/03/18 07:15:40 $ |
Constructor Summary | |
public | HttpRequestLine() | public | HttpRequestLine(char[] method, int methodEnd, char[] uri, int uriEnd, char[] protocol, int protocolEnd) |
Method Summary | |
public boolean | equals(Object obj) | public int | hashCode() | public int | indexOf(char[] buf) Test if the uri includes the given char array. | public int | indexOf(char[] buf, int end) Test if the value of the header includes the given char array. | public int | indexOf(String str) Test if the value of the header includes the given string. | public int | indexOf(char c, int start) Returns the index of a character in the value. | public void | recycle() Release all object references, and initialize instance variables, in
preparation for reuse of this object. |
INITIAL_METHOD_SIZE | final public static int INITIAL_METHOD_SIZE(Code) | | |
INITIAL_PROTOCOL_SIZE | final public static int INITIAL_PROTOCOL_SIZE(Code) | | |
INITIAL_URI_SIZE | final public static int INITIAL_URI_SIZE(Code) | | |
MAX_METHOD_SIZE | final public static int MAX_METHOD_SIZE(Code) | | |
MAX_PROTOCOL_SIZE | final public static int MAX_PROTOCOL_SIZE(Code) | | |
MAX_URI_SIZE | final public static int MAX_URI_SIZE(Code) | | |
method | public char[] method(Code) | | |
methodEnd | public int methodEnd(Code) | | |
protocol | public char[] protocol(Code) | | |
protocolEnd | public int protocolEnd(Code) | | |
HttpRequestLine | public HttpRequestLine()(Code) | | |
HttpRequestLine | public HttpRequestLine(char[] method, int methodEnd, char[] uri, int uriEnd, char[] protocol, int protocolEnd)(Code) | | |
hashCode | public int hashCode()(Code) | | |
indexOf | public int indexOf(char[] buf)(Code) | | Test if the uri includes the given char array.
|
indexOf | public int indexOf(char[] buf, int end)(Code) | | Test if the value of the header includes the given char array.
|
indexOf | public int indexOf(String str)(Code) | | Test if the value of the header includes the given string.
|
indexOf | public int indexOf(char c, int start)(Code) | | Returns the index of a character in the value.
|
recycle | public void recycle()(Code) | | Release all object references, and initialize instance variables, in
preparation for reuse of this object.
|
|
|