public enum DailyReportResultCode extends java.lang.Enum<DailyReportResultCode>
Enum Constant and Description |
---|
ERROR
Произошла ошибка при выполнении сверки, сверка не выполнена.
|
SUCCESS
Сверка успешно получена, вернулся результат.
|
TIMEOUT
Произошел таймаут при взаимодействии с внешней системой, сверка не выполнена.
|
Modifier and Type | Method and Description |
---|---|
static DailyReportResultCode |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DailyReportResultCode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DailyReportResultCode SUCCESS
public static final DailyReportResultCode TIMEOUT
public static final DailyReportResultCode ERROR
public static DailyReportResultCode[] values()
for (DailyReportResultCode c : DailyReportResultCode.values()) System.out.println(c);
public static DailyReportResultCode valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null