-
-
Notifications
You must be signed in to change notification settings - Fork 305
/
ClassUtils.java
331 lines (303 loc) · 9.75 KB
/
ClassUtils.java
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
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
package dev.utils.common;
import java.lang.reflect.Constructor;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.lang.reflect.TypeVariable;
import java.lang.reflect.WildcardType;
import java.util.Collection;
import java.util.Map;
import dev.utils.JCLogUtils;
/**
* detail: 类 ( Class ) 工具类
* @author Ttt
*/
public final class ClassUtils {
private ClassUtils() {
}
// 日志 TAG
private static final String TAG = ClassUtils.class.getSimpleName();
/**
* 根据类获取对象, 不再必须一个无参构造
* @param clazz {@link Class}
* @param <T> 泛型
* @return 初始化后的对象
*/
public static <T> T newInstance(final Class<T> clazz) {
if (clazz == null) return null;
try {
Constructor<?>[] cons = clazz.getDeclaredConstructors();
for (Constructor<?> c : cons) {
Class<?>[] cls = c.getParameterTypes();
if (cls.length == 0) {
c.setAccessible(true);
return (T) c.newInstance();
} else {
Object[] objects = new Object[cls.length];
for (int i = 0; i < cls.length; i++) {
objects[i] = getDefaultPrimitiveValue(cls[i]);
}
c.setAccessible(true);
return (T) c.newInstance(objects);
}
}
} catch (Exception e) {
JCLogUtils.eTag(TAG, e, "newInstance");
}
return null;
}
/**
* 获取 Class 原始类型值
* @param clazz {@link Class}
* @return 原始类型值
*/
public static Object getDefaultPrimitiveValue(final Class<?> clazz) {
if (clazz != null && clazz.isPrimitive()) {
return clazz == boolean.class ? false : 0;
}
return null;
}
// =
/**
* 获取 Object Class
* @param object {@link Object}
* @return Object Class
*/
public static Class<?> getClass(final Object object) {
return (object != null) ? object.getClass() : null;
}
/**
* 获取 Type Class
* @param type {@link Type}
* @return Type Class
*/
public static Class<?> getClass(final Type type) {
if (type == null) return null;
try {
if (type.getClass() == Class.class) {
return (Class<?>) type;
}
if (type instanceof ParameterizedType) {
return getClass(((ParameterizedType) type).getRawType());
}
if (type instanceof TypeVariable) {
Type boundType = ((TypeVariable<?>) type).getBounds()[0];
return (Class<?>) boundType;
}
if (type instanceof WildcardType) {
Type[] upperBounds = ((WildcardType) type).getUpperBounds();
if (upperBounds.length == 1) {
return getClass(upperBounds[0]);
}
}
} catch (Exception e) {
JCLogUtils.eTag(TAG, e, "getClass");
}
return Object.class;
}
/**
* 判断 Class 是否为原始类型
* @param clazz {@link Class}
* @return {@code true} yes, {@code false} no
*/
public static boolean isPrimitive(final Class<?> clazz) {
return (clazz != null && clazz.isPrimitive());
}
/**
* 判断是否 Collection 类型
* @param clazz {@link Class}
* @return {@code true} yes, {@code false} no
*/
public static boolean isCollection(final Class<?> clazz) {
return (clazz != null && Collection.class.isAssignableFrom(clazz));
}
/**
* 判断是否 Map 类型
* @param clazz {@link Class}
* @return {@code true} yes, {@code false} no
*/
public static boolean isMap(final Class<?> clazz) {
return (clazz != null && Map.class.isAssignableFrom(clazz));
}
/**
* 判断是否 Array 类型
* @param clazz {@link Class}
* @return {@code true} yes, {@code false} no
*/
public static boolean isArray(final Class<?> clazz) {
return (clazz != null && clazz.isArray());
}
/**
* 判断是否参数类型
* @param type {@link Type}
* @return {@code true} yes, {@code false} no
*/
public static boolean isGenericParamType(final Type type) {
if (type != null) {
if (type instanceof ParameterizedType) {
return true;
}
if (type instanceof Class) {
try {
Type superType = ((Class<?>) type).getGenericSuperclass();
return superType != Object.class && isGenericParamType(superType);
} catch (Exception e) {
JCLogUtils.eTag(TAG, e, "isGenericParamType");
}
}
}
return false;
}
/**
* 获取参数类型
* @param type {@link Type}
* @return {@link Type}
*/
public static Type getGenericParamType(final Type type) {
if (type != null) {
if (type instanceof ParameterizedType) {
return type;
}
if (type instanceof Class) {
try {
return getGenericParamType(((Class<?>) type).getGenericSuperclass());
} catch (Exception e) {
JCLogUtils.eTag(TAG, e, "getGenericParamType");
}
}
}
return type;
}
// =
/**
* 获取父类泛型类型
* @param object Object
* @return 泛型类型
*/
public static Type getGenericSuperclass(final Object object) {
return getGenericSuperclass(object, 0);
}
/**
* 获取父类泛型类型
* @param object Object
* @param pos 泛型参数索引
* @return 泛型类型
*/
public static Type getGenericSuperclass(
final Object object,
final int pos
) {
return getGenericSuperclass(getClass(object), pos);
}
// =
/**
* 获取父类泛型类型
* @param clazz {@link Class}
* @return 泛型类型
*/
public static Type getGenericSuperclass(final Class<?> clazz) {
return getGenericSuperclass(clazz, 0);
}
/**
* 获取父类泛型类型
* @param clazz {@link Class}
* @param pos 泛型参数索引
* @return 泛型类型
*/
public static Type getGenericSuperclass(
final Class<?> clazz,
final int pos
) {
if (clazz != null && pos >= 0) {
try {
return ((ParameterizedType) clazz.getGenericSuperclass())
.getActualTypeArguments()[pos];
} catch (Exception e) {
JCLogUtils.eTag(TAG, e, "getGenericSuperclass");
}
}
return null;
}
// =
/**
* 获取接口泛型类型
* @param object Object
* @param interfaceClazz 接口 Class
* @return 泛型类型
*/
public static Type getGenericInterfaces(
final Object object,
final Class<?> interfaceClazz
) {
return getGenericInterfaces(object, interfaceClazz, 0);
}
/**
* 获取接口泛型类型
* @param object Object
* @param interfaceClazz 接口 Class
* @param pos 泛型参数索引
* @return 泛型类型
*/
public static Type getGenericInterfaces(
final Object object,
final Class<?> interfaceClazz,
final int pos
) {
return getGenericInterfaces(getClass(object), interfaceClazz, pos);
}
// =
/**
* 获取接口泛型类型
* @param clazz {@link Class}
* @param interfaceClazz 接口 Class
* @return 泛型类型
*/
public static Type getGenericInterfaces(
final Class<?> clazz,
final Class<?> interfaceClazz
) {
return getGenericInterfaces(clazz, interfaceClazz, 0);
}
/**
* 获取接口泛型类型
* @param clazz {@link Class}
* @param interfaceClazz 接口 Class
* @param pos 泛型参数索引
* @return 泛型类型
*/
public static Type getGenericInterfaces(
final Class<?> clazz,
final Class<?> interfaceClazz,
final int pos
) {
if (clazz != null && interfaceClazz != null && pos >= 0) {
try {
// 获取接口类名
String iName = interfaceClazz.getName();
if ("".equals(iName)) return null;
// 获取接口泛型类型数组
Type[] types = clazz.getGenericInterfaces();
// 循环类型
for (Type type : types) {
if (type instanceof ParameterizedType) {
ParameterizedType parameterizedType = (ParameterizedType) type;
// 判断是否属于该接口
String rawType = parameterizedType.getRawType().toString();
// 判断接口包名是否一致
if (rawType.startsWith("interface ")) {
if (rawType.equals("interface " + iName)) {
return parameterizedType.getActualTypeArguments()[pos];
}
} else {
if (rawType.equals(iName)) {
return parameterizedType.getActualTypeArguments()[pos];
}
}
}
}
} catch (Exception e) {
JCLogUtils.eTag(TAG, e, "getGenericInterfaces");
}
}
return null;
}
}