-
Notifications
You must be signed in to change notification settings - Fork 11
/
MethodFieldComparator.java
176 lines (150 loc) · 4.17 KB
/
MethodFieldComparator.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
package org.hy.common.comparate;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.util.Comparator;
import org.hy.common.StringHelp;
/**
* "方法"类的排序比较器
*
* 主要用于,将"方法"按方法名称排序,是按方法对应的成员属性名称在类中的编程编写的顺序排序的。
*
* @author ZhengWei(HY)
* @createDate 2018-04-25
* @version v1.0
*/
public class MethodFieldComparator implements Comparator<Method>
{
private Field [] fields;
public MethodFieldComparator(Field [] i_Fileds)
{
this.fields = i_Fileds;
}
/**
* 查询与方法名称一样(不区分大小写)的成员属性的位置
*
* @author ZhengWei(HY)
* @createDate 2018-04-25
* @version v1.0
*
* @param i_Method
* @return 返回 -1 表示:没有找到
*/
private int findFieldIndex(Method i_Method)
{
String v_MethodName = i_Method.getName();
int v_Index = -1;
// getter
if ( i_Method.getParameterTypes().length <= 0 )
{
if ( v_MethodName.startsWith("get") )
{
v_Index = this.findFieldIndex(StringHelp.toLowerCaseByFirst(v_MethodName.substring(3)));
}
else if ( v_MethodName.startsWith("is") )
{
v_Index = this.findFieldIndex(v_MethodName);
if ( v_Index < 0 )
{
v_Index = this.findFieldIndex(StringHelp.toLowerCaseByFirst(v_MethodName.substring(2)));
}
}
else
{
v_Index = this.findFieldIndex(v_MethodName);
}
}
// setter
else
{
if ( v_MethodName.startsWith("set") )
{
v_Index = this.findFieldIndex(StringHelp.toLowerCaseByFirst(v_MethodName.substring(3)));
}
else
{
v_Index = this.findFieldIndex(v_MethodName);
}
}
return v_Index;
}
/**
* 查询名称一样(不区分大小写)的成员属性的位置。
*
* 先按区分大小写精确匹配,找不时再按不区分大小写模糊匹配。
*
* @author ZhengWei(HY)
* @createDate 2018-04-25
* @version v1.0
*
* @param i_Name
* @return 返回 -1 表示:没有找到
*/
private int findFieldIndex(String i_Name)
{
for (int i=0; i<this.fields.length; i++)
{
if ( this.fields[i].getName().equals(i_Name) )
{
return i;
}
}
for (int i=0; i<this.fields.length; i++)
{
if ( this.fields[i].getName().equalsIgnoreCase(i_Name) )
{
return i;
}
}
return -1;
}
public int compare(Method i_Method1 ,Method i_Method2)
{
if ( i_Method1 == i_Method2 )
{
return 0;
}
else if ( i_Method1 == null )
{
return 1;
}
else if ( i_Method2 == null )
{
return -1;
}
else
{
int v_Index1 = findFieldIndex(i_Method1);
int v_Index2 = findFieldIndex(i_Method2);
if ( v_Index1 < 0 )
{
if ( v_Index2 < 0 )
{
return i_Method1.getName().compareTo(i_Method2.getName());
}
else
{
return 1;
}
}
else if ( v_Index2 < 0 )
{
return -1;
}
else
{
if ( v_Index1 < v_Index2 )
{
return -1;
}
else if ( v_Index1 > v_Index2 )
{
return 1;
}
else
{
return 0;
}
}
}
}
}