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.
|
Modifier and Type | Interface and Description |
---|---|
interface |
BooleanList
An ordered collection of
byte values. |
Modifier and Type | Class and Description |
---|---|
class |
AbstractBooleanCollection
Abstract base class for
BooleanCollection s. |
class |
ArrayBooleanList
An
BooleanList backed by an array of boolean s. |
class |
RandomAccessBooleanList
Abstract base class for
BooleanList s backed by random access
structures like arrays. |
protected static class |
RandomAccessBooleanList.RandomAccessBooleanSubList |
Modifier and Type | Method and Description |
---|---|
boolean |
AbstractBooleanCollection.addAll(BooleanCollection c) |
boolean |
ArrayBooleanList.addAll(BooleanCollection collection) |
boolean |
BooleanCollection.addAll(BooleanCollection c)
Adds all of the elements in the specified collection to
me (optional operation). |
boolean |
ArrayBooleanList.addAll(int index,
BooleanCollection collection) |
boolean |
BooleanList.addAll(int index,
BooleanCollection collection)
Inserts all of the elements in the specified collection into me,
at the specified position (optional operation).
|
boolean |
RandomAccessBooleanList.addAll(int index,
BooleanCollection collection) |
boolean |
AbstractBooleanCollection.containsAll(BooleanCollection c) |
boolean |
BooleanCollection.containsAll(BooleanCollection c)
Returns
true iff I contain
all of the elements in the given collection. |
boolean |
AbstractBooleanCollection.removeAll(BooleanCollection c) |
boolean |
BooleanCollection.removeAll(BooleanCollection c)
Removes all of my elements that are contained in the specified
collection (optional operation).
|
boolean |
AbstractBooleanCollection.retainAll(BooleanCollection c) |
boolean |
BooleanCollection.retainAll(BooleanCollection c)
Removes all of my elements that are not contained in the
specified collection (optional operation).
|
Constructor and Description |
---|
ArrayBooleanList(BooleanCollection that)
Constructs a list containing the elements of the given collection,
in the order they are returned by that collection's iterator.
|
Modifier and Type | Class and Description |
---|---|
class |
CollectionBooleanCollection
|
class |
ListBooleanList
|
Modifier and Type | Method and Description |
---|---|
protected BooleanCollection |
BooleanCollectionCollection.getBooleanCollection() |
static BooleanCollection |
CollectionBooleanCollection.wrap(Collection collection)
Create an
BooleanCollection wrapping the specified Collection . |
Modifier and Type | Method and Description |
---|---|
static Collection |
BooleanCollectionCollection.wrap(BooleanCollection collection)
Create a
Collection wrapping the specified
BooleanCollection . |
Constructor and Description |
---|
BooleanCollectionCollection(BooleanCollection collection)
Creates a
Collection wrapping the specified
BooleanCollection . |
Copyright © 2002-2013 The Apache Software Foundation. All Rights Reserved.