- java.lang.Object
-
- swim.structure.collections.ValueIterable<T>
-
- swim.structure.collections.ValueCollection<T>
-
- swim.structure.collections.ValueList<T>
-
- All Implemented Interfaces:
Iterable<T>,Collection<T>,List<T>
- Direct Known Subclasses:
ValueKeyedList
public class ValueList<T> extends ValueCollection<T> implements List<T>
-
-
Field Summary
-
Fields inherited from class swim.structure.collections.ValueIterable
inner, valueForm
-
-
Method Summary
Modifier and Type Method Description voidadd(int index, T newObject)booleanaddAll(int index, Collection<? extends T> newObjects)booleanequals(Object other)Tget(int index)inthashCode()intindexOf(Object object)List<Value>inner()intlastIndexOf(Object object)ListIterator<T>listIterator()ListIterator<T>listIterator(int index)Tremove(int index)Tset(int index, T newObject)List<T>subList(int fromIndex, int toIndex)<T2> ValueList<T2>valueClass(Class<T2> valueClass)<T2> ValueList<T2>valueForm(Form<T2> valueForm)-
Methods inherited from class swim.structure.collections.ValueCollection
add, addAll, clear, contains, containsAll, isEmpty, remove, removeAll, retainAll, size, toArray, toArray, toString
-
Methods inherited from class swim.structure.collections.ValueIterable
iterator, valueForm
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
-
-
-
Method Detail
-
inner
public List<Value> inner()
- Overrides:
innerin classValueCollection<T>
-
valueForm
public <T2> ValueList<T2> valueForm(Form<T2> valueForm)
- Overrides:
valueFormin classValueCollection<T>
-
valueClass
public <T2> ValueList<T2> valueClass(Class<T2> valueClass)
- Overrides:
valueClassin classValueCollection<T>
-
lastIndexOf
public int lastIndexOf(Object object)
- Specified by:
lastIndexOfin interfaceList<T>
-
addAll
public boolean addAll(int index, Collection<? extends T> newObjects)
-
listIterator
public ListIterator<T> listIterator(int index)
- Specified by:
listIteratorin interfaceList<T>
-
listIterator
public ListIterator<T> listIterator()
- Specified by:
listIteratorin interfaceList<T>
-
equals
public boolean equals(Object other)
-
-