public final class StringListImpl extends AbstractList implements StringList
| Modifier and Type | Field and Description |
|---|---|
static StringListImpl |
EMPTY_LIST
An immutable empty list.
|
modCount| Constructor and Description |
|---|
StringListImpl(String[] array,
int length)
Construct an XSObjectList implementation
|
StringListImpl(Vector v) |
| Modifier and Type | Method and Description |
|---|---|
boolean |
contains(String item)
Checks if the
GenericString item is a member
of this list. |
Object |
get(int index) |
int |
getLength()
The number of
Objects in the list. |
String |
item(int index)
Returns the
indexth item in the collection or
null if index is greater than or equal to
the number of objects in the list. |
int |
size() |
Object[] |
toArray() |
Object[] |
toArray(Object[] a) |
add, add, addAll, clear, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, remove, removeRange, set, subListaddAll, contains, containsAll, isEmpty, remove, removeAll, retainAll, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitadd, add, addAll, addAll, clear, contains, containsAll, equals, hashCode, indexOf, isEmpty, iterator, lastIndexOf, listIterator, listIterator, remove, remove, removeAll, replaceAll, retainAll, set, sort, spliterator, subListparallelStream, removeIf, streampublic static final StringListImpl EMPTY_LIST
public StringListImpl(Vector v)
public StringListImpl(String[] array, int length)
array - the data arraylength - the number of elementspublic int getLength()
Objects in the list. The range of valid
child node indices is 0 to length-1 inclusive.getLength in interface StringListpublic boolean contains(String item)
GenericString item is a member
of this list.contains in interface StringListitem - GenericString whose presence in this list is
to be tested.GenericString
item.public String item(int index)
StringListindexth item in the collection or
null if index is greater than or equal to
the number of objects in the list. The index starts at 0.item in interface StringListindex - index into the collection.GenericString at the indexth
position in the StringList, or null if
the index specified is not valid.public Object get(int index)
get in interface Listget in class AbstractListpublic int size()
size in interface Collectionsize in interface Listsize in class AbstractCollectionpublic Object[] toArray()
toArray in interface CollectiontoArray in interface ListtoArray in class AbstractCollectionpublic Object[] toArray(Object[] a)
toArray in interface CollectiontoArray in interface ListtoArray in class AbstractCollectionCopyright © 2018 JBoss by Red Hat. All rights reserved.