com.atlassian.core.util.filter
Interface Filter<T>

All Known Implementing Classes:
FilterChain

Deprecated. use Guava's Predicate instead

@Deprecated
public interface Filter<T>

Defines what objects should be filtered out of a list.


Method Summary
 boolean isIncluded(T o)
          Deprecated. Should an object be allowed through the filter?
 

Method Detail

isIncluded

boolean isIncluded(T o)
Deprecated. 
Should an object be allowed through the filter?

Returns:
true if the object can pass through the filter, false if the object is rejected by the filter.


Copyright © 2015 Atlassian. All rights reserved.