Interface Chain<O>

  • All Superinterfaces:
    java.util.Comparator<O>
    All Known Implementing Classes:
    ChainImpl

    public interface Chain<O>
    extends java.util.Comparator<O>
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean contains​(O data)  
      Navigator<O> navigator​(O data)  
      boolean remove​(O data)  
      java.util.List<O> toList()  
      • Methods inherited from interface java.util.Comparator

        compare, equals, reversed, thenComparing, thenComparing, thenComparing, thenComparingDouble, thenComparingInt, thenComparingLong
    • Method Detail

      • contains

        boolean contains​(O data)
      • toList

        java.util.List<O> toList()
      • remove

        boolean remove​(O data)