public enum Http2TestCases extends Enum<Http2TestCases>
| Enum Constant and Description |
|---|
GOAWAY |
MAX_STREAMS |
PING |
RST_AFTER_DATA |
RST_AFTER_HEADER |
RST_DURING_DATA |
| Modifier and Type | Method and Description |
|---|---|
String |
description()
Returns a description of the test case.
|
static Http2TestCases |
fromString(String s)
Returns the
Http2TestCases matching the string s. |
static Http2TestCases |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Http2TestCases[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Http2TestCases RST_AFTER_HEADER
public static final Http2TestCases RST_AFTER_DATA
public static final Http2TestCases RST_DURING_DATA
public static final Http2TestCases GOAWAY
public static final Http2TestCases PING
public static final Http2TestCases MAX_STREAMS
public static Http2TestCases[] values()
for (Http2TestCases c : Http2TestCases.values()) System.out.println(c);
public static Http2TestCases 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 String description()
public static Http2TestCases fromString(String s)
Http2TestCases matching the string s. The
matching is case insensitive.