| パッケージ | 説明 |
|---|---|
| com.uwyn.jhighlight.fastutil.chars |
| 修飾子とタイプ | クラスと説明 |
|---|---|
class |
AbstractCharList
An abstract class providing basic methods for lists implementing a type-specific list interface.
|
static class |
AbstractCharList.CharSubList |
class |
CharArrayList
A type-specific array-based list; provides some additional methods that use polymorphism to avoid (un)boxing.
|
| 修飾子とタイプ | フィールドと説明 |
|---|---|
protected CharList |
AbstractCharList.CharSubList.l
The list this sublist restricts.
|
| 修飾子とタイプ | メソッドと説明 |
|---|---|
CharList |
CharList.charSubList(int from,
int to)
推奨されていません。
As of
fastutil 5, replaced by subList(int,int). |
CharList |
AbstractCharList.charSubList(int from,
int to)
推奨されていません。
|
static CharList |
CharIterators.pour(CharIterator i)
Pours an iterator, returning a type-specific list.
|
static CharList |
CharIterators.pour(CharIterator i,
int max)
Pours an iterator, returning a type-specific list, with a limit on the number of elements.
|
CharList |
CharList.subList(int from,
int to)
Returns a type-specific view of the portion of this list from the index
from, inclusive, to the index to, exclusive. |
CharList |
AbstractCharList.subList(int from,
int to) |
CharList |
AbstractCharList.CharSubList.subList(int from,
int to) |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
CharList.addAll(CharList c) |
boolean |
AbstractCharList.addAll(CharList l) |
boolean |
CharArrayList.addAll(int index,
CharList l) |
boolean |
CharList.addAll(int index,
CharList c) |
boolean |
AbstractCharList.addAll(int index,
CharList l)
Delegates to a more generic method.
|
boolean |
AbstractCharList.CharSubList.addAll(int index,
CharList l) |
| コンストラクタと説明 |
|---|
AbstractCharList.CharSubList(CharList l,
int from,
int to) |
CharArrayList(CharList l)
Creates a new array list and fills it with a given type-specific list.
|
Copyright © 2011-2015. All Rights Reserved.