public enum IssueInvolvement extends Enum<IssueInvolvement> implements Comparable<IssueInvolvement>
Enum Constant and Description |
---|
ASSIGNEE |
COMMENTER |
REPORTER |
VOTER |
WATCHER |
Modifier and Type | Method and Description |
---|---|
String |
getI18nKey()
Returns the i18n key for the involvement type.
|
String |
getId()
Returns the ID for the involvement type.
|
static IssueInvolvement |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IssueInvolvement[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf
compareTo
public static final IssueInvolvement ASSIGNEE
public static final IssueInvolvement REPORTER
public static final IssueInvolvement COMMENTER
public static final IssueInvolvement WATCHER
public static final IssueInvolvement VOTER
public static IssueInvolvement[] values()
for (IssueInvolvement c : IssueInvolvement.values()) System.out.println(c);
public static IssueInvolvement 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 getId()
public String getI18nKey()
Copyright © 2002-2024 Atlassian. All Rights Reserved.