Enum Constant and Description |
---|
DISCOUNT_PERCENT
Знак процента, символизирующий скидки
|
ERROR
Иконка для сообщений об ошибках.
|
GIFT
Сообщение о подарке.
|
INFO
Иконка для общих сообщений.
|
NONE
Без иконки.
|
SUCCESS
Иконка для сообщений об успешном выполнении операции.
|
WARNING
Иконка для предупреждениях.
|
Modifier and Type | Method and Description |
---|---|
static IconType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static IconType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IconType NONE
public static final IconType ERROR
public static final IconType WARNING
public static final IconType INFO
public static final IconType SUCCESS
public static final IconType GIFT
public static final IconType DISCOUNT_PERCENT
public static IconType[] values()
for (IconType c : IconType.values()) System.out.println(c);
public static IconType 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