org.hsqldb.lib
Interface HsqlList
- All Known Implementing Classes:
- HsqlArrayList, HsqlDeque, HsqlLinkedList
- public interface HsqlList
This should be used as the datatype for parameters and instance variables
instead of HsqlArrayList or HsqlLinkedList to allow interchangable use of the
two.
- Since:
- 1.7.2
- Version:
- 1.7.2
- Author:
- dnordahl@users
add
public void add(int index,
Object element)
add
public boolean add(Object element)
get
public Object get(int index)
remove
public Object remove(int index)
set
public Object set(int index,
Object element)
isEmpty
public boolean isEmpty()
size
public int size()
iterator
public Iterator iterator()
Copyright © 2001 - 2004 HSQL Development Group. All Rights Reserved.