Interface MiniCatalog<T>

All Known Implementing Classes:
BasicMiniCatalog, StarCatalog, VitaminReader

public interface MiniCatalog<T>
Since:
1.0
Author:
Silvere Martin-Michiellot, Gemini AI (Google DeepMind)
  • Method Summary

    Modifier and Type
    Method
    Description
    Finds an entry by name.
    Returns all entries in the catalog.
    int
    Returns the size of the catalog.
  • Method Details

    • getAll

      List<T> getAll()
      Returns all entries in the catalog.
    • findByName

      Optional<T> findByName(String name)
      Finds an entry by name.
    • size

      int size()
      Returns the size of the catalog.