Class JoinTableCollectionFromTargetCollection<J,T>
- java.lang.Object
-
- net.lecousin.reactive.data.relational.model.JoinTableCollectionFromTargetCollection<J,T>
-
- All Implemented Interfaces:
Iterable<J>,Collection<J>
public class JoinTableCollectionFromTargetCollection<J,T> extends Object implements Collection<J>
-
-
Constructor Summary
Constructors Constructor Description JoinTableCollectionFromTargetCollection(Object sourceInstance, Collection<J> originalCollection, Set<T> targetCollection, String joinClassName, int sourceAttributeLinkNumber)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanadd(J e)booleanaddAll(Collection<? extends J> c)voidclear()booleancontains(Object o)booleancontainsAll(Collection<?> c)booleanisEmpty()Iterator<J>iterator()booleanremove(Object o)booleanremoveAll(Collection<?> c)booleanretainAll(Collection<?> c)intsize()Object[]toArray()<R> R[]toArray(R[] 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.Collection
equals, hashCode, parallelStream, removeIf, spliterator, stream, toArray
-
-
-
-
Method Detail
-
size
public int size()
- Specified by:
sizein interfaceCollection<J>
-
isEmpty
public boolean isEmpty()
- Specified by:
isEmptyin interfaceCollection<J>
-
clear
public void clear()
- Specified by:
clearin interfaceCollection<J>
-
contains
public boolean contains(Object o)
- Specified by:
containsin interfaceCollection<J>
-
containsAll
public boolean containsAll(Collection<?> c)
- Specified by:
containsAllin interfaceCollection<J>
-
toArray
public Object[] toArray()
- Specified by:
toArrayin interfaceCollection<J>
-
toArray
public <R> R[] toArray(R[] a)
- Specified by:
toArrayin interfaceCollection<J>
-
add
public boolean add(J e)
- Specified by:
addin interfaceCollection<J>
-
addAll
public boolean addAll(Collection<? extends J> c)
- Specified by:
addAllin interfaceCollection<J>
-
remove
public boolean remove(Object o)
- Specified by:
removein interfaceCollection<J>
-
removeAll
public boolean removeAll(Collection<?> c)
- Specified by:
removeAllin interfaceCollection<J>
-
retainAll
public boolean retainAll(Collection<?> c)
- Specified by:
retainAllin interfaceCollection<J>
-
-