a whole bunch of stuff
[ephemerata.git] / KezvhLib / src-lib / net / kezvh / collections / Navigable.java
blobc12085183f2cfa121b426cbdd112f18c958ab633
1 package net.kezvh.collections;
3 /**
4 * @author mjacob
6 * @param <T> type of
7 */
8 public interface Navigable<T> extends Comparable<T> {
9 /**
10 * @return the element after the current
12 T next();
14 /**
15 * @return the element before the current
17 T previous();