Package org.eclipse.jetty.http
Class HttpTokens.Token
- java.lang.Object
-
- org.eclipse.jetty.http.HttpTokens.Token
-
- Enclosing class:
- HttpTokens
public static class HttpTokens.Token extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description private byte
_b
private char
_c
private HttpTokens.Type
_type
private int
_x
-
Constructor Summary
Constructors Modifier Constructor Description private
Token(byte b, HttpTokens.Type type)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description byte
getByte()
char
getChar()
int
getHexDigit()
HttpTokens.Type
getType()
boolean
isHexDigit()
java.lang.String
toString()
-
-
-
Field Detail
-
_type
private final HttpTokens.Type _type
-
_b
private final byte _b
-
_c
private final char _c
-
_x
private final int _x
-
-
Constructor Detail
-
Token
private Token(byte b, HttpTokens.Type type)
-
-
Method Detail
-
getType
public HttpTokens.Type getType()
-
getByte
public byte getByte()
-
getChar
public char getChar()
-
isHexDigit
public boolean isHexDigit()
-
getHexDigit
public int getHexDigit()
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
-