Interface StringSetImpl.ReversibleLookup<DATA_TYPE>

All Known Subinterfaces:
ReverseLookupColumnSource<DATA_TYPE,​EXTRA_VALUE_TYPE>
All Known Implementing Classes:
ChunkDictionary, ReversibleCache
Enclosing class:
StringSetImpl

public static interface StringSetImpl.ReversibleLookup<DATA_TYPE>
  • Method Summary

    Modifier and Type Method Description
    DATA_TYPE get​(long index)
    Forward lookup from the integral index.
    int rget​(int highestIndex, DATA_TYPE value)
    Reverse lookup of the DATA_TYPE.
  • Method Details

    • get

      DATA_TYPE get​(long index)
      Forward lookup from the integral index.
      Returns:
      the DATA_TYPE associated with the index.
    • rget

      int rget​(int highestIndex, DATA_TYPE value)
      Reverse lookup of the DATA_TYPE.
      Returns:
      the integral index associated with the DATA_TYPE.