mssql.googlecode.concurrentlinkedhashmap.Linked Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mssql-jdbc Show documentation
Show all versions of mssql-jdbc Show documentation
Microsoft JDBC Driver for SQL Server.
package mssql.googlecode.concurrentlinkedhashmap;
import java.util.Deque;
/**
* An element that is linked on the {@link Deque}.
*/
interface Linked> {
/**
* Retrieves the previous element or null if either the element is
* unlinked or the first element on the deque.
*/
T getPrevious();
/** Sets the previous element or null if there is no link. */
void setPrevious(T prev);
/**
* Retrieves the next element or null if either the element is
* unlinked or the last element on the deque.
*/
T getNext();
/** Sets the next element or null if there is no link. */
void setNext(T next);
}