RenderingEngine.java
1.3 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
package com.espeed.ua;
public enum RenderingEngine {
/**
* EdgeHTML is a proprietary layout engine developed for the Microsoft Edge web browser, developed by Microsoft.
*/
EDGE_HTML("EdgeHTML"),
/**
* Trident is the the Microsoft layout engine, mainly used by Internet Explorer.
*/
TRIDENT("Trident"),
/**
* HTML parsing and rendering engine of Microsoft Office Word, used by some other products of the Office suite instead of Trident.
*/
WORD("Microsoft Office Word"),
/**
* Open source and cross platform layout engine, used by Firefox and many other browsers.
*/
GECKO("Gecko"),
/**
* Layout engine based on KHTML, used by Safari, Chrome and some other browsers.
*/
WEBKIT("WebKit"),
/**
* Proprietary layout engine by Opera Software ASA
*/
PRESTO("Presto"),
/**
* Original layout engine of the Mozilla browser and related products. Predecessor of Gecko.
*/
MOZILLA("Mozilla"),
/**
* Layout engine of the KDE project
*/
KHTML("KHTML"),
/**
* Other or unknown layout engine.
*/
BLINK("Blink"),
/**
* Layout engine developed as part ofthe Chromium project. Fored from WebKit.
*/
OTHER("Other");
String name;
private RenderingEngine(String name) {
this.name = name;
}
public String getName() {
return name;
}
}