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