Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
kernel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
af3
kernel
Commits
661bbdf6
Commit
661bbdf6
authored
7 years ago
by
Alexander Diewald
Browse files
Options
Downloads
Patches
Plain Diff
Common: LambdaUtils: Add simple filterByType method.
refs 3203
parent
5c29401c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
org.fortiss.tooling.common/trunk/src/org/fortiss/tooling/common/util/LambdaUtils.java
+27
-9
27 additions, 9 deletions
...runk/src/org/fortiss/tooling/common/util/LambdaUtils.java
with
27 additions
and
9 deletions
org.fortiss.tooling.common/trunk/src/org/fortiss/tooling/common/util/LambdaUtils.java
+
27
−
9
View file @
661bbdf6
...
...
@@ -19,6 +19,7 @@ import static java.util.stream.Collectors.toList;
import
static
java
.
util
.
stream
.
StreamSupport
.
stream
;
import
static
org
.
conqat
.
lib
.
commons
.
reflect
.
ReflectionUtils
.
isInstanceOfAll
;
import
java.util.ArrayList
;
import
java.util.Collection
;
import
java.util.Iterator
;
import
java.util.List
;
...
...
@@ -128,8 +129,8 @@ public class LambdaUtils {
* Filter to apply.
* @return Filtered collection as a List.
*/
public
static
<
T
,
S
extends
T
>
List
<
T
>
filterList
(
Collection
<
S
>
collection
,
Predicate
<
S
>
filter
)
{
public
static
<
T
,
S
extends
T
>
List
<
T
>
filterList
(
Collection
<
S
>
collection
,
Predicate
<
S
>
filter
)
{
return
filterStream
(
collection
,
filter
).
collect
(
Collectors
.
toList
());
}
...
...
@@ -143,8 +144,8 @@ public class LambdaUtils {
* @return Sub-{@link Collection} of {@code types} that is derived from all {@code classifiers}.
*/
@SafeVarargs
public
static
<
T
,
C
>
Collection
<
Class
<?
extends
T
>>
filterTypes
(
Collection
<
Class
<?
extends
T
>>
types
,
Class
<?
extends
C
>...
classifiers
)
{
public
static
<
T
,
C
>
Collection
<
Class
<?
extends
T
>>
filterTypes
(
Collection
<
Class
<?
extends
T
>>
types
,
Class
<?
extends
C
>...
classifiers
)
{
// Checks if a single type is of the given single classifier type and returns the
// result as a Boolean. Cannot be implemented as a BiPredicate since "currying" / partial
...
...
@@ -154,9 +155,8 @@ public class LambdaUtils {
// Applies isOfType for all provided "classifiers" to a single type. The "orElse"
// handles the case that no "classifiers" have been provided.
Predicate
<
Class
<?
extends
T
>>
typeClassifierFilter
=
t
->
Stream
.
of
(
classifiers
).
map
(
c
->
isOfClassifier
.
apply
(
t
,
c
))
.
reduce
((
b1
,
b2
)
->
b1
&&
b2
).
orElse
(
true
);
Predicate
<
Class
<?
extends
T
>>
typeClassifierFilter
=
t
->
Stream
.
of
(
classifiers
)
.
map
(
c
->
isOfClassifier
.
apply
(
t
,
c
)).
reduce
((
b1
,
b2
)
->
b1
&&
b2
).
orElse
(
true
);
return
types
.
stream
().
filter
(
typeClassifierFilter
).
collect
(
toList
());
}
...
...
@@ -198,6 +198,24 @@ public class LambdaUtils {
return
outCol
;
}
/**
* Filters the elements of the given {@code inCol} collection based on their type by the given
* {@code typeFilter}. The filtered elements are returned in an ArrayList.
*
* @param inCol
* Collection to be filtered.
* @param typeFilter
* Type for which the elements shall be filtered.
* @return Collection of elements of the given {@code filterType} (same as {@code outCol}).
*/
public
static
<
S
,
T
extends
S
,
U
extends
T
>
Collection
<
T
>
filterByType
(
Collection
<
S
>
inCol
,
Class
<
U
>
typeFilter
)
{
List
<
T
>
outCol
=
new
ArrayList
<>();
filterStream
(
inCol
,
e
->
typeFilter
.
isAssignableFrom
(
e
.
getClass
())).
map
(
typeFilter:
:
cast
)
.
forEach
(
e
->
outCol
.
add
(
e
));
return
outCol
;
}
/**
* Applies the given {@code action} to each element of the given {@code inputCollection}.
*
...
...
@@ -300,8 +318,8 @@ public class LambdaUtils {
* Supplier for the output {@link Collection}, e.g. TreeSet::new.
* @return Collection of mapping results.
*/
public
static
<
S
,
T
,
R
extends
Stream
<
S
>,
U
extends
Collection
<
S
>>
Collection
<
S
>
flatMapInOut
(
Collection
<
T
>
inColl
,
Function
<
T
,
R
>
mapper
,
Supplier
<
U
>
sup
)
{
public
static
<
S
,
T
,
R
extends
Stream
<
S
>,
U
extends
Collection
<
S
>>
Collection
<
S
>
flatMapInOut
(
Collection
<
T
>
inColl
,
Function
<
T
,
R
>
mapper
,
Supplier
<
U
>
sup
)
{
return
inColl
.
parallelStream
().
flatMap
(
mapper
).
collect
(
Collectors
.
toCollection
(
sup
));
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment