public static enum ExampleHeaders.HeaderExample extends Enum<ExampleHeaders.HeaderExample>
Enum Constant and Description |
---|
EIGHT |
ELEVEN |
FIVE |
SIX |
THIRTY |
THREE |
TWENTYTWO |
Modifier and Type | Method and Description |
---|---|
static ExampleHeaders.HeaderExample |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ExampleHeaders.HeaderExample[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ExampleHeaders.HeaderExample THREE
public static final ExampleHeaders.HeaderExample FIVE
public static final ExampleHeaders.HeaderExample SIX
public static final ExampleHeaders.HeaderExample EIGHT
public static final ExampleHeaders.HeaderExample ELEVEN
public static final ExampleHeaders.HeaderExample TWENTYTWO
public static final ExampleHeaders.HeaderExample THIRTY
public static ExampleHeaders.HeaderExample[] values()
for (ExampleHeaders.HeaderExample c : ExampleHeaders.HeaderExample.values()) System.out.println(c);
public static ExampleHeaders.HeaderExample 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 nullCopyright © 2008–2016 The Netty Project. All rights reserved.