Package io.netty5.microbench.headers
Enum ExampleHeaders.HeaderExample
- java.lang.Object
-
- java.lang.Enum<ExampleHeaders.HeaderExample>
-
- io.netty5.microbench.headers.ExampleHeaders.HeaderExample
-
- All Implemented Interfaces:
Serializable,Comparable<ExampleHeaders.HeaderExample>
- Enclosing class:
- ExampleHeaders
public static enum ExampleHeaders.HeaderExample extends Enum<ExampleHeaders.HeaderExample>
-
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ExampleHeaders.HeaderExamplevalueOf(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.
-
-
-
Enum Constant Detail
-
THREE
public static final ExampleHeaders.HeaderExample THREE
-
FIVE
public static final ExampleHeaders.HeaderExample FIVE
-
SIX
public static final ExampleHeaders.HeaderExample SIX
-
EIGHT
public static final ExampleHeaders.HeaderExample EIGHT
-
ELEVEN
public static final ExampleHeaders.HeaderExample ELEVEN
-
TWENTYTWO
public static final ExampleHeaders.HeaderExample TWENTYTWO
-
THIRTY
public static final ExampleHeaders.HeaderExample THIRTY
-
-
Method Detail
-
values
public static ExampleHeaders.HeaderExample[] values()
Returns an array containing the constants of this enum type, in the order they are declared. This method may be used to iterate over the constants as follows:for (ExampleHeaders.HeaderExample c : ExampleHeaders.HeaderExample.values()) System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
public static ExampleHeaders.HeaderExample valueOf(String name)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException- if this enum type has no constant with the specified nameNullPointerException- if the argument is null
-
-