public class BoundedPriorityList extends Object implements Collection
Modifier and Type | Field and Description |
---|---|
protected List |
fulllist |
protected ArrayList |
worklist |
Constructor and Description |
---|
BoundedPriorityList(List list) |
Modifier and Type | Method and Description |
---|---|
boolean |
add(Object toadd) |
boolean |
addAll(Collection c) |
boolean |
addAll(int index,
Collection c) |
void |
clear() |
boolean |
contains(Object o) |
boolean |
containsAll(Collection c) |
boolean |
equals(Object obj) |
int |
hashCode() |
boolean |
isEmpty() |
Iterator |
iterator() |
boolean |
remove(Object o) |
boolean |
removeAll(Collection c) |
Object |
removeFirst() |
boolean |
retainAll(Collection c) |
int |
size() |
Object[] |
toArray() |
Object[] |
toArray(Object[] a) |
String |
toString() |
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
parallelStream, removeIf, spliterator, stream
public BoundedPriorityList(List list)
public boolean isEmpty()
isEmpty
in interface Collection
public Object removeFirst()
public boolean add(Object toadd)
add
in interface Collection
public boolean addAll(Collection c)
addAll
in interface Collection
public boolean addAll(int index, Collection c)
public void clear()
clear
in interface Collection
public boolean contains(Object o)
contains
in interface Collection
public boolean containsAll(Collection c)
containsAll
in interface Collection
public Iterator iterator()
iterator
in interface Iterable
iterator
in interface Collection
public boolean remove(Object o)
remove
in interface Collection
public boolean removeAll(Collection c)
removeAll
in interface Collection
public boolean retainAll(Collection c)
retainAll
in interface Collection
public int size()
size
in interface Collection
public Object[] toArray()
toArray
in interface Collection
public Object[] toArray(Object[] a)
toArray
in interface Collection
public boolean equals(Object obj)
equals
in interface Collection
equals
in class Object
public int hashCode()
hashCode
in interface Collection
hashCode
in class Object
Copyright © 2021 Soot OSS. All rights reserved.