public enum Engine extends Enum<Engine>
| Enum Constant and Description |
|---|
Gecko
Open source and cross platform layout engine, used by Firefox and many
other browsers.
|
Khtml
Layout engine of the KDE project
|
Mozilla
Original layout engine of the Mozilla browser and related products.
|
Other
Other or unknown layout engine.
|
Presto
Proprietary layout engine by Opera Software ASA
|
Trident
Trident is the the Microsoft layout engine, mainly used by Internet
Explorer.
|
WebKit
Layout engine based on KHTML, used by Safari, Chrome and some other
browsers.
|
Word
HTML parsing and rendering engine of Microsoft Office Word, used by some
other products of the Office suite instead of Trident.
|
| Modifier and Type | Method and Description |
|---|---|
List<BrowserCategory> |
getBrowserCategories() |
static Engine |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static Engine[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final Engine Trident
public static final Engine Gecko
public static final Engine WebKit
public static final Engine Presto
public static final Engine Mozilla
public static final Engine Khtml
public static final Engine Word
public static final Engine Other
public static Engine[] values()
for (Engine c : Engine.values()) System.out.println(c);
public static Engine 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 nullpublic List<BrowserCategory> getBrowserCategories()
Copyright © 2005–2018 The Beangle Software. All rights reserved.