Uses of Interface
com.gengoai.collection.Index
-
Packages that use Index Package Description com.gengoai.collection Contains collections useful for Data Science and continence methods for creating, wrapping, writing, and reading of existing collection classes. -
-
Uses of Index in com.gengoai.collection
Classes in com.gengoai.collection that implement Index Modifier and Type Class Description class
HashMapIndex<TYPE>
An Index implementation that uses a combination of a HashMap and List.Methods in com.gengoai.collection that return Index Modifier and Type Method Description Index<TYPE>
HashMapIndex. copy()
static <TYPE> Index<TYPE>
Indexes. indexOf(@NonNull Iterable<TYPE> elements)
Creates a new index using the given set of elementsstatic <TYPE> Index<TYPE>
Indexes. indexOf(@NonNull Iterator<TYPE> elements)
Creates a new index using the given set of elementsstatic <TYPE> Index<TYPE>
Indexes. indexOf(@NonNull Stream<TYPE> elements)
Creates a new index using the given set of elementsstatic <TYPE> Index<TYPE>
Indexes. indexOf(@NonNull TYPE... elements)
Creates a new index using the given set of elements
-