Package com.cbe
Class Items_Vec
- java.lang.Object
-
- java.util.AbstractCollection<E>
-
- java.util.AbstractList<Item>
-
- com.cbe.Items_Vec
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(int index, Item e)
boolean
add(Item e)
long
capacity()
void
clear()
Item
get(int index)
boolean
isEmpty()
Item
remove(int index)
void
reserve(long n)
Item
set(int index, Item e)
int
size()
-
Methods inherited from class java.util.AbstractList
addAll, equals, hashCode, indexOf, iterator, lastIndexOf, listIterator, listIterator, removeRange, subList
-
Methods inherited from class java.util.AbstractCollection
addAll, contains, containsAll, remove, removeAll, retainAll, toArray, toArray, toString
-
-
-
-
Method Detail
-
get
public Item get(int index)
-
add
public boolean add(Item e)
-
add
public void add(int index, Item e)
-
remove
public Item remove(int index)
-
size
public int size()
-
capacity
public long capacity()
-
reserve
public void reserve(long n)
-
isEmpty
public boolean isEmpty()
-
-