forked from json-iterator/java
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParameterizedTypeImpl.java
More file actions
87 lines (73 loc) · 2.79 KB
/
ParameterizedTypeImpl.java
File metadata and controls
87 lines (73 loc) · 2.79 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
package com.jsoniter.spi;
import java.lang.reflect.ParameterizedType;
import java.lang.reflect.Type;
import java.util.Arrays;
public class ParameterizedTypeImpl implements ParameterizedType {
private final Type[] actualTypeArguments;
private final Type ownerType;
private final Type rawType;
public ParameterizedTypeImpl(Type[] actualTypeArguments, Type ownerType, Type rawType){
this.actualTypeArguments = actualTypeArguments;
this.ownerType = ownerType;
this.rawType = rawType;
}
public Type[] getActualTypeArguments() {
return actualTypeArguments;
}
public Type getOwnerType() {
return ownerType;
}
public Type getRawType() {
return rawType;
}
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ParameterizedTypeImpl that = (ParameterizedTypeImpl) o;
// Probably incorrect - comparing Object[] arrays with Arrays.equals
if (!Arrays.equals(actualTypeArguments, that.actualTypeArguments)) return false;
if (ownerType != null ? !ownerType.equals(that.ownerType) : that.ownerType != null) return false;
return rawType != null ? rawType.equals(that.rawType) : that.rawType == null;
}
@Override
public int hashCode() {
int result = Arrays.hashCode(actualTypeArguments);
result = 31 * result + (ownerType != null ? ownerType.hashCode() : 0);
result = 31 * result + (rawType != null ? rawType.hashCode() : 0);
return result;
}
@Override
public String toString() {
String rawTypeName = rawType.toString();
if (rawType instanceof Class) {
Class clazz = (Class) rawType;
rawTypeName = clazz.getName();
}
return "ParameterizedTypeImpl{" +
"actualTypeArguments=" + Arrays.toString(actualTypeArguments) +
", ownerType=" + ownerType +
", rawType=" + rawTypeName +
'}';
}
public static boolean isSameClass(Type type, Class clazz) {
if (type == clazz) {
return true;
}
if (type instanceof ParameterizedType) {
ParameterizedType pType = (ParameterizedType) type;
return pType.getRawType() == clazz;
}
return false;
}
public static Type useImpl(Type type, Class clazz) {
if (type instanceof Class) {
return clazz;
}
if (type instanceof ParameterizedType) {
ParameterizedType pType = (ParameterizedType) type;
return new ParameterizedTypeImpl(pType.getActualTypeArguments(), pType.getOwnerType(), clazz);
}
throw new JsonException("can not change impl for: " + type);
}
}