repo.or.cz
/
ephemerata.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
a whole bunch of stuff
[ephemerata.git]
/
KezvhLib
/
src-lib
/
net
/
kezvh
/
collections
/
Navigable.java
blob
c12085183f2cfa121b426cbdd112f18c958ab633
1
package
net
.
kezvh
.
collections
;
2
3
/**
4
* @author mjacob
5
*
6
* @param <T> type of
7
*/
8
public interface
Navigable
<
T
>
extends
Comparable
<
T
> {
9
/**
10
* @return the element after the current
11
*/
12
T
next
();
13
14
/**
15
* @return the element before the current
16
*/
17
T
previous
();
18
}