Package | Description |
---|---|
org.apache.commons.collections.primitives |
Collections of primitive values.
|
org.apache.commons.collections.primitives.adapters |
Adapters for converting between the
primitive and object based versions of the
collections framework.
|
org.apache.commons.collections.primitives.decorators |
Decorators of primitive collections.
|
Modifier and Type | Class and Description |
---|---|
class |
ArrayIntList
An
IntList backed by an array of int s. |
class |
ArrayUnsignedShortList
An
IntList backed by an array of unsigned
short values. |
class |
RandomAccessIntList
Abstract base class for
IntList s backed
by random access structures like arrays. |
protected static class |
RandomAccessIntList.RandomAccessIntSubList |
Modifier and Type | Field and Description |
---|---|
static IntList |
IntCollections.EMPTY_INT_LIST
An unmodifiable, empty IntList
|
Modifier and Type | Method and Description |
---|---|
static IntList |
IntCollections.getEmptyIntList()
Returns an unmodifiable, empty IntList.
|
static IntList |
IntCollections.singletonIntList(int value)
Returns an unmodifiable IntList containing only the specified element.
|
IntList |
IntList.subList(int fromIndex,
int toIndex)
Returns a view of the elements within me
between the specified fromIndex, inclusive, and
toIndex, exclusive.
|
IntList |
RandomAccessIntList.subList(int fromIndex,
int toIndex) |
static IntList |
IntCollections.unmodifiableIntList(IntList list)
Returns an unmodifiable version of the given non-null IntList.
|
Modifier and Type | Method and Description |
---|---|
static IntList |
IntCollections.unmodifiableIntList(IntList list)
Returns an unmodifiable version of the given non-null IntList.
|
Modifier and Type | Class and Description |
---|---|
class |
ListIntList
|
Modifier and Type | Method and Description |
---|---|
protected IntList |
IntListList.getIntList() |
static IntList |
Adapt.toIntList(List c) |
static IntList |
ListIntList.wrap(List list)
|
Modifier and Type | Method and Description |
---|---|
static List |
Adapt.toList(IntList c) |
static List |
IntListList.wrap(IntList list)
|
Constructor and Description |
---|
IntListList(IntList list)
|
Modifier and Type | Class and Description |
---|---|
class |
UnmodifiableIntList |
Modifier and Type | Method and Description |
---|---|
protected IntList |
UnmodifiableIntList.getProxiedList() |
static IntList |
UnmodifiableIntList.wrap(IntList list) |
Modifier and Type | Method and Description |
---|---|
static IntList |
UnmodifiableIntList.wrap(IntList list) |
Copyright © 2002-2013 The Apache Software Foundation. All Rights Reserved.