c68dc4c512d8482f11d2c5ea3c65f6f898ff0312.svn-base
2.0 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
package com.espeed.ua;
public enum Manufacturer {
/**
* Unknow or rare manufacturer
*/
OTHER(1, "Other"),
/**
* Microsoft Corporation
*/
MICROSOFT(2, "Microsoft Corporation"),
/**
* Apple Inc.
*/
APPLE(3, "Apple Inc."),
/**
* Sun Microsystems, Inc.
*/
SUN(4, "Sun Microsystems, Inc."),
/**
* Symbian Ltd.
*/
SYMBIAN(5, "Symbian Ltd."),
/**
* Nokia Corporation
*/
NOKIA(6, "Nokia Corporation"),
/**
* Research In Motion Limited
*/
BLACKBERRY(7, "Research In Motion Limited"),
/**
* Hewlett-Packard Company, previously Palm
*/
HP(8, "Hewlett Packard"),
/**
* Sony Ericsson Mobile Communications AB
*/
SONY_ERICSSON(9, "Sony Ericsson Mobile Communications AB"),
/**
* Samsung Electronics
*/
SAMSUNG(20, "Samsung Electronics"),
/**
* Sony Computer Entertainment, Inc.
*/
SONY(10, "Sony Computer Entertainment, Inc."),
/**
* Nintendo
*/
NINTENDO(11, "Nintendo"),
/**
* Opera Software ASA
*/
OPERA(12, "Opera Software ASA"),
/**
* Mozilla Foundation
*/
MOZILLA(13, "Mozilla Foundation"),
/**
* Google Inc.
*/
GOOGLE(15, "Google Inc."),
/**
* CompuServe Interactive Services, Inc.
*/
COMPUSERVE(16, "CompuServe Interactive Services, Inc."),
/**
* Yahoo Inc.
*/
YAHOO(17, "Yahoo Inc."),
/**
* AOL LLC.
*/
AOL(18, "AOL LLC."),
/**
* Mail.com Media Corporation
*/
MMC(19, "Mail.com Media Corporation"),
/**
* Amazon.com, Inc.
*/
AMAZON(24, "Amazon.com, Inc."),
/**
* Roku sells home digital media products
*/
ROKU(21, "Roku, Inc."),
/**
* Adobe Systems Inc.
*/
ADOBE(23, "Adobe Systems Inc."),
/**
* Canonical Ltd.
*/
CONONICAL(25,"Canonical Ltd."),
/**
* Linux Foundation, owner of the Tizen Project
*/
LINUX_FOUNDATION(26,"Linux Foundation");
private final short id;
private final String name;
private Manufacturer(int id, String name) {
this.id = (byte) id;
this.name = name;
}
/**
* @return the id
*/
public short getId() {
return id;
}
/**
* @return the name
*/
public String getName() {
return name;
}
}