public static enum ReactiveResponse.Event.Type extends Enum<ReactiveResponse.Event.Type>
| Enum Constant and Description |
|---|
BEGIN |
COMPLETE |
CONTENT |
FAILURE |
HEADERS |
SUCCESS |
| Modifier and Type | Method and Description |
|---|---|
static ReactiveResponse.Event.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ReactiveResponse.Event.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReactiveResponse.Event.Type BEGIN
public static final ReactiveResponse.Event.Type HEADERS
public static final ReactiveResponse.Event.Type CONTENT
public static final ReactiveResponse.Event.Type SUCCESS
public static final ReactiveResponse.Event.Type FAILURE
public static final ReactiveResponse.Event.Type COMPLETE
public static ReactiveResponse.Event.Type[] values()
for (ReactiveResponse.Event.Type c : ReactiveResponse.Event.Type.values()) System.out.println(c);
public static ReactiveResponse.Event.Type 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 © 2017–2024 The Jetty Project. All rights reserved.