Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Sign in / Register
Toggle navigation
Y
yzg-util
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
YZG
yzg-util
Commits
00b53035
Commit
00b53035
authored
Apr 04, 2019
by
yanzg
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
扩展
parent
0815dfd7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
24 additions
and
10 deletions
+24
-10
ObjectHelper.java
...src/main/java/com/yanzuoguang/util/base/ObjectHelper.java
+24
-10
No files found.
yzg-util-base/src/main/java/com/yanzuoguang/util/base/ObjectHelper.java
View file @
00b53035
...
@@ -238,10 +238,27 @@ public class ObjectHelper {
...
@@ -238,10 +238,27 @@ public class ObjectHelper {
}
}
}
}
/**
* 获取标记
*
* @param typeCache 类型
* @param tag 标记
* @param fromName 来源名称
* @return
*/
private
static
MethodField
getField
(
HashMap
<
String
,
MethodField
>
typeCache
,
String
tag
,
String
fromName
)
{
String
toName
=
fromName
.
toLowerCase
().
replace
(
"_"
,
""
);
if
(!
typeCache
.
containsKey
(
toName
))
{
toName
=
toName
.
substring
(
tag
.
length
());
return
getField
(
typeCache
,
toName
);
}
return
typeCache
.
get
(
toName
);
}
/***
/***
* 获取缓存中的字段
* 获取缓存中的字段
* @param typeCache
* @param typeCache
类型
* @param fromName
* @param fromName
来源名称
* @return
* @return
*/
*/
private
static
MethodField
getField
(
HashMap
<
String
,
MethodField
>
typeCache
,
String
fromName
)
{
private
static
MethodField
getField
(
HashMap
<
String
,
MethodField
>
typeCache
,
String
fromName
)
{
...
@@ -297,8 +314,7 @@ public class ObjectHelper {
...
@@ -297,8 +314,7 @@ public class ObjectHelper {
if
(
method
.
getParameterTypes
().
length
!=
1
)
{
if
(
method
.
getParameterTypes
().
length
!=
1
)
{
continue
;
continue
;
}
}
String
toName
=
methodNameSource
.
substring
(
"set"
.
length
());
MethodField
obj
=
getField
(
typeCache
,
"set"
,
methodNameSource
);
MethodField
obj
=
getField
(
typeCache
,
toName
);
if
(
obj
.
setMethod
==
null
)
{
if
(
obj
.
setMethod
==
null
)
{
obj
.
setMethod
=
method
;
obj
.
setMethod
=
method
;
}
}
...
@@ -306,8 +322,7 @@ public class ObjectHelper {
...
@@ -306,8 +322,7 @@ public class ObjectHelper {
if
(
method
.
getReturnType
()
==
null
)
{
if
(
method
.
getReturnType
()
==
null
)
{
continue
;
continue
;
}
}
String
toName
=
methodNameSource
.
substring
(
"get"
.
length
());
MethodField
obj
=
getField
(
typeCache
,
"get"
,
methodNameSource
);
MethodField
obj
=
getField
(
typeCache
,
toName
);
if
(
obj
.
getMethod
==
null
)
{
if
(
obj
.
getMethod
==
null
)
{
obj
.
getMethod
=
method
;
obj
.
getMethod
=
method
;
}
}
...
@@ -315,8 +330,7 @@ public class ObjectHelper {
...
@@ -315,8 +330,7 @@ public class ObjectHelper {
if
(
method
.
getReturnType
()
==
null
)
{
if
(
method
.
getReturnType
()
==
null
)
{
continue
;
continue
;
}
}
String
toName
=
methodNameSource
.
substring
(
"is"
.
length
());
MethodField
obj
=
getField
(
typeCache
,
"is"
,
methodNameSource
);
MethodField
obj
=
getField
(
typeCache
,
toName
);
if
(
obj
.
getMethod
==
null
)
{
if
(
obj
.
getMethod
==
null
)
{
obj
.
getMethod
=
method
;
obj
.
getMethod
=
method
;
}
}
...
@@ -396,8 +410,8 @@ public class ObjectHelper {
...
@@ -396,8 +410,8 @@ public class ObjectHelper {
/**
/**
* 对象转换(一般将map转为javabean)
* 对象转换(一般将map转为javabean)
*
*
* @param to
转换后的对象
* @param to 转换后的对象
* @param from
要转换的对象
* @param from 要转换的对象
* @return 转换后的值 to
* @return 转换后的值 to
*/
*/
public
static
Object
writeWithToClass
(
Object
to
,
Object
from
)
{
public
static
Object
writeWithToClass
(
Object
to
,
Object
from
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment