public static enum SpecTest.STATUS extends Enum<SpecTest.STATUS>
Enum Constant and Description |
---|
WG_APPROVED
WG_APPROVED - working group has approved this test case
|
WG_CLARIFICATION
WG_CLARIFICATION - requires further clarification from the working group
|
WG_DEPRECATED
WG_DEPRECATED - no longer recommended by WG
|
WG_EXTENSION
WG_EXTENSION - valuable test case but not part of the WG approved set
|
WG_PENDING
WG_PENDING (default) - no official recommendation from the WG
supporting the specification being tested by this test suite.
|
Modifier and Type | Method and Description |
---|---|
static SpecTest.STATUS |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static SpecTest.STATUS[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final SpecTest.STATUS WG_PENDING
public static final SpecTest.STATUS WG_APPROVED
public static final SpecTest.STATUS WG_DEPRECATED
public static final SpecTest.STATUS WG_EXTENSION
public static final SpecTest.STATUS WG_CLARIFICATION
public static SpecTest.STATUS[] values()
for (SpecTest.STATUS c : SpecTest.STATUS.values()) System.out.println(c);
public static SpecTest.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 nullCopyright © 2014 World Wide Web Consortium (W3C). All rights reserved.