- java.lang.Object
-
- swim.db.STreeListView
-
-
Constructor Summary
Constructors Constructor Description STreeListView(STree tree)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(int index, Value newValue)
boolean
add(Value newValue)
boolean
addAll(int index, Collection<? extends Value> newValues)
boolean
addAll(Collection<? extends Value> newValues)
void
clear()
boolean
contains(Object value)
boolean
containsAll(Collection<?> values)
Value
get(int index)
STree
getTree()
int
indexOf(Object object)
boolean
isEmpty()
boolean
isResident()
boolean
isTransient()
Cursor<Value>
iterator()
int
lastIndexOf(Object object)
Cursor<Value>
listIterator()
Cursor<Value>
listIterator(int index)
STreeListView
load()
Value
remove(int index)
boolean
remove(Object value)
boolean
removeAll(Collection<?> values)
boolean
retainAll(Collection<?> values)
Value
set(int index, Value newValue)
int
size()
List<Value>
subList(int fromIndex, int toIndex)
Object[]
toArray()
<T> T[]
toArray(T[] array)
<V> ValueList<V>
valueClass(Class<V> valueClass)
<V> ValueList<V>
valueForm(Form<V> valueForm)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface java.util.Collection
parallelStream, removeIf, stream, toArray
-
Methods inherited from interface java.util.List
equals, hashCode, replaceAll, sort, spliterator
-
-
-
-
Field Detail
-
tree
protected final STree tree
-
-
Constructor Detail
-
STreeListView
public STreeListView(STree tree)
-
-
Method Detail
-
getTree
public STree getTree()
-
load
public STreeListView load()
-
isResident
public boolean isResident()
-
isTransient
public boolean isTransient()
-
isEmpty
public boolean isEmpty()
-
size
public int size()
-
contains
public boolean contains(Object value)
-
containsAll
public boolean containsAll(Collection<?> values)
- Specified by:
containsAll
in interfaceCollection<Value>
- Specified by:
containsAll
in interfaceList<Value>
-
lastIndexOf
public int lastIndexOf(Object object)
- Specified by:
lastIndexOf
in interfaceList<Value>
-
add
public boolean add(Value newValue)
-
addAll
public boolean addAll(Collection<? extends Value> newValues)
-
addAll
public boolean addAll(int index, Collection<? extends Value> newValues)
-
remove
public boolean remove(Object value)
-
removeAll
public boolean removeAll(Collection<?> values)
-
retainAll
public boolean retainAll(Collection<?> values)
-
clear
public void clear()
-
toArray
public Object[] toArray()
-
toArray
public <T> T[] toArray(T[] array)
-
listIterator
public Cursor<Value> listIterator()
- Specified by:
listIterator
in interfaceList<Value>
-
listIterator
public Cursor<Value> listIterator(int index)
- Specified by:
listIterator
in interfaceList<Value>
-
-