public static enum HttpTokens.Type extends java.lang.Enum<HttpTokens.Type>
Enum Constant and Description |
---|
ALPHA |
CNTL |
COLON |
CR |
DIGIT |
HTAB |
LF |
OTEXT |
SPACE |
TCHAR |
VCHAR |
Modifier and Type | Method and Description |
---|---|
static HttpTokens.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static HttpTokens.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpTokens.Type CNTL
public static final HttpTokens.Type HTAB
public static final HttpTokens.Type LF
public static final HttpTokens.Type CR
public static final HttpTokens.Type SPACE
public static final HttpTokens.Type COLON
public static final HttpTokens.Type DIGIT
public static final HttpTokens.Type ALPHA
public static final HttpTokens.Type TCHAR
public static final HttpTokens.Type VCHAR
public static final HttpTokens.Type OTEXT
public static HttpTokens.Type[] values()
for (HttpTokens.Type c : HttpTokens.Type.values()) System.out.println(c);
public static HttpTokens.Type valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is nullCopyright © 1995–2023 Webtide. All rights reserved.