public static enum TestResultAnalyzer.ReturnType extends Enum<TestResultAnalyzer.ReturnType>
| Enum Constant and Description |
|---|
FOUND |
NOT_FOUND |
SYNTAX_NOK |
SYNTAX_OK |
| Modifier and Type | Method and Description |
|---|---|
static TestResultAnalyzer.ReturnType |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static TestResultAnalyzer.ReturnType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final TestResultAnalyzer.ReturnType SYNTAX_OK
public static final TestResultAnalyzer.ReturnType SYNTAX_NOK
public static final TestResultAnalyzer.ReturnType FOUND
public static final TestResultAnalyzer.ReturnType NOT_FOUND
public static TestResultAnalyzer.ReturnType[] values()
for (TestResultAnalyzer.ReturnType c : TestResultAnalyzer.ReturnType.values()) System.out.println(c);
public static TestResultAnalyzer.ReturnType 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 © 2004-2015. All Rights Reserved.