public static enum AlertCommand.Button.Type extends java.lang.Enum<AlertCommand.Button.Type>
Enum Constant and Description |
---|
OTHER
Reserved for AskingPoint use.
|
RATING_NO
No button on Ratings Booster.
|
RATING_REMINDME
Remind me later button on Ratings Booster.
|
RATING_YES
Yes button on Ratings Booster.
|
Modifier and Type | Method and Description |
---|---|
static AlertCommand.Button.Type |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlertCommand.Button.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertCommand.Button.Type OTHER
public static final AlertCommand.Button.Type RATING_YES
public static final AlertCommand.Button.Type RATING_NO
public static final AlertCommand.Button.Type RATING_REMINDME
public static AlertCommand.Button.Type[] values()
for (AlertCommand.Button.Type c : AlertCommand.Button.Type.values()) System.out.println(c);
public static AlertCommand.Button.Type 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