|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||
java.lang.Objectjava.lang.Enum<RenderingEngine>
nl.bitwalker.useragentutils.RenderingEngine
public enum RenderingEngine
Enum constants classifying the different types of rendering engines which are being used by browsers.
| Enum Constant Summary | |
|---|---|
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. |
|
| Method Summary | |
|---|---|
static RenderingEngine |
valueOf(java.lang.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. |
| Methods inherited from class java.lang.Enum |
|---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Enum Constant Detail |
|---|
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
| Method Detail |
|---|
public static RenderingEngine[] values()
for (RenderingEngine c : RenderingEngine.values()) System.out.println(c);
public static RenderingEngine valueOf(java.lang.String name)
name - the name of the enum constant to be returned.
java.lang.IllegalArgumentException - if this enum type has no constant
with the specified name
java.lang.NullPointerException - if the argument is null
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD | ||||||||