Class CollectionUtil
java.lang.Object
org.flowable.dmn.engine.impl.el.util.CollectionUtil
- Author:
- Yvo Swillens
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic boolean
all values of value must be in collectionstatic boolean
one of the values of value must be in collectionstatic boolean
Deprecated.use @{link #allOf(Object, Object)} insteadstatic boolean
containsAny
(Object collection, Object value) Deprecated.use @{link #anyof(Object, Object)} insteadprotected static Collection
getTargetCollection
(Object collection, Object value) static boolean
none of the values of value must be in collectionstatic boolean
one of the values of value must not be in collectionstatic boolean
notContains
(Object collection, Object value) Deprecated.use @{link #noneOf(Object, Object)} insteadstatic boolean
notContainsAny
(Object collection, Object value) Deprecated.usenotAllOf(Object, Object)
instead
-
Constructor Details
-
CollectionUtil
public CollectionUtil()
-
-
Method Details
-
allOf
all values of value must be in collection- Returns:
true
if all elements of value are within the collection,false
if at least one element of value is not within the collection
-
contains
Deprecated.use @{link #allOf(Object, Object)} instead -
noneOf
none of the values of value must be in collection- Returns:
true
if all elements of value are not within the collection,false
if at least one element of value is within the collection
-
notContains
Deprecated.use @{link #noneOf(Object, Object)} instead -
anyOf
one of the values of value must be in collection- Returns:
true
if at least one element of value is within the collection,false
if all elements of value are not within the collection
-
containsAny
Deprecated.use @{link #anyof(Object, Object)} instead -
notAllOf
one of the values of value must not be in collection- Returns:
true
if a least one element of value is not within the collection,false
if all elements of value are within the collection
-
notContainsAny
Deprecated.usenotAllOf(Object, Object)
instead -
getTargetCollection
-