public enum ArchivedState extends Enum<ArchivedState>
Enum Constant and Description |
---|
ISSUE_ARCHIVED |
PROJECT_ARCHIVED |
Modifier and Type | Method and Description |
---|---|
String |
getName() |
static ArchivedState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static ArchivedState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final ArchivedState ISSUE_ARCHIVED
public static final ArchivedState PROJECT_ARCHIVED
public static ArchivedState[] values()
for (ArchivedState c : ArchivedState.values()) System.out.println(c);
public static ArchivedState 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 getName()
Copyright © 2002-2021 Atlassian. All Rights Reserved.