package com.minres.scviewer.database; import java.util.Collection; import java.util.Map.Entry; public interface IEventList { Entry floorEntry(K key); Entry ceilingEntry(K key); Entry firstEntry(); Entry lastEntry(); V get(K key); Entry higherEntry(K key); Entry lowerEntry(K key); IEventList subMap(K key, boolean b, K key2, boolean c); int size(); Collection keys(); Collection values(); boolean containsKey(K key); V put(K key, V value); Collection> entrySet(); boolean isEmpty(); K lastKey(); }