public enum Platform extends Enum<Platform>
For HtmlUnit, we distinguish among three categories of failures:
HtmlUnitBug
: Gwt tests that are failing due to a bug in HtmlUnit.
Ideally, these must be accompanied by a bug report on the HtmlUnit issue
tracker.
HtmlUnitLayout
: Gwt tests that test layout. HtmlUnit does not use
a layout engine, though some simple layout tests do pass with HtmlUnit.
HtmlUnitUnknown
: Gwt tests whose failures have not been
investigated yet.Enum Constant and Description |
---|
Devel |
HtmlUnitBug |
HtmlUnitLayout |
HtmlUnitUnknown |
Prod |
Modifier and Type | Method and Description |
---|---|
static Platform |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Platform[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
compareTo, createValueOfMap, equals, getDeclaringClass, hashCode, name, ordinal, toString, valueOf, valueOf
$isInstance
public static final Platform Devel
public static final Platform HtmlUnitBug
public static final Platform HtmlUnitLayout
public static final Platform HtmlUnitUnknown
public static final Platform Prod
public static Platform[] values()
for (Platform c : Platform.values()) System.out.println(c);
public static Platform 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 © 2016. All rights reserved.