org.aminds.util
クラス CharSequenceList

java.lang.Object
  上位を拡張 java.util.AbstractCollection<E>
      上位を拡張 java.util.AbstractList<E>
          上位を拡張 java.util.AbstractSequentialList<E>
              上位を拡張 java.util.LinkedList<CharSequence>
                  上位を拡張 org.aminds.util.CharSequenceList
すべての実装されたインタフェース:
Serializable, Appendable, CharSequence, Cloneable, Iterable<CharSequence>, Readable, Collection<CharSequence>, Deque<CharSequence>, List<CharSequence>, Queue<CharSequence>

public class CharSequenceList
extends LinkedList<CharSequence>
implements CharSequence, Appendable, Readable

作成者:
Masashi Nakanishi
関連項目:
直列化された形式

フィールドの概要
 
クラス java.util.AbstractList から継承されたフィールド
modCount
 
コンストラクタの概要
CharSequenceList()
           
CharSequenceList(CharSequence csq)
           
CharSequenceList(List<CharSequence> list)
           
 
メソッドの概要
 Appendable append(char c)
           
 Appendable append(CharSequence csq)
           
 Appendable append(CharSequence csq, int start, int end)
           
 char charAt(int index)
           
static void copy(CharSequence src, int srcBegin, int srcEnd, char[] dest, int destBegin)
           
 void getChars(int srcBegin, int srcEnd, char[] dst, int dstBegin)
           
 int length()
           
 int read(CharBuffer cb)
           
 CharSequence subSequence(int start, int end)
           
 String toString()
           
 
クラス java.util.LinkedList から継承されたメソッド
add, add, addAll, addAll, addFirst, addLast, clear, clone, contains, descendingIterator, element, get, getFirst, getLast, indexOf, lastIndexOf, listIterator, offer, offerFirst, offerLast, peek, peekFirst, peekLast, poll, pollFirst, pollLast, pop, push, remove, remove, remove, removeFirst, removeFirstOccurrence, removeLast, removeLastOccurrence, set, size, toArray, toArray
 
クラス java.util.AbstractSequentialList から継承されたメソッド
iterator
 
クラス java.util.AbstractList から継承されたメソッド
equals, hashCode, listIterator, removeRange, subList
 
クラス java.util.AbstractCollection から継承されたメソッド
containsAll, isEmpty, removeAll, retainAll
 
クラス java.lang.Object から継承されたメソッド
finalize, getClass, notify, notifyAll, wait, wait, wait
 
インタフェース java.util.List から継承されたメソッド
containsAll, equals, hashCode, isEmpty, iterator, listIterator, removeAll, retainAll, subList
 
インタフェース java.util.Deque から継承されたメソッド
iterator
 

コンストラクタの詳細

CharSequenceList

public CharSequenceList()

CharSequenceList

public CharSequenceList(CharSequence csq)

CharSequenceList

public CharSequenceList(List<CharSequence> list)
メソッドの詳細

getChars

public void getChars(int srcBegin,
                     int srcEnd,
                     char[] dst,
                     int dstBegin)

copy

public static void copy(CharSequence src,
                        int srcBegin,
                        int srcEnd,
                        char[] dest,
                        int destBegin)

charAt

public char charAt(int index)
定義:
インタフェース CharSequence 内の charAt

length

public int length()
定義:
インタフェース CharSequence 内の length

subSequence

public CharSequence subSequence(int start,
                                int end)
定義:
インタフェース CharSequence 内の subSequence

toString

public String toString()
定義:
インタフェース CharSequence 内の toString
オーバーライド:
クラス AbstractCollection<CharSequence> 内の toString

append

public Appendable append(char c)
                  throws IOException
定義:
インタフェース Appendable 内の append
例外:
IOException

append

public Appendable append(CharSequence csq)
                  throws IOException
定義:
インタフェース Appendable 内の append
例外:
IOException

append

public Appendable append(CharSequence csq,
                         int start,
                         int end)
                  throws IOException
定義:
インタフェース Appendable 内の append
例外:
IOException

read

public int read(CharBuffer cb)
         throws IOException
定義:
インタフェース Readable 内の read
例外:
IOException


Copyright (c) 2008-2011 Masashi Nakanishi.