public static enum AlertCommand.AlertType extends java.lang.Enum<AlertCommand.AlertType>
Enum Constant and Description |
---|
FEEDBACK_OR_RATING_INTRO
Sent when Feedback option is on.
|
MESSAGE
In-App Message
|
RATING
Ratings Booster
|
UNKNOWN
Unknown alert type, should not see
|
Modifier and Type | Method and Description |
---|---|
static AlertCommand.AlertType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static AlertCommand.AlertType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AlertCommand.AlertType UNKNOWN
public static final AlertCommand.AlertType RATING
public static final AlertCommand.AlertType MESSAGE
public static final AlertCommand.AlertType FEEDBACK_OR_RATING_INTRO
public static AlertCommand.AlertType[] values()
for (AlertCommand.AlertType c : AlertCommand.AlertType.values()) System.out.println(c);
public static AlertCommand.AlertType 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