JoinGroupResult.java
4.45 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
// Generated by the protocol buffer compiler. DO NOT EDIT!
// source: chat.proto
package com.zhongweixian.entity;
/**
* <pre>
**
* 加入群组申请的结果
* </pre>
*
* Protobuf enum {@code src.main.proto.JoinGroupResult}
*/
public enum JoinGroupResult
implements com.google.protobuf.ProtocolMessageEnum {
/**
* <pre>
*不允许进入,原因为其它
* </pre>
*
* <code>JOIN_GROUP_RESULT_UNKNOW = 0;</code>
*/
JOIN_GROUP_RESULT_UNKNOW(0),
/**
* <pre>
*允许进入
* </pre>
*
* <code>JOIN_GROUP_RESULT_OK = 1;</code>
*/
JOIN_GROUP_RESULT_OK(1),
/**
* <pre>
*组不存在
* </pre>
*
* <code>JOIN_GROUP_RESULT_NOT_EXIST = 2;</code>
*/
JOIN_GROUP_RESULT_NOT_EXIST(2),
/**
* <pre>
*组满
* </pre>
*
* <code>JOIN_GROUP_RESULT_GROUP_FULL = 3;</code>
*/
JOIN_GROUP_RESULT_GROUP_FULL(3),
/**
* <pre>
*在黑名单中
* </pre>
*
* <code>JOIN_GROUP_RESULT_IN_BACKLIST = 4;</code>
*/
JOIN_GROUP_RESULT_IN_BACKLIST(4),
/**
* <pre>
*被踢
* </pre>
*
* <code>JOIN_GROUP_RESULT_TAKEOUTED = 5;</code>
*/
JOIN_GROUP_RESULT_TAKEOUTED(5),
UNRECOGNIZED(-1),
;
/**
* <pre>
*不允许进入,原因为其它
* </pre>
*
* <code>JOIN_GROUP_RESULT_UNKNOW = 0;</code>
*/
public static final int JOIN_GROUP_RESULT_UNKNOW_VALUE = 0;
/**
* <pre>
*允许进入
* </pre>
*
* <code>JOIN_GROUP_RESULT_OK = 1;</code>
*/
public static final int JOIN_GROUP_RESULT_OK_VALUE = 1;
/**
* <pre>
*组不存在
* </pre>
*
* <code>JOIN_GROUP_RESULT_NOT_EXIST = 2;</code>
*/
public static final int JOIN_GROUP_RESULT_NOT_EXIST_VALUE = 2;
/**
* <pre>
*组满
* </pre>
*
* <code>JOIN_GROUP_RESULT_GROUP_FULL = 3;</code>
*/
public static final int JOIN_GROUP_RESULT_GROUP_FULL_VALUE = 3;
/**
* <pre>
*在黑名单中
* </pre>
*
* <code>JOIN_GROUP_RESULT_IN_BACKLIST = 4;</code>
*/
public static final int JOIN_GROUP_RESULT_IN_BACKLIST_VALUE = 4;
/**
* <pre>
*被踢
* </pre>
*
* <code>JOIN_GROUP_RESULT_TAKEOUTED = 5;</code>
*/
public static final int JOIN_GROUP_RESULT_TAKEOUTED_VALUE = 5;
public final int getNumber() {
if (this == UNRECOGNIZED) {
throw new java.lang.IllegalArgumentException(
"Can't get the number of an unknown enum value.");
}
return value;
}
/**
* @deprecated Use {@link #forNumber(int)} instead.
*/
@java.lang.Deprecated
public static JoinGroupResult valueOf(int value) {
return forNumber(value);
}
public static JoinGroupResult forNumber(int value) {
switch (value) {
case 0: return JOIN_GROUP_RESULT_UNKNOW;
case 1: return JOIN_GROUP_RESULT_OK;
case 2: return JOIN_GROUP_RESULT_NOT_EXIST;
case 3: return JOIN_GROUP_RESULT_GROUP_FULL;
case 4: return JOIN_GROUP_RESULT_IN_BACKLIST;
case 5: return JOIN_GROUP_RESULT_TAKEOUTED;
default: return null;
}
}
public static com.google.protobuf.Internal.EnumLiteMap<JoinGroupResult>
internalGetValueMap() {
return internalValueMap;
}
private static final com.google.protobuf.Internal.EnumLiteMap<
JoinGroupResult> internalValueMap =
new com.google.protobuf.Internal.EnumLiteMap<JoinGroupResult>() {
public JoinGroupResult findValueByNumber(int number) {
return JoinGroupResult.forNumber(number);
}
};
public final com.google.protobuf.Descriptors.EnumValueDescriptor
getValueDescriptor() {
return getDescriptor().getValues().get(ordinal());
}
public final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptorForType() {
return getDescriptor();
}
public static final com.google.protobuf.Descriptors.EnumDescriptor
getDescriptor() {
return com.zhongweixian.entity.Chat.getDescriptor()
.getEnumTypes().get(2);
}
private static final JoinGroupResult[] VALUES = values();
public static JoinGroupResult valueOf(
com.google.protobuf.Descriptors.EnumValueDescriptor desc) {
if (desc.getType() != getDescriptor()) {
throw new java.lang.IllegalArgumentException(
"EnumValueDescriptor is not for this type.");
}
if (desc.getIndex() == -1) {
return UNRECOGNIZED;
}
return VALUES[desc.getIndex()];
}
private final int value;
private JoinGroupResult(int value) {
this.value = value;
}
// @@protoc_insertion_point(enum_scope:src.main.proto.JoinGroupResult)
}