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
| package chat.module.friendcircle;
|
| public enum MediaType {
|
| Vedio, Image, Unknown;
|
| public static MediaType parse(String code) {
| if (code == null) {
| return Unknown;
| }
|
| code = code.toLowerCase();
|
| if ("vedio".equals(code)) {
| return Vedio;
| }
| else if ("image".equals(code)) {
| return Image;
| }
|
| return Unknown;
| }
|
| public static MediaType parse(Integer type) {
| if (type == null) {
| return Unknown;
| }
|
| if (type == 1) {
| return Image;
| }
| else if (type == 2) {
| return Vedio;
| }
|
| return Unknown;
| }
|
| public int toIntCode() {
| if (Image == this) {
| return 1;
| }
| else if (Vedio == this) {
| return 2;
| }
| else {
| return -1;
| }
| }
|
| }
|
|