public static enum IteratorTestOutput.TestOutcome extends Enum<IteratorTestOutput.TestOutcome>
| Enum Constant and Description |
|---|
COMPLETED
The IteratorTestCase completed, but the pass/fail should be determined by the other context.
|
FAILED
The IteratorTestCase proactively failed.
|
PASSED
The IteratorTestCase proactively passed.
|
| Modifier and Type | Method and Description |
|---|---|
static IteratorTestOutput.TestOutcome |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static IteratorTestOutput.TestOutcome[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final IteratorTestOutput.TestOutcome PASSED
public static final IteratorTestOutput.TestOutcome FAILED
public static final IteratorTestOutput.TestOutcome COMPLETED
public static IteratorTestOutput.TestOutcome[] values()
for (IteratorTestOutput.TestOutcome c : IteratorTestOutput.TestOutcome.values()) System.out.println(c);
public static IteratorTestOutput.TestOutcome 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 © 2011–2019 The Apache Software Foundation. All rights reserved.