Interface SampleIndexer

  • All Implemented Interfaces:

    
    public interface SampleIndexer<TIndex>
    
                        

    The classes that implement interface SampleIndexer have to calculate an index from a sample.

    Since:

    3.0

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Method Summary

      Modifier and Type Method Description
      abstract TIndex calculateIndex(Sample sample) Calculate index from the specified sample.
      abstract void reset() Reset the index calculation logic.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

    • Method Detail

      • calculateIndex

         abstract TIndex calculateIndex(Sample sample)

        Calculate index from the specified sample.

        Parameters:
        sample - the sample
        Returns:

        the index

      • reset

         abstract void reset()

        Reset the index calculation logic.