Example usage for org.apache.commons.collections15.functors NotPredicate NotPredicate

List of usage examples for org.apache.commons.collections15.functors NotPredicate NotPredicate

Introduction

In this page you can find the example usage for org.apache.commons.collections15.functors NotPredicate NotPredicate.

Prototype

public NotPredicate(Predicate<T> predicate) 

Source Link

Document

Constructor that performs no validation.

Usage

From source file:facade.collections.CollectionInPlaceProxy.java

public CollectionProxy<T> reject(Predicate<T> pred) {
    return select(new NotPredicate<T>(pred));
}