java.lang.Object
org.hsqldb.map.BaseHashMap
org.hsqldb.lib.OrderedLongHashSet
public class OrderedLongHashSet
extends org.hsqldb.map.BaseHashMap
A list which is also a set of long primitives which maintains the insertion
order of the elements and allows access by index. Iterators return the keys
or values in the index order.
- Since:
- 1.9.0
- Author:
- Fred Toussi (fredt@users dot sourceforge.net)
-
Field Summary
Fields inherited from class org.hsqldb.map.BaseHashMap
ACCESS_MAX, emptyObjectArray
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionboolean
add
(long key) boolean
addAll
(OrderedLongHashSet col) boolean
contains
(long key) long
get
(int index) int
getIndex
(long value) int
getOrderedStartMatchCount
(long[] array) int
getStartMatchCount
(long[] array) boolean
insert
(int index, long key) iterator()
boolean
remove
(long key) void
removeEntry
(int index) long[]
toArray()
Methods inherited from class org.hsqldb.map.BaseHashMap
clear, clone, isEmpty, size
-
Constructor Details
-
OrderedLongHashSet
public OrderedLongHashSet() -
OrderedLongHashSet
- Throws:
IllegalArgumentException
-
-
Method Details
-
contains
public boolean contains(long key) -
add
public boolean add(long key) -
insert
- Throws:
IndexOutOfBoundsException
-
remove
public boolean remove(long key) -
removeEntry
- Throws:
IndexOutOfBoundsException
-
get
public long get(int index) -
getIndex
public int getIndex(long value) -
getStartMatchCount
public int getStartMatchCount(long[] array) -
getOrderedStartMatchCount
public int getOrderedStartMatchCount(long[] array) -
addAll
-
toArray
public long[] toArray() -
iterator
-