public enum SMEVStatus extends Enum<SMEVStatus>
Enum Constant and Description |
---|
ACCEPTED
Получение подтверждено
|
ARCHIVED
Сообщение в архиве
|
DELIVERED
Доставлено
|
PROCESSING
В обработке
|
QUEUED
Добавлено в очередь
|
REJECTED
Отклонено
|
UNKNOWN
Статус неизвестен
|
Modifier and Type | Field and Description |
---|---|
static Map<String,SMEVStatus> |
mapping
Сопоставление статуса и его строкового представления
|
Modifier and Type | Method and Description |
---|---|
static SMEVStatus |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SMEVStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SMEVStatus QUEUED
public static final SMEVStatus ACCEPTED
public static final SMEVStatus REJECTED
public static final SMEVStatus PROCESSING
public static final SMEVStatus DELIVERED
public static final SMEVStatus UNKNOWN
public static final SMEVStatus ARCHIVED
public static Map<String,SMEVStatus> mapping
public static SMEVStatus[] values()
for (SMEVStatus c : SMEVStatus.values()) System.out.println(c);
public static SMEVStatus 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.