Interface IndexPartition<K,V>

Type Parameters:
K - The key of the indexed entries
V - The value type of the indexed values

public interface IndexPartition<K,V>
A Partition represents a set of values of a given indexer ID
  • Method Summary

    Modifier and Type
    Method
    Description
    Return the list of all the values for the given key
    Return the list of all the keys
  • Method Details

    • entriesFor

      List<V> entriesFor(K key)
      Return the list of all the values for the given key
      Parameters:
      key - The key to use to search
      Returns:
      The list of values
    • getKeys

      List<K> getKeys()
      Return the list of all the keys
      Returns:
      The list of keys