public class BoundValueList extends Object implements List<Value>
| Constructor and Description |
|---|
BoundValueList()
Creates a BoundValueList with list=null
|
BoundValueList(List<Value> l)
Creates a BoundValueList with list=l
|
| Modifier and Type | Method and Description |
|---|---|
void |
add(int index,
Value element) |
boolean |
add(Value v) |
boolean |
addAll(Collection<? extends Value> x) |
boolean |
addAll(int i,
Collection<? extends Value> x) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection<?> x) |
boolean |
equals(Object o) |
Value |
get(int index) |
int |
hashCode() |
int |
indexOf(Object o) |
boolean |
isEmpty() |
Iterator<Value> |
iterator() |
int |
lastIndexOf(Object v) |
ListIterator<Value> |
listIterator() |
ListIterator<Value> |
listIterator(int index) |
Value |
remove(int index) |
boolean |
remove(Object o) |
boolean |
removeAll(Collection<?> c) |
boolean |
retainAll(Collection<?> c) |
Value |
set(int index,
Value e) |
void |
setList(List<Value> l)
Sets the list
|
int |
size() |
List<Value> |
subList(int fromIndex,
int toIndex) |
Object[] |
toArray() |
<T> T[] |
toArray(T[] a) |
public boolean add(Value v)
public boolean addAll(Collection<? extends Value> x)
public boolean addAll(int i,
Collection<? extends Value> x)
public void clear()
public boolean contains(Object o)
public boolean containsAll(Collection<?> x)
containsAll in interface Collection<Value>containsAll in interface List<Value>public boolean equals(Object o)
public int hashCode()
public boolean isEmpty()
public int lastIndexOf(Object v)
lastIndexOf in interface List<Value>public ListIterator<Value> listIterator()
listIterator in interface List<Value>public ListIterator<Value> listIterator(int index)
listIterator in interface List<Value>public boolean remove(Object o)
public boolean removeAll(Collection<?> c)
public boolean retainAll(Collection<?> c)
public int size()
public Object[] toArray()
Copyright © 2015. All rights reserved.