org.seasar.util.collection
クラス SLinkedList.Entry

java.lang.Object
  上位を拡張 org.seasar.util.collection.SLinkedList.Entry
含まれているクラス:
SLinkedList<E>

public class SLinkedList.Entry
extends Object

要素を格納するエントリです。


フィールドの概要
protected  E element
          要素
protected  SLinkedList.Entry next
          次のエントリ
protected  SLinkedList.Entry previous
          前のエントリ
 
メソッドの概要
 SLinkedList.Entry addBefore(E o)
          前に追加します。
 E getElement()
          要素を返します。
 SLinkedList.Entry getNext()
          次のエントリを返します。
 SLinkedList.Entry getPrevious()
          前のエントリを返します。
 void remove()
          要素を削除します。
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

element

protected E element
要素


next

protected SLinkedList.Entry next
次のエントリ


previous

protected SLinkedList.Entry previous
前のエントリ

メソッドの詳細

getElement

public E getElement()
要素を返します。

戻り値:
要素

getNext

public SLinkedList.Entry getNext()
次のエントリを返します。

戻り値:
次のエントリ

getPrevious

public SLinkedList.Entry getPrevious()
前のエントリを返します。

戻り値:
前のエントリ

remove

public void remove()
要素を削除します。


addBefore

public SLinkedList.Entry addBefore(E o)
前に追加します。

パラメータ:
o - 要素
戻り値:
追加されたエントリ


Copyright © 2010-2012 The Seasar Foundation. All Rights Reserved.