Package
Class
Use
Tree
Deprecated
Index
All Classes
Help
Prev
Next
VCollections – Release 1
Uses of Interface org.violetlib.collections.FindVisitor
Deprecated: ShowHide

Uses of Interface
org.violetlib.collections.FindVisitor

    • Uses of FindVisitor in org.violetlib.collections

      Methods in org.violetlib.collections that return FindVisitor 
      Modifier and Type Method and Description
      static <V,R> FindVisitor<V,R>  FindVisitor.fromIndexedFindVisitor(IndexedFindVisitor<V,R> v)
      Return a find visitor that calls an indexed find visitor.
      Methods in org.violetlib.collections with parameters of type FindVisitor 
      Modifier and Type Method and Description
      <R> R  IList.find(FindVisitor<V,R> visitor)
      Visit the elements of the list from the first element to the last element until the visitor returns a non-null result.
      <R> R  ICollection.find(FindVisitor<V,R> visitor)
      Visit the elements of the collection until the visitor returns a non-null result.
      <R> R  IList.find(FindVisitor<V,R> visitor, R defaultValue)
      Visit each element of the list from the first element to the last element until the visitor returns a non-null result.
      <R> R  ICollection.find(FindVisitor<V,R> visitor, R defaultValue)
      Visit each element of the collection until the visitor returns a non-null result.