public enum DeltaState extends Enum<DeltaState>
Enum Constant and Description |
---|
BROKEN |
FAILING |
FIXED |
NONE |
PASSING |
Modifier and Type | Method and Description |
---|---|
static DeltaState |
determineDeltaState(BuildState lastBuildState,
BuildState thisBuildState) |
static DeltaState |
getInstance(String deltaState) |
static DeltaState |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DeltaState[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DeltaState NONE
public static final DeltaState PASSING
public static final DeltaState FAILING
public static final DeltaState BROKEN
public static final DeltaState FIXED
public static DeltaState[] values()
for (DeltaState c : DeltaState.values()) System.out.println(c);
public static DeltaState 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 static DeltaState determineDeltaState(BuildState lastBuildState, BuildState thisBuildState)
@NotNull public static DeltaState getInstance(@Nullable String deltaState)
deltaState
- Copyright © 2021 Atlassian Software Systems Pty Ltd. All rights reserved.