public enum LifecyclePhase extends Enum<LifecyclePhase>
Enum Constant and Description |
---|
BOOTSTRAP_END
The bootstrap phase is finished.
|
PLUGIN_FRAMEWORK_STARTED
The plugin framework is available.
|
SETUP
The setup phase.
|
Modifier and Type | Method and Description |
---|---|
boolean |
isLast()
Indicates whether this phase is the last in the sequence.
|
static LifecyclePhase |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static LifecyclePhase[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final LifecyclePhase SETUP
public static final LifecyclePhase BOOTSTRAP_END
public static final LifecyclePhase PLUGIN_FRAMEWORK_STARTED
public static LifecyclePhase[] values()
for (LifecyclePhase c : LifecyclePhase.values()) System.out.println(c);
public static LifecyclePhase 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 boolean isLast()
true
.Copyright © 2003–2019 Atlassian. All rights reserved.