public enum RenderingEngineFamily extends java.lang.Enum<RenderingEngineFamily>
Enum Constant and Description |
---|
BLINK
BLINK is the rendering engine of modenr Chrome and Opera browsers.
|
EDGE
Edge is the rendering engine of modern IEs, starting at version 12.
|
GECKO
Gecko is the rendering engine of Firefox.
|
KHTML
KHTML is for Konqueror, the browser for KDE.
|
NONE
No rendering engine could be detected.
|
OTHER
The rendering engine specifics are unknown.
|
PRESTO
Presto is the historical rendering engine of Opera.
|
TEXT
Rendering engine used by text-based browsers such as Lynx, Links or ELinks.
|
TRIDENT
Trident is the rendering engine of Internet Explorer
|
UNKNOWN
The rendering engine specifics are unknown.
|
WEBKIT
Webkit if a fork of KHTML, used in Safari and old Chromes.
|
Modifier and Type | Method and Description |
---|---|
java.lang.String |
getLabel() |
boolean |
isTridentBased() |
boolean |
isWebkitBased() |
java.lang.String |
toString() |
static RenderingEngineFamily |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static RenderingEngineFamily[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final RenderingEngineFamily BLINK
public static final RenderingEngineFamily EDGE
public static final RenderingEngineFamily KHTML
public static final RenderingEngineFamily TRIDENT
public static final RenderingEngineFamily WEBKIT
public static final RenderingEngineFamily PRESTO
public static final RenderingEngineFamily GECKO
public static final RenderingEngineFamily TEXT
public static final RenderingEngineFamily UNKNOWN
public static final RenderingEngineFamily OTHER
public static final RenderingEngineFamily NONE
public static RenderingEngineFamily[] values()
for (RenderingEngineFamily c : RenderingEngineFamily.values()) System.out.println(c);
public static RenderingEngineFamily 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 namejava.lang.NullPointerException
- if the argument is nullpublic boolean isWebkitBased()
public boolean isTridentBased()
public java.lang.String toString()
toString
in class java.lang.Enum<RenderingEngineFamily>
public java.lang.String getLabel()