public static enum UpgradeTask.ScheduleOption extends Enum<UpgradeTask.ScheduleOption>
| Enum Constant and Description |
|---|
AFTER_JIRA_STARTED
The upgrade task may be run after the JIRA startup process is complete and while JIRA is available for use.
|
BEFORE_JIRA_STARTED
The upgrade task must be run during the JIRA startup process and prior to JIRA being available for use.
|
| Modifier and Type | Method and Description |
|---|---|
static UpgradeTask.ScheduleOption |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static UpgradeTask.ScheduleOption[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final UpgradeTask.ScheduleOption BEFORE_JIRA_STARTED
Such upgrades tasks break the ZDU and should only be used during a platform release.
public static final UpgradeTask.ScheduleOption AFTER_JIRA_STARTED
public static UpgradeTask.ScheduleOption[] values()
for (UpgradeTask.ScheduleOption c : UpgradeTask.ScheduleOption.values()) System.out.println(c);
public static UpgradeTask.ScheduleOption 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 nullCopyright © 2002-2021 Atlassian. All Rights Reserved.