Uses of Interface
cdc.util.data.util.AttributePredicate
-
Packages that use AttributePredicate Package Description cdc.util.data.util cdc.util.data.xml -
-
Uses of AttributePredicate in cdc.util.data.util
Fields in cdc.util.data.util declared as AttributePredicate Modifier and Type Field Description static AttributePredicateAttributePredicate. ANY_ATTRIBUTEAn attribute predicate that always returnstrue.static AttributePredicateAttributePredicate. IS_EMPTY_ATTRIBUTEAn attribute predicate that returnstruewhen an attribute value isnullor empty.static AttributePredicateAttributePredicate. IS_NOT_EMPTY_ATTRIBUTEAn attribute predicate that returnstruewhen an attribute value is neithernullnor empty.Methods in cdc.util.data.util that return AttributePredicate Modifier and Type Method Description default AttributePredicateAttributePredicate. and(AttributePredicate other)Returns a predicate that is the logicalandcombination of this one and another one.static AttributePredicateAttributePredicate. fromNames(Collection<String> names)Returns an AttributePredicate that returns true when the attribute has a names belonging to a collection.static AttributePredicateAttributePredicate. fromPaths(Collection<SPath> paths)default AttributePredicateAttributePredicate. not()default AttributePredicateAttributePredicate. or(AttributePredicate other)Returns a predicate that is the logicalorcombination of this one and another one.Methods in cdc.util.data.util with parameters of type AttributePredicate Modifier and Type Method Description default AttributePredicateAttributePredicate. and(AttributePredicate other)Returns a predicate that is the logicalandcombination of this one and another one.default AttributePredicateAttributePredicate. or(AttributePredicate other)Returns a predicate that is the logicalorcombination of this one and another one.static voidDataUtils. removeMatchingAttributes(Parent parent, AttributePredicate predicate, Evaluator<? super Parent> evaluator)Removes matching attributes.static voidDataUtils. setNameOfMatchingAttributes(Parent parent, AttributePredicate predicate, AttributeNameConverter converter, Evaluator<? super Parent> evaluator)Sets names of matching attributes.static voidDataUtils. setValueOfMatchingAttributes(Parent parent, AttributePredicate predicate, AttributeValueConverter converter, Evaluator<? super Parent> evaluator)Sets value of matching attributes. -
Uses of AttributePredicate in cdc.util.data.xml
Fields in cdc.util.data.xml declared as AttributePredicate Modifier and Type Field Description protected AttributePredicateXmlDataReader. attributeFilterThe filter attributes.Methods in cdc.util.data.xml that return AttributePredicate Modifier and Type Method Description AttributePredicateXmlDataReader. getAttributeFilter()Methods in cdc.util.data.xml with parameters of type AttributePredicate Modifier and Type Method Description voidXmlDataReader. setAttributeFilter(AttributePredicate filter)Sets the attribute filter.
-