org.sourceforge.jemm.collections
Class JemmSet<E>
java.lang.Object
org.sourceforge.jemm.util.JEMMType
org.sourceforge.jemm.collections.JemmSet<E>
- Type Parameters:
E
- The type of the set.
- All Implemented Interfaces:
- java.lang.Iterable<E>, java.util.Collection<E>, java.util.Set<E>, JEMMObject
public final class JemmSet<E>
- extends JEMMType
- implements java.util.Set<E>
Persistent set implementation.
Note: Nulls are not allowed as values.
- Author:
- Rory Graves
- See Also:
Set
Method Summary |
boolean |
add(E uValue)
|
boolean |
addAll(java.util.Collection<? extends E> uCollection)
|
void |
clear()
|
boolean |
contains(java.lang.Object uValue)
|
boolean |
containsAll(java.util.Collection<?> uCollection)
|
boolean |
isEmpty()
|
java.util.Iterator<E> |
iterator()
|
boolean |
remove(java.lang.Object uValue)
|
boolean |
removeAll(java.util.Collection<?> uCollection)
|
boolean |
retainAll(java.util.Collection<?> uCollection)
|
int |
size()
|
java.lang.Object[] |
toArray()
|
|
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 java.util.Set |
equals, hashCode |
JemmSet
public JemmSet()
- Creates a JemmSet.
JemmSet
protected JemmSet(ShadowTypeObject jemmOIF)
- Internally JEMM used constructor
- Parameters:
jemmOIF
- The underlying shadow object
add
public boolean add(E uValue)
- Specified by:
add
in interface java.util.Collection<E>
- Specified by:
add
in interface java.util.Set<E>
addAll
public boolean addAll(java.util.Collection<? extends E> uCollection)
- Specified by:
addAll
in interface java.util.Collection<E>
- Specified by:
addAll
in interface java.util.Set<E>
clear
public void clear()
- Specified by:
clear
in interface java.util.Collection<E>
- Specified by:
clear
in interface java.util.Set<E>
contains
public boolean contains(java.lang.Object uValue)
- Specified by:
contains
in interface java.util.Collection<E>
- Specified by:
contains
in interface java.util.Set<E>
containsAll
public boolean containsAll(java.util.Collection<?> uCollection)
- Specified by:
containsAll
in interface java.util.Collection<E>
- Specified by:
containsAll
in interface java.util.Set<E>
isEmpty
public boolean isEmpty()
- Specified by:
isEmpty
in interface java.util.Collection<E>
- Specified by:
isEmpty
in interface java.util.Set<E>
iterator
public java.util.Iterator<E> iterator()
- Specified by:
iterator
in interface java.lang.Iterable<E>
- Specified by:
iterator
in interface java.util.Collection<E>
- Specified by:
iterator
in interface java.util.Set<E>
remove
public boolean remove(java.lang.Object uValue)
- Specified by:
remove
in interface java.util.Collection<E>
- Specified by:
remove
in interface java.util.Set<E>
removeAll
public boolean removeAll(java.util.Collection<?> uCollection)
- Specified by:
removeAll
in interface java.util.Collection<E>
- Specified by:
removeAll
in interface java.util.Set<E>
retainAll
public boolean retainAll(java.util.Collection<?> uCollection)
- Specified by:
retainAll
in interface java.util.Collection<E>
- Specified by:
retainAll
in interface java.util.Set<E>
size
public int size()
- Specified by:
size
in interface java.util.Collection<E>
- Specified by:
size
in interface java.util.Set<E>
toArray
public java.lang.Object[] toArray()
- Specified by:
toArray
in interface java.util.Collection<E>
- Specified by:
toArray
in interface java.util.Set<E>
toArray
public <T> T[] toArray(T[] a)
- Specified by:
toArray
in interface java.util.Collection<E>
- Specified by:
toArray
in interface java.util.Set<E>
Copyright © 2009. All Rights Reserved.