findEntryByID(id: EntryID): null | Entry {
        return this._entries.find((entry) => entry.id === id) || null;
    }