public static enum TestCase.Status extends Enum<TestCase.Status>
| Modifier and Type | Method and Description | 
|---|---|
| static TestCase.Status | of(String s) | 
| static TestCase.Status | valueOf(String name)Returns the enum constant of this type with the specified name. | 
| static TestCase.Status[] | values()Returns an array containing the constants of this enum type, in
the order they are declared. | 
public static final TestCase.Status OK
public static final TestCase.Status FAILURE
public static final TestCase.Status ERROR
public static final TestCase.Status SKIPPED
public static TestCase.Status[] values()
for (TestCase.Status c : TestCase.Status.values()) System.out.println(c);
public static TestCase.Status 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 TestCase.Status of(@Nullable String s)
Copyright © 2009–2016 SonarSource. All rights reserved.