public class XmlSimpleList extends Object implements List, Serializable
List returned for XML simple list values.
XmlSimpleList implements an equals() and hashCode() that compare list
contents, so two XmlSimpleLists are the same if they have the same
values in the same order.| Constructor and Description |
|---|
XmlSimpleList(List list)
Constructs an immutable XmlSimpleList that wraps (does not copy)
the given
List. |
| Modifier and Type | Method and Description |
|---|---|
void |
add(int index,
Object element)
Unsupported because this list is immutable.
|
boolean |
add(Object o)
Unsupported because this list is immutable.
|
boolean |
addAll(Collection coll)
Unsupported because this list is immutable.
|
boolean |
addAll(int index,
Collection c)
Unsupported because this list is immutable.
|
void |
clear()
Unsupported because this list is immutable.
|
boolean |
contains(Object o)
True if the list is contains an object equal to o.
|
boolean |
containsAll(Collection coll)
True if the list is contains all the objects in the given collection.
|
boolean |
equals(Object o)
Two XmlSimpleLists are equal if all their items are equal.
|
Object |
get(int index)
Returns the object at the specified position in this list.
|
int |
hashCode()
Combines the hash codes of all the list items.
|
int |
indexOf(Object o)
Returns index of the first occurance of an object equal to o.
|
boolean |
isEmpty()
True if the list is empty.
|
Iterator |
iterator()
Returns an iterator over the elements in this list in proper sequence.
|
int |
lastIndexOf(Object o)
Returns index of the last occurance of an object equal to o.
|
ListIterator |
listIterator()
Returns a list iterator of the elements in this list in proper sequence.
|
ListIterator |
listIterator(int index)
Returns a list iterator of the elements in this list in proper sequence, starting at the specified position in this list.
|
Object |
remove(int index)
Unsupported because this list is immutable.
|
boolean |
remove(Object o)
Unsupported because this list is immutable.
|
boolean |
removeAll(Collection coll)
Unsupported because this list is immutable.
|
boolean |
retainAll(Collection coll)
Unsupported because this list is immutable.
|
Object |
set(int index,
Object element)
Unsupported because this list is immutable.
|
int |
size()
Returns the number of elements in this list.
|
List |
subList(int from,
int to)
Returns a view of the portion of this list between the specified fromIndex, inclusive, and toIndex, exclusive.
|
Object[] |
toArray()
Copies the collection to an array.
|
Object[] |
toArray(Object[] a)
Copies the collection to an array of a specified type.
|
String |
toString()
Returns a space-separated list of the string representations of all
the items in the list.
|
replaceAll, sort, spliteratorparallelStream, removeIf, streampublic int size()
size in interface Collectionsize in interface Listpublic boolean isEmpty()
isEmpty in interface CollectionisEmpty in interface Listpublic boolean contains(Object o)
contains in interface Collectioncontains in interface Listpublic boolean containsAll(Collection coll)
containsAll in interface CollectioncontainsAll in interface Listpublic Object[] toArray()
toArray in interface CollectiontoArray in interface Listpublic Object[] toArray(Object[] a)
toArray in interface CollectiontoArray in interface Listpublic boolean add(Object o)
add in interface Collectionadd in interface Listpublic boolean addAll(Collection coll)
addAll in interface CollectionaddAll in interface Listpublic boolean remove(Object o)
remove in interface Collectionremove in interface Listpublic boolean removeAll(Collection coll)
removeAll in interface CollectionremoveAll in interface Listpublic boolean retainAll(Collection coll)
retainAll in interface CollectionretainAll in interface Listpublic void clear()
clear in interface Collectionclear in interface Listpublic Object get(int index)
public void add(int index,
Object element)
public Object remove(int index)
public int indexOf(Object o)
public int lastIndexOf(Object o)
lastIndexOf in interface Listpublic boolean addAll(int index,
Collection c)
public List subList(int from, int to)
public Iterator iterator()
public ListIterator listIterator()
listIterator in interface Listpublic ListIterator listIterator(int index)
listIterator in interface Listpublic String toString()
public boolean equals(Object o)
Copyright © 2010 - 2020 Adobe. All Rights Reserved