public static enum NotificationAction.Type extends Enum<NotificationAction.Type>
Enum Constant and Description |
---|
OPEN_ACTIVITY
Action is type of
OpenActivityAction , Activity with provided identifier should be opened. |
OPEN_PROFILE
Action is type of
OpenProfileAction , User profile with provided identifier should be opened. |
Modifier and Type | Method and Description |
---|---|
static NotificationAction.Type |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationAction.Type[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationAction.Type OPEN_ACTIVITY
OpenActivityAction
, Activity with provided identifier should be opened.public static final NotificationAction.Type OPEN_PROFILE
OpenProfileAction
, User profile with provided identifier should be opened.public static NotificationAction.Type[] values()
for (NotificationAction.Type c : NotificationAction.Type.values()) System.out.println(c);
public static NotificationAction.Type valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null(c) Copyright GetSocial BV, 2017. All Rights Reserved.