public enum ReceiptFeedbackType extends java.lang.Enum<ReceiptFeedbackType>
Enum Constant and Description |
---|
BY_EMAIL
Оповестить по электронной почте
|
BY_PHONE
Через SMS
|
Modifier and Type | Method and Description |
---|---|
static ReceiptFeedbackType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static ReceiptFeedbackType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ReceiptFeedbackType BY_EMAIL
public static final ReceiptFeedbackType BY_PHONE
public static ReceiptFeedbackType[] values()
for (ReceiptFeedbackType c : ReceiptFeedbackType.values()) System.out.println(c);
public static ReceiptFeedbackType 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