public class EmptyDBIDs extends Object implements ArrayStaticDBIDs, SetDBIDs
Modifier and Type | Class and Description |
---|---|
protected static class |
EmptyDBIDs.EmptyDBIDIterator
Iterator for empty DBIDs
|
Modifier and Type | Field and Description |
---|---|
static EmptyDBIDs.EmptyDBIDIterator |
EMPTY_ITERATOR
Empty DBID iterator
|
Modifier | Constructor and Description |
---|---|
protected |
EmptyDBIDs()
Constructor.
|
Modifier and Type | Method and Description |
---|---|
int |
binarySearch(DBID key)
Search for the position of the given key, assuming that the data set is
sorted.
|
boolean |
contains(DBID o)
Test whether an ID is contained.
|
DBID |
get(int i)
Get the i'th entry (starting at 0)
|
boolean |
isEmpty()
Test for an empty DBID collection.
|
DBIDIter |
iter()
Iterable
|
Iterator<DBID> |
iterator()
Retrieve Iterator access to the IDs.
|
int |
size()
Size of the DBID "collection".
|
public static final EmptyDBIDs.EmptyDBIDIterator EMPTY_ITERATOR
public boolean contains(DBID o)
DBIDs
public Iterator<DBID> iterator()
DBIDs
public int size()
ArrayDBIDs
size
in interface ArrayDBIDs
size
in interface DBIDs
public boolean isEmpty()
DBIDs
public DBID get(int i)
ArrayDBIDs
get
in interface ArrayDBIDs
i
- Indexpublic DBIDIter iter()
ArrayDBIDs
iter
in interface ArrayDBIDs
iter
in interface DBIDs
public int binarySearch(DBID key)
ArrayDBIDs
-(1+insertion position)
is returned, as
for Java Collections.binarySearch(java.util.List<? extends java.lang.Comparable<? super T>>, T)
binarySearch
in interface ArrayDBIDs
key
- Key to search for