public enum HttpHeaderBlock extends Enum<HttpHeaderBlock>
Enum Constant and Description |
---|
INFORMATIONAL |
MAIN |
TRAILING |
Modifier and Type | Method and Description |
---|---|
int |
getValue() |
static HttpHeaderBlock |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static HttpHeaderBlock[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final HttpHeaderBlock MAIN
public static final HttpHeaderBlock INFORMATIONAL
public static final HttpHeaderBlock TRAILING
public static HttpHeaderBlock[] values()
for (HttpHeaderBlock c : HttpHeaderBlock.values()) System.out.println(c);
public static HttpHeaderBlock valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic int getValue()
Copyright © 2021. All rights reserved.