|
CoherenceTM v3.3 Copyright© 2000-2007 by Oracle Corporation |
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectjava.util.AbstractCollection
java.util.AbstractSet
com.tangosol.util.DeltaSet
public class DeltaSet
Implements a set which is based on another set, which is assumed to be immutable.
Nested Class Summary | |
---|---|
protected class |
DeltaSet.DeltaIterator
Iterator for the contents of a delta set. |
Constructor Summary | |
---|---|
DeltaSet(Set set)
Construct this set based on an existing set. |
Method Summary | |
---|---|
boolean |
add(Object o)
Ensures that this Collection contains the specified element. |
void |
clear()
Removes all of the elements from this Collection. |
Object |
clone()
Clone the delta set. |
boolean |
contains(Object o)
Returns true if this Collection contains the specified element. |
protected Set |
ensureAdded()
Get a mutable set of items that were added to the delta set. |
protected Set |
ensureRemoved()
Get a mutable set of items that were removed from the delta set. |
Set |
getAdded()
Determine what items were added to the delta set. |
Set |
getOriginal()
Determine what items were in the original set. |
Set |
getRemoved()
Determine what items were removed from the delta set. |
boolean |
isModified()
Determine if any items were added or removed. |
Iterator |
iterator()
Returns an Iterator over the elements contained in this Collection. |
boolean |
remove(Object o)
Removes a single instance of the specified element from this Collection, if it is present (optional operation). |
void |
reset()
Discard the changes to the set ("rollback"). |
void |
resolve()
Apply the changes to the underlying set ("commit"). |
int |
size()
Returns the number of elements in this Collection. |
Object[] |
toArray()
Returns an array containing all of the elements in this Set. |
Methods inherited from class java.util.AbstractSet |
---|
equals, hashCode, removeAll |
Methods inherited from class java.util.AbstractCollection |
---|
addAll, containsAll, isEmpty, retainAll, toArray, toString |
Methods inherited from interface java.util.Set |
---|
addAll, containsAll, isEmpty, retainAll, toArray |
Constructor Detail |
---|
public DeltaSet(Set set)
set
- the set to base this delta set onMethod Detail |
---|
public Set getOriginal()
public boolean isModified()
public Set getAdded()
public Set getRemoved()
protected Set ensureAdded()
protected Set ensureRemoved()
public void resolve()
public void reset()
public Iterator iterator()
iterator
in interface Iterable
iterator
in interface Collection
iterator
in interface Set
iterator
in class AbstractCollection
public int size()
size
in interface Collection
size
in interface Set
size
in class AbstractCollection
public boolean contains(Object o)
e
such that (o==null ? e==null :
o.equals(e))
.
contains
in interface Collection
contains
in interface Set
contains
in class AbstractCollection
o
- the object to search for in the set
public boolean add(Object o)
add
in interface Collection
add
in interface Set
add
in class AbstractCollection
o
- element whose presence in this Collection is to be ensured
public boolean remove(Object o)
e
such that (o==null ? e==null :
o.equals(e))
, if the Collection contains one or more such
elements. Returns true if the Collection contained the specified
element (or equivalently, if the Collection changed as a result of the
call).
remove
in interface Collection
remove
in interface Set
remove
in class AbstractCollection
o
- element to be removed from this Collection, if present
public void clear()
clear
in interface Collection
clear
in interface Set
clear
in class AbstractCollection
public Object[] toArray()
toArray
in interface Collection
toArray
in interface Set
toArray
in class AbstractCollection
public Object clone()
|
CoherenceTM v3.3 Copyright© 2000-2007 by Oracle Corporation |
|||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |