@PublicApi public enum NotificationType extends Enum<NotificationType>
Enum Constant and Description |
---|
ALL_WATCHERS |
COMPONENT_LEAD |
CURRENT_ASSIGNEE |
CURRENT_USER |
GROUP |
GROUP_CUSTOM_FIELD_VALUE |
PROJECT_LEAD |
PROJECT_ROLE |
REPORTER |
SINGLE_EMAIL_ADDRESS |
SINGLE_USER |
USER_CUSTOM_FIELD_VALUE |
Modifier and Type | Method and Description |
---|---|
String |
dbCode() |
static NotificationType |
from(String dbCode)
Returns a NotificationType from the database code that JIRA uses internally.
|
String |
getRestApiName() |
static NotificationType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static NotificationType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final NotificationType CURRENT_ASSIGNEE
public static final NotificationType REPORTER
public static final NotificationType CURRENT_USER
public static final NotificationType PROJECT_LEAD
public static final NotificationType COMPONENT_LEAD
public static final NotificationType SINGLE_USER
public static final NotificationType GROUP
public static final NotificationType PROJECT_ROLE
public static final NotificationType SINGLE_EMAIL_ADDRESS
public static final NotificationType ALL_WATCHERS
public static final NotificationType USER_CUSTOM_FIELD_VALUE
public static final NotificationType GROUP_CUSTOM_FIELD_VALUE
public static NotificationType[] values()
for (NotificationType c : NotificationType.values()) System.out.println(c);
public static NotificationType 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 nullpublic String dbCode()
public String getRestApiName()
public static NotificationType from(String dbCode)
dbCode
- a magic string stored in the database tablesIllegalArgumentException
- if you give an invalid stringCopyright © 2002-2017 Atlassian. All Rights Reserved.