public enum NotificationReason extends java.lang.Enum<NotificationReason>
| Enum Constant and Description |
|---|
assign |
author |
comment |
manual |
mention |
state_change |
subscribed |
team_mention |
| Modifier and Type | Method and Description |
|---|---|
static NotificationReason |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static NotificationReason[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationReason subscribed
public static final NotificationReason manual
public static final NotificationReason author
public static final NotificationReason comment
public static final NotificationReason mention
public static final NotificationReason team_mention
public static final NotificationReason state_change
public static final NotificationReason assign
public static NotificationReason[] values()
for (NotificationReason c : NotificationReason.values()) System.out.println(c);
public static NotificationReason 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