Example usage for org.apache.commons.collections IteratorUtils filteredListIterator

List of usage examples for org.apache.commons.collections IteratorUtils filteredListIterator

Introduction

In this page you can find the example usage for org.apache.commons.collections IteratorUtils filteredListIterator.

Prototype

public static ListIterator filteredListIterator(ListIterator listIterator, Predicate predicate) 

Source Link

Document

Gets a list iterator that filters another list iterator.

Usage

From source file:com.projity.grouping.core.transform.filtering.NodeFilter.java

public ListIterator filteredListIterator(ListIterator i) {
    return IteratorUtils.filteredListIterator(i, this);
}