Package com.marigold.sdk.enums
Enum NotificationActionState
-
- All Implemented Interfaces:
-
java.io.Serializable,kotlin.Comparable
public enum NotificationActionState extends Enum<NotificationActionState>
Enum to describe state that notification action interaction will be handled in.
-
-
Field Summary
Fields Modifier and Type Field Description private final Stringnameprivate final Integerordinalprivate final EnumEntries<NotificationActionState>entries
-
Enum Constant Summary
Enum Constants Enum Constant Description ACTION_STATE_FOREGROUNDNotification action will launch application to foreground.
ACTION_STATE_BACKGROUNDNotification action will be handled in background without launching the application.
-
Method Summary
Modifier and Type Method Description final NotificationActionStatevalueOf(String value)Returns the enum constant of this type with the specified name. final Array<NotificationActionState>values()Returns an array containing the constants of this enum type, in the order they're declared. final EnumEntries<NotificationActionState>getEntries()Enum to describe state that notification action interaction will be handled in. -
-
Method Detail
-
valueOf
final NotificationActionState valueOf(String value)
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)
-
values
final Array<NotificationActionState> values()
Returns an array containing the constants of this enum type, in the order they're declared.
This method may be used to iterate over the constants.
-
getEntries
final EnumEntries<NotificationActionState> getEntries()
Enum to describe state that notification action interaction will be handled in.
-
-
-
-