public enum BusinessStatus extends Enum<BusinessStatus>
Enum Constant and Description |
---|
CANCEL
Отмена обработки запроса
|
REJECT
Отклонение обработки запроса
|
REQUEST
Сообщение-запрос
|
RESPONSE
Сообщение ответ на запрос
|
STATUS
Получение статуса
|
UNKNOWN
Неизвестный тип
|
Modifier and Type | Method and Description |
---|---|
static BusinessStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static BusinessStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final BusinessStatus REQUEST
public static final BusinessStatus RESPONSE
public static final BusinessStatus STATUS
public static final BusinessStatus REJECT
public static final BusinessStatus CANCEL
public static final BusinessStatus UNKNOWN
public static BusinessStatus[] values()
for (BusinessStatus c : BusinessStatus.values()) System.out.println(c);
public static BusinessStatus 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. All rights reserved.