|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectedu.mit.csail.sdg.alloy4.SafeList<T>
T
- - the type of elementpublic final class SafeList<T>
This list allows add() but disallows remove() and set(); null values are allowed.
By making this sacrifice, we are able to provide a very cheap "duplicate method" that simulates making a copy without actually making a copy.
Furthermore, this class's iterator allows concurrent insertion and iteration (that is, we can iterate over the list while adding elements to the list at the same time). The iterator is guaranteed to iterate over exactly the elements that existed at the time that the iterator was created.
Thread Safety: Safe.
Constructor Summary | |
---|---|
SafeList()
Constructs a modifiable empty list. |
|
SafeList(java.util.Collection<? extends T> initialValue)
Constructs a modifiable list containing the elements from the given collection. |
|
SafeList(int initialCapacity)
Constructs a modifiable empty list with the initial capacity. |
|
SafeList(java.lang.Iterable<? extends T> initialValue)
Constructs a modifiable list containing the elements from the given iterable. |
Method Summary | |
---|---|
boolean |
add(T item)
Add an element into the list. |
void |
addAll(java.util.Collection<? extends T> items)
Add a collection of elements into the list. |
boolean |
contains(java.lang.Object item)
Returns true if the list contains the given element. |
SafeList<T> |
dup()
Constructs an unmodifiable copy of an existing SafeList. |
boolean |
equals(java.lang.Object that)
Returns true if (that instanceof List or that instanceof SafeList), and that contains the same elements as this list. |
T |
get(int i)
Get an element from the list. |
int |
hashCode()
Computes a hash code that is consistent with SafeList's equals() and java.util.List's hashCode() methods. |
boolean |
isEmpty()
Returns true if the list is empty. |
java.util.Iterator<T> |
iterator()
Returns an iterator that iterates over elements in this list (in the order that they were inserted). |
ConstList<T> |
makeConstList()
Constructs an unmodifiable ConstList containing the same elements as this list. |
java.util.List<T> |
makeCopy()
Constructs a modifiable ArrayList containing the same elements as this list. |
int |
size()
Returns the size of the list. |
java.lang.String |
toString()
Returns a String representation of this list. |
Methods inherited from class java.lang.Object |
---|
clone, finalize, getClass, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public SafeList()
public SafeList(int initialCapacity)
public SafeList(java.util.Collection<? extends T> initialValue)
public SafeList(java.lang.Iterable<? extends T> initialValue)
Method Detail |
---|
public SafeList<T> dup()
public java.util.List<T> makeCopy()
public ConstList<T> makeConstList()
public int hashCode()
hashCode
in class java.lang.Object
public boolean equals(java.lang.Object that)
equals
in class java.lang.Object
public boolean contains(java.lang.Object item)
public boolean add(T item)
public void addAll(java.util.Collection<? extends T> items)
public T get(int i)
public int size()
public boolean isEmpty()
public java.util.Iterator<T> iterator()
Note: This iterator's remove() method always throws UnsupportedOperationException.
Note: This iterator always returns exactly the list of elements that existed at the time that the iterator was created (even if the list is modified after that point).
iterator
in interface java.lang.Iterable<T>
public java.lang.String toString()
toString
in class java.lang.Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |