|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.ow2.jonas.lib.ejb21.jorm.GenClassImpl
org.ow2.jonas.lib.ejb21.jorm.Set
public class Set
This class is a basic implementation of the java.util.Set based on the generic class implementation (GenClassImpl) and the Collection implementation. This class can be used to represent a relation between bean.
| Nested Class Summary |
|---|
| Nested classes/interfaces inherited from class org.ow2.jonas.lib.ejb21.jorm.GenClassImpl |
|---|
GenClassImpl.ElementIterator |
| Field Summary |
|---|
| Fields inherited from class org.ow2.jonas.lib.ejb21.jorm.GenClassImpl |
|---|
deletedLength, ectx, gcm, isModified, listener, pb, pIndexedElems, selectForUpdate, size |
| Constructor Summary | |
|---|---|
Set()
|
|
| Method Summary | |
|---|---|
boolean |
add(Object o)
Before adding the object into the set, it checks that the new element does not exist. |
boolean |
add(Object o,
boolean callListener)
|
boolean |
addAll(Collection collection)
It iterates over the collection parameter to add each element in the collection. |
void |
clear()
It removes all elements. |
boolean |
contains(Object o)
|
boolean |
containsAll(Collection collection)
|
boolean |
isEmpty()
|
Iterator |
iterator()
|
boolean |
remove(Object o)
|
boolean |
remove(Object o,
boolean callListener)
|
boolean |
removeAll(Collection collection)
It iterates over the collection parameter to remove each element in the collection. |
boolean |
retainAll(Collection collection)
For each element of the current collection, it checks if it exist into the collection parameter. |
int |
size()
|
Object[] |
toArray()
It returns an array of the elements. |
Object[] |
toArray(Object[] objects)
It returns an array of the elements. |
| Methods inherited from class org.ow2.jonas.lib.ejb21.jorm.GenClassImpl |
|---|
createPIndexedElem, gcAdd, gcClear, gcContains, gcDeref, gcGetElement, gcGetPBinding, gcGetRealIndex, gcGetSize, gcIsModified, gcIterator, gcIterator, gcObject2ref, gcRemove, getListener, getMemoryInstance, paAdd, paDeltaSupported, paGetNbElem, paIterator, paSetNbElem, printState, read, reset, setEntityContext, setListener, setPBinding, setPClassMapping, write |
| 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 |
| Constructor Detail |
|---|
public Set()
| Method Detail |
|---|
public boolean add(Object o)
add in interface Collectionadd in interface Seto - is the element to add
public boolean add(Object o,
boolean callListener)
public int size()
size in interface Collectionsize in interface Setpublic boolean isEmpty()
isEmpty in interface CollectionisEmpty in interface Setpublic boolean contains(Object o)
contains in interface Collectioncontains in interface Setpublic Iterator iterator()
iterator in interface Iterableiterator in interface Collectioniterator in interface Setpublic Object[] toArray()
toArray in interface CollectiontoArray in interface Setpublic Object[] toArray(Object[] objects)
toArray in interface CollectiontoArray in interface Setobjects - the array into which the elements of this collection are to be stored
public boolean remove(Object o)
remove in interface Collectionremove in interface Set
public boolean remove(Object o,
boolean callListener)
public boolean containsAll(Collection collection)
containsAll in interface CollectioncontainsAll in interface Setpublic boolean addAll(Collection collection)
addAll in interface CollectionaddAll in interface Setcollection - the collection of elements to addpublic boolean removeAll(Collection collection)
removeAll in interface CollectionremoveAll in interface Setcollection - The collection of elements to removepublic boolean retainAll(Collection collection)
retainAll in interface CollectionretainAll in interface Setpublic void clear()
clear in interface Collectionclear in interface Set
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||