Class CollectionUtil
java.lang.Object
org.flowable.dmn.engine.impl.el.util.CollectionUtil
- Author:
- Yvo Swillens
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic booleanall values of value must be in collectionstatic booleanone of the values of value must be in collectionstatic booleanDeprecated.use @{link #allOf(Object, Object)} insteadstatic booleancontainsAny(Object collection, Object value) Deprecated.use @{link #anyof(Object, Object)} insteadprotected static CollectiongetTargetCollection(Object collection, Object value) static booleannone of the values of value must be in collectionstatic booleanone of the values of value must not be in collectionstatic booleannotContains(Object collection, Object value) Deprecated.use @{link #noneOf(Object, Object)} insteadstatic booleannotContainsAny(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:
trueif all elements of value are within the collection,falseif 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:
trueif all elements of value are not within the collection,falseif 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:
trueif at least one element of value is within the collection,falseif 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:
trueif a least one element of value is not within the collection,falseif all elements of value are within the collection
-
notContainsAny
Deprecated.usenotAllOf(Object, Object)instead -
getTargetCollection
-