org.seasar.framework.util
クラス SLinkedList

java.lang.Object
  拡張org.seasar.framework.util.SLinkedList
すべての実装インタフェース:
Cloneable, Externalizable, Serializable

public class SLinkedList
extends Object
implements Cloneable, Externalizable

関連項目:
直列化された形式

入れ子クラスの概要
 class SLinkedList.Entry
           
 
コンストラクタの概要
SLinkedList()
           
 
メソッドの概要
 void add(int index, Object element)
           
 void addFirst(Object o)
           
 void addLast(Object o)
           
 void clear()
           
 Object clone()
           
 boolean contains(Object o)
           
 Object get(int index)
           
 SLinkedList.Entry getEntry(int index)
           
 Object getFirst()
           
 SLinkedList.Entry getFirstEntry()
           
 Object getLast()
           
 SLinkedList.Entry getLastEntry()
           
 int indexOf(Object o)
           
 boolean isEmpty()
           
 void readExternal(ObjectInput s)
           
 Object remove(int index)
           
 boolean remove(Object o)
           
 Object removeFirst()
           
 Object removeLast()
           
 Object set(int index, Object element)
           
 int size()
           
 Object[] toArray()
           
 void writeExternal(ObjectOutput s)
           
 
クラス java.lang.Object から継承したメソッド
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

SLinkedList

public SLinkedList()
メソッドの詳細

getFirstEntry

public SLinkedList.Entry getFirstEntry()

getFirst

public Object getFirst()

getLastEntry

public SLinkedList.Entry getLastEntry()

getLast

public Object getLast()

removeFirst

public Object removeFirst()

removeLast

public Object removeLast()

addFirst

public void addFirst(Object o)

addLast

public void addLast(Object o)

add

public void add(int index,
                Object element)

size

public int size()

isEmpty

public boolean isEmpty()

contains

public boolean contains(Object o)

remove

public boolean remove(Object o)

remove

public Object remove(int index)

clear

public void clear()

getEntry

public SLinkedList.Entry getEntry(int index)

get

public Object get(int index)

set

public Object set(int index,
                  Object element)

indexOf

public int indexOf(Object o)

writeExternal

public void writeExternal(ObjectOutput s)
                   throws IOException
定義:
インタフェース Externalizable 内の writeExternal
例外:
IOException

readExternal

public void readExternal(ObjectInput s)
                  throws IOException,
                         ClassNotFoundException
定義:
インタフェース Externalizable 内の readExternal
例外:
IOException
ClassNotFoundException

clone

public Object clone()

toArray

public Object[] toArray()


Copyright © 2004-2007 The Seasar Foundation. All Rights Reserved.