public class DoubleList
extends java.lang.Object
Constructor and Description |
---|
DoubleList() |
DoubleList(java.util.Map map)
Creates a DoubleList from the keys and values of a given Map
|
Modifier and Type | Method and Description |
---|---|
void |
add(java.util.Map.Entry mapEntry)
Adds a pair of elements to this DoubleList
|
void |
add(java.lang.Object key,
java.lang.Object value)
Adds a pair of elements to this DoubleList
|
void |
addAt(java.util.Map.Entry mapEntry,
int index)
Adds a pair of elements to this DoubleList at the given index
|
void |
addAt(java.lang.Object key,
java.lang.Object value,
int index)
Adds a pair of elements to this DoubleList at the given index
|
boolean |
contains(java.lang.Object obj) |
boolean |
containsKey(java.lang.Object obj) |
boolean |
containsValue(java.lang.Object obj) |
java.util.Map.Entry |
get(int index)
Returns a pair of elements in this DoubleList
|
java.lang.Object |
getKey(int index)
Returns an object in this DoubleList
|
java.lang.Object |
getKey(java.lang.Object obj)
Returns the object corresponding to the given object
|
java.lang.Object |
getValue(int index)
Returns an object in this DoubleList
|
java.lang.Object |
getValue(java.lang.Object obj)
Returns the object corresponding to the given object
|
int |
indexOf(java.lang.Object obj)
Returns the (intern) index of the given object, if it is present in one of both intern Lists.
|
java.util.Iterator |
iterator()
Iterator
|
java.util.Iterator |
keyIterator()
Iterator over keys
|
boolean |
remove(int index)
Removes an object-pair from the DoubleList
|
boolean |
remove(java.util.Map.Entry mapEntry)
Removes an object-pair from the DoubleList
|
boolean |
remove(java.lang.Object obj)
Removes an object-pair from the DoubleList
|
boolean |
removeKey(java.lang.Object obj)
Removes an object-pair from the DoubleList referenced by the first part of the pair
|
boolean |
removeValue(java.lang.Object obj)
Removes an object-pair from the DoubleList referenced by the second part of the pair
|
int |
size()
Size of this List
|
java.util.Iterator |
valueIterator()
Iterator over keys
|
public DoubleList()
public DoubleList(java.util.Map map)
map
- to convertpublic void add(java.util.Map.Entry mapEntry)
mapEntry
- public void addAt(java.util.Map.Entry mapEntry, int index)
mapEntry
- index
- public void add(java.lang.Object key, java.lang.Object value)
key
- element 1value
- element 2public void addAt(java.lang.Object key, java.lang.Object value, int index)
key
- element 1value
- element 2index
- public java.util.Map.Entry get(int index)
index
- public java.lang.Object getKey(int index)
index
- public java.lang.Object getValue(int index)
index
- public java.lang.Object getKey(java.lang.Object obj)
obj
- the other (second) part of the requested objectpublic java.lang.Object getValue(java.lang.Object obj)
obj
- the other (first) part of the requested objectpublic int indexOf(java.lang.Object obj)
obj
- public boolean remove(java.lang.Object obj)
obj
- (one part of the pair) to removepublic boolean removeValue(java.lang.Object obj)
obj
- (second part of the pair) to removepublic boolean removeKey(java.lang.Object obj)
obj
- (first part of the pair) to removepublic boolean remove(int index)
index
- of one part of the object-pair to removepublic boolean remove(java.util.Map.Entry mapEntry)
mapEntry
- the object-pair to removepublic boolean contains(java.lang.Object obj)
public boolean containsKey(java.lang.Object obj)
public boolean containsValue(java.lang.Object obj)
public java.util.Iterator iterator()
public java.util.Iterator keyIterator()
public java.util.Iterator valueIterator()
public int size()
Copyright © 2000-2025 OAshi S.à r.l. All Rights Reserved.