public enum ResponseHandle extends Enum<ResponseHandle>
Enum Constant and Description |
---|
LEAVE_OPEN |
NONE |
STRING |
Modifier and Type | Method and Description |
---|---|
static ResponseHandle |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ResponseHandle[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ResponseHandle NONE
public static final ResponseHandle LEAVE_OPEN
public static final ResponseHandle STRING
public static ResponseHandle[] values()
for (ResponseHandle c : ResponseHandle.values()) System.out.println(c);
public static ResponseHandle 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 © 2016–2025. All rights reserved.