Class Iterables.FilterIterable<A>

java.lang.Object
eu.bandm.tools.util.java.Iterables.FilterIterable<A>
All Implemented Interfaces:
Iterable<A>
Enclosing class:
Iterables

@Deprecated(forRemoval=true, since="1.0") public abstract static class Iterables.FilterIterable<A> extends Object implements Iterable<A>
Deprecated, for removal: This API element is subject to removal in a future version.
  • Constructor Summary

    Constructors
    Modifier
    Constructor
    Description
    protected
    Deprecated, for removal: This API element is subject to removal in a future version.
     
  • Method Summary

    Modifier and Type
    Method
    Description
    protected abstract boolean
    accepts(A candidate)
    Deprecated, for removal: This API element is subject to removal in a future version.
     
    Deprecated, for removal: This API element is subject to removal in a future version.
     

    Methods inherited from class java.lang.Object

    clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait

    Methods inherited from interface java.lang.Iterable

    forEach, spliterator
  • Constructor Details

    • FilterIterable

      protected FilterIterable(Iterable<A> things)
      Deprecated, for removal: This API element is subject to removal in a future version.
  • Method Details

    • accepts

      protected abstract boolean accepts(A candidate)
      Deprecated, for removal: This API element is subject to removal in a future version.
    • iterator

      public Iterator<A> iterator()
      Deprecated, for removal: This API element is subject to removal in a future version.
      Specified by:
      iterator in interface Iterable<A>