Interface IndexSystem<C,Q>

Type Parameters:
C - (Cache) Item object type
Q - Query object type
D - Type of the (D)ata associated with cache objects
F - (F)eature type

public interface IndexSystem<C,Q>
A datastructure which allows putting data of a type C into it, and enables querying candidates with type Q. Abstracts e.g. feature based indexing and retrieval of items
Author:
raven
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(C item)
     
    lookup(Q query)
     
  • Method Details