Package ghidra.generic.util.datastruct
Class RestrictedValueSortedMap.RestrictedValueSortedMapKeyList
- java.lang.Object
-
- ghidra.generic.util.datastruct.RestrictedValueSortedMap.RestrictedValueSortedMapKeyList
-
- All Implemented Interfaces:
ValueSortedMap.ValueSortedMapKeyList<K>
,java.lang.Iterable<K>
,java.util.Collection<K>
,java.util.Deque<K>
,java.util.List<K>
,java.util.Queue<K>
,java.util.Set<K>
- Enclosing class:
- RestrictedValueSortedMap<K,V>
public class RestrictedValueSortedMap.RestrictedValueSortedMapKeyList extends java.lang.Object implements ValueSortedMap.ValueSortedMapKeyList<K>
A list view suitable forValueSortedMap.keySet()
ofRestrictedValueSortedMap
-
-
Constructor Summary
Constructors Constructor Description RestrictedValueSortedMapKeyList()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
add(int index, K element)
boolean
add(K e)
boolean
addAll(int index, java.util.Collection<? extends K> c)
boolean
addAll(java.util.Collection<? extends K> c)
void
addFirst(K e)
void
addLast(K e)
void
clear()
boolean
contains(java.lang.Object o)
boolean
containsAll(java.util.Collection<?> c)
java.util.Iterator<K>
descendingIterator()
K
element()
K
get(int index)
K
getFirst()
K
getLast()
int
indexOf(java.lang.Object o)
boolean
isEmpty()
java.util.Iterator<K>
iterator()
int
lastIndexOf(java.lang.Object o)
java.util.ListIterator<K>
listIterator()
java.util.ListIterator<K>
listIterator(int index)
boolean
offer(K e)
boolean
offerFirst(K e)
boolean
offerLast(K e)
K
peek()
K
peekFirst()
K
peekLast()
K
poll()
K
pollFirst()
K
pollLast()
K
pop()
void
push(K e)
K
remove()
K
remove(int index)
boolean
remove(java.lang.Object o)
boolean
removeAll(java.util.Collection<?> c)
K
removeFirst()
boolean
removeFirstOccurrence(java.lang.Object o)
K
removeLast()
boolean
removeLastOccurrence(java.lang.Object o)
boolean
retainAll(java.util.Collection<?> c)
K
set(int index, K element)
int
size()
java.util.List<K>
subList(int fromIndex, int toIndex)
java.lang.Object[]
toArray()
<T> T[]
toArray(T[] a)
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface ghidra.generic.util.datastruct.ValueSortedMap.ValueSortedMapKeyList
spliterator
-
-
-
-
Method Detail
-
size
public int size()
-
isEmpty
public boolean isEmpty()
-
contains
public boolean contains(java.lang.Object o)
-
iterator
public java.util.Iterator<K> iterator()
-
toArray
public java.lang.Object[] toArray()
-
toArray
public <T> T[] toArray(T[] a)
-
add
public boolean add(K e)
-
remove
public boolean remove(java.lang.Object o)
-
containsAll
public boolean containsAll(java.util.Collection<?> c)
-
addAll
public boolean addAll(java.util.Collection<? extends K> c)
-
retainAll
public boolean retainAll(java.util.Collection<?> c)
-
removeAll
public boolean removeAll(java.util.Collection<?> c)
-
clear
public void clear()
-
addAll
public boolean addAll(int index, java.util.Collection<? extends K> c)
- Specified by:
addAll
in interfacejava.util.List<K>
-
indexOf
public int indexOf(java.lang.Object o)
- Specified by:
indexOf
in interfacejava.util.List<K>
-
lastIndexOf
public int lastIndexOf(java.lang.Object o)
- Specified by:
lastIndexOf
in interfacejava.util.List<K>
-
listIterator
public java.util.ListIterator<K> listIterator()
- Specified by:
listIterator
in interfacejava.util.List<K>
-
listIterator
public java.util.ListIterator<K> listIterator(int index)
- Specified by:
listIterator
in interfacejava.util.List<K>
-
subList
public java.util.List<K> subList(int fromIndex, int toIndex)
- Specified by:
subList
in interfacejava.util.List<K>
-
removeFirstOccurrence
public boolean removeFirstOccurrence(java.lang.Object o)
- Specified by:
removeFirstOccurrence
in interfacejava.util.Deque<K>
-
removeLastOccurrence
public boolean removeLastOccurrence(java.lang.Object o)
- Specified by:
removeLastOccurrence
in interfacejava.util.Deque<K>
-
offer
public boolean offer(K e)
-
remove
public K remove()
-
poll
public K poll()
-
element
public K element()
-
peek
public K peek()
-
-