E - public final class Link<E> extends Object
Chain is built.
It is possible to attach or detach a Link from a Chain. When
the Link is attached it contains a pointers to the previous and
the next Links in the Chain, otherwise, if the Link
is detached - the pointers values are null.
If a Link is attached - it can only be attached to one Chain.public Link(E value)
value - an object the Link represents.public long getAttachmentTimeStamp()
public boolean isAttached()
Chain or false otherwise.Copyright © 2015 Oracle Corporation. All Rights Reserved.