public static enum SpecTest.METHOD extends Enum<SpecTest.METHOD>
Enum Constant and Description |
---|
AUTOMATED
AUTOMATED - implementation complete
|
CLIENT_ONLY
CLIENT_ONLY - test is only client-side, this test suite doesn't test it.
|
INDIRECT
INDIRECT - other test cases indirectly cover this test case
|
MANUAL
MANUAL - server test but not automated
|
NOT_IMPLEMENTED
NOT_IMPLEMENTED (default) - possible to implement, just not done
|
Modifier and Type | Method and Description |
---|---|
static SpecTest.METHOD |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpecTest.METHOD[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecTest.METHOD NOT_IMPLEMENTED
public static final SpecTest.METHOD AUTOMATED
public static final SpecTest.METHOD MANUAL
public static final SpecTest.METHOD CLIENT_ONLY
public static final SpecTest.METHOD INDIRECT
public static SpecTest.METHOD[] values()
for (SpecTest.METHOD c : SpecTest.METHOD.values()) System.out.println(c);
public static SpecTest.METHOD 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 © 2014 World Wide Web Consortium (W3C). All rights reserved.