Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Z
zgqc
Overview
Overview
Details
Activity
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
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
hufengqin
zgqc
Commits
400d9120
Commit
400d9120
authored
Mar 21, 2023
by
hufengqin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
数据库代码自动生成
parent
56acdc3e
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
76 additions
and
0 deletions
+76
-0
zgqc-common/src/main/java/com/panda/zgqc/common/support/ArrayCollector.java
+76
-0
No files found.
zgqc-common/src/main/java/com/panda/zgqc/common/support/ArrayCollector.java
0 → 100644
View file @
400d9120
/*
*
* Copyright (c) 2020-2022, Java知识图谱 (http://www.altitude.xin).
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
*/
package
com
.
panda
.
zgqc
.
common
.
support
;
import
java.lang.reflect.Array
;
import
java.util.ArrayList
;
import
java.util.Collections
;
import
java.util.List
;
import
java.util.Set
;
import
java.util.function.BiConsumer
;
import
java.util.function.BinaryOperator
;
import
java.util.function.Function
;
import
java.util.function.Supplier
;
import
java.util.stream.Collector
;
/**
* 数组收集器
*
* @author <a href="http://www.altitude.xin" target="_blank">Java知识图谱</a>
* @author <a href="https://gitee.com/decsa/ucode-cms-vue" target="_blank">UCode CMS</a>
* @author <a href="https://space.bilibili.com/1936685014" target="_blank">B站视频</a>
**/
public
class
ArrayCollector
<
T
>
implements
Collector
<
T
,
List
<
T
>,
T
[]>
{
private
static
final
Set
<
Characteristics
>
CHARACTERISTICS
=
Collections
.
emptySet
();
private
final
Class
<
T
>
elementType
;
public
ArrayCollector
(
final
Class
<
T
>
clazz
)
{
this
.
elementType
=
clazz
;
}
@Override
public
BiConsumer
<
List
<
T
>,
T
>
accumulator
()
{
return
List:
:
add
;
}
@Override
public
Set
<
Characteristics
>
characteristics
()
{
return
CHARACTERISTICS
;
}
@Override
public
BinaryOperator
<
List
<
T
>>
combiner
()
{
return
(
left
,
right
)
->
{
left
.
addAll
(
right
);
return
left
;
};
}
@Override
@SuppressWarnings
(
"unchecked"
)
public
Function
<
List
<
T
>,
T
[]>
finisher
()
{
return
e
->
e
.
toArray
((
T
[])
Array
.
newInstance
(
elementType
,
e
.
size
()));
}
@Override
public
Supplier
<
List
<
T
>>
supplier
()
{
return
ArrayList:
:
new
;
}
}
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