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