Package com.qfs.index

Interface IWritableIndex

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void index​(int key, int value)
      Adds a new value indexed by the given key.
      void remove​(int key, int value)
      Removes the value that was indexed by the given key.
    • Method Detail

      • index

        void index​(int key,
                   int value)
        Adds a new value indexed by the given key.
        Parameters:
        key - the key
        value - the value to index
      • remove

        void remove​(int key,
                    int value)
        Removes the value that was indexed by the given key.
        Parameters:
        key - the key
        value - the indexed value to remove