|
com.im.commons 5.9 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectjava.util.AbstractCollection<E>
java.util.AbstractList<String>
com.im.commons.util.CaseInsensitiveList
public class CaseInsensitiveList
This class is a copy of ArrayList implementation, specialized for Strings. Comparisons are case-sensitive.
| Field Summary |
|---|
| Fields inherited from class java.util.AbstractList |
|---|
modCount |
| Constructor Summary | |
|---|---|
CaseInsensitiveList()
Constructs an empty list with an initial capacity of ten. |
|
CaseInsensitiveList(Collection<String> c)
Constructs a list containing the elements of the specified collection, in the order they are returned by the collection's iterator. |
|
CaseInsensitiveList(int initialCapacity)
Constructs an empty list with the specified initial capacity. |
|
| Method Summary | ||
|---|---|---|
void |
add(int index,
String element)
Inserts the specified element at the specified position in this list. |
|
boolean |
add(String o)
Appends the specified element to the end of this list. |
|
boolean |
addAll(Collection<? extends String> c)
Appends all of the elements in the specified Collection to the end of this list, in the order that they are returned by the specified Collection's Iterator. |
|
boolean |
addAll(int index,
Collection<? extends String> c)
Inserts all of the elements in the specified Collection into this list, starting at the specified position. |
|
void |
clear()
Removes all of the elements from this list. |
|
Object |
clone()
Returns a shallow copy of this ArrayList instance. |
|
boolean |
contains(Object elem)
Returns true if this list contains the specified element. |
|
void |
ensureCapacity(int minCapacity)
Increases the capacity of this ArrayList instance, if necessary, to ensure that it can hold at least the number of elements specified by the minimum capacity argument. |
|
String |
get(int index)
Returns the element at the specified position in this list. |
|
int |
indexOf(Object elem)
Searches for the first occurence of the given argument, testing for equality using the equals method. |
|
boolean |
isEmpty()
Tests if this list has no elements. |
|
int |
lastIndexOf(Object elem)
Returns the index of the last occurrence of the specified object in this list. |
|
String |
remove(int index)
Removes the element at the specified position in this list. |
|
boolean |
remove(Object o)
Removes a single instance of the specified element from this list, if it is present (optional operation). |
|
protected void |
removeRange(int fromIndex,
int toIndex)
Removes from this List all of the elements whose index is between fromIndex, inclusive and toIndex, exclusive. |
|
String |
set(int index,
String element)
Replaces the element at the specified position in this list with the specified element. |
|
int |
size()
Returns the number of elements in this list. |
|
Object[] |
toArray()
Returns an array containing all of the elements in this list in the correct order. |
|
|
toArray(T[] a)
Returns an array containing all of the elements in this list in the correct order; the runtime type of the returned array is that of the specified array. |
|
void |
trimToSize()
Trims the capacity of this ArrayList instance to be the list's current size. |
|
| Methods inherited from class java.util.AbstractList |
|---|
equals, hashCode, iterator, listIterator, listIterator, subList |
| Methods inherited from class java.util.AbstractCollection |
|---|
containsAll, removeAll, retainAll, toString |
| Methods inherited from class java.lang.Object |
|---|
finalize, getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface java.util.List |
|---|
containsAll, equals, hashCode, iterator, listIterator, listIterator, removeAll, retainAll, subList |
| Constructor Detail |
|---|
public CaseInsensitiveList(int initialCapacity)
initialCapacity - The initial capacity of the list.
IllegalArgumentException - if the specified initial capacity
is negativepublic CaseInsensitiveList()
public CaseInsensitiveList(Collection<String> c)
c - The collection whose elements are to be placed into this list.
NullPointerException - if the specified collection is null.| Method Detail |
|---|
public void trimToSize()
public void ensureCapacity(int minCapacity)
minCapacity - The desired minimum capacity.public int size()
size in interface Collection<String>size in interface List<String>size in class AbstractCollection<String>public boolean isEmpty()
isEmpty in interface Collection<String>isEmpty in interface List<String>isEmpty in class AbstractCollection<String>public boolean contains(Object elem)
contains in interface Collection<String>contains in interface List<String>contains in class AbstractCollection<String>elem - The e lement whose presence in this List is to be tested.
true if the specified element is present;
false otherwise.public int indexOf(Object elem)
indexOf in interface List<String>indexOf in class AbstractList<String>elem - An object.
Object.equals(Object)public int lastIndexOf(Object elem)
lastIndexOf in interface List<String>lastIndexOf in class AbstractList<String>elem - The desired element.
public Object clone()
clone in class Objectpublic Object[] toArray()
toArray in interface Collection<String>toArray in interface List<String>toArray in class AbstractCollection<String>public <T> T[] toArray(T[] a)
If the list fits in the specified array with room to spare (i.e., the array has more elements than the list), the element in the array immediately following the end of the collection is set to null. This is useful in determining the length of the list only if the caller knows that the list does not contain any null elements.
toArray in interface Collection<String>toArray in interface List<String>toArray in class AbstractCollection<String>a - The array into which the elements of the list are to
be stored, if it is big enough; otherwise, a new array of the
same runtime type is allocated for this purpose.
ArrayStoreException - if the runtime type of a is not a supertype
of the runtime type of every element in this list.public String get(int index)
get in interface List<String>get in class AbstractList<String>index - The i ndex of element to return.
IndexOutOfBoundsException - if index is out of range (index
< 0 || index >= size()).
public String set(int index,
String element)
set in interface List<String>set in class AbstractList<String>index - The i ndex of element to replace.element - The e lement to be stored at the specified position.
IndexOutOfBoundsException - if index out of range
(index < 0 || index >= size()).public boolean add(String o)
add in interface Collection<String>add in interface List<String>add in class AbstractList<String>o - The e lement to be appended to this list.
public void add(int index,
String element)
add in interface List<String>add in class AbstractList<String>index - The i ndex at which the specified element is to be inserted.element - The e lement to be inserted.
IndexOutOfBoundsException - if index is out of range
(index < 0 || index > size()).public String remove(int index)
remove in interface List<String>remove in class AbstractList<String>index - The index of the element to removed.
IndexOutOfBoundsException - if index out of range (index
< 0 || index >= size()).public boolean remove(Object o)
remove in interface Collection<String>remove in interface List<String>remove in class AbstractCollection<String>o - The e lement to be removed from this list, if present.
public void clear()
clear in interface Collection<String>clear in interface List<String>clear in class AbstractList<String>public boolean addAll(Collection<? extends String> c)
addAll in interface Collection<String>addAll in interface List<String>addAll in class AbstractCollection<String>c - The elements to be inserted into this list.
NullPointerException - if the specified collection is null.
public boolean addAll(int index,
Collection<? extends String> c)
addAll in interface List<String>addAll in class AbstractList<String>index - The i ndex at which to insert first element
from the specified collection.c - The e lements to be inserted into this list.
IndexOutOfBoundsException - if index out of range (index
< 0 || index > size()).
NullPointerException - if the specified Collection is null.
protected void removeRange(int fromIndex,
int toIndex)
removeRange in class AbstractList<String>fromIndex - The i ndex of first element to be removed.toIndex - The i ndex after last element to be removed.
|
com.im.commons 5.9 | ||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||