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
- 関連項目:
- 直列化された形式
|
メソッドの概要 |
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 |
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.