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