public enum RenderingEngine extends Enum<RenderingEngine>
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 |
---|---|
static RenderingEngine |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static RenderingEngine[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderingEngine TRIDENT
public static final RenderingEngine WORD
public static final RenderingEngine GECKO
public static final RenderingEngine WEBKIT
public static final RenderingEngine PRESTO
public static final RenderingEngine MOZILLA
public static final RenderingEngine KHTML
public static final RenderingEngine OTHER
public static RenderingEngine[] values()
for (RenderingEngine c : RenderingEngine.values()) System.out.println(c);
public static RenderingEngine 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 © 2018. All rights reserved.