public enum AssistStatus extends java.lang.Enum<AssistStatus> implements ListItem
Modifier and Type | Method and Description |
---|---|
int |
getCode()
Код для сохранения в базе.
|
int |
getId() |
static int |
getMaskFromStatusList(java.lang.String list)
Преобразование списка статусов (через запятую) в маску - объединение
чисел-кодов статусов.
|
java.lang.String |
getTitle()
Заголовок статуса, для отображения пользователю.
|
static AssistStatus |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AssistStatus[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AssistStatus NEW
public static final AssistStatus OK
public static final AssistStatus FAIL
public static AssistStatus[] values()
for (AssistStatus c : AssistStatus.values()) System.out.println(c);
public static AssistStatus 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 nullpublic int getCode()
public java.lang.String getTitle()
public static int getMaskFromStatusList(java.lang.String list)
list
- строка значений енума, через запятую ("OK,FAIL")