Interface HTAttachedContainers
-
- All Implemented Interfaces:
-
kotlin.collections.Collection,kotlin.collections.Iterable
public interface HTAttachedContainers<TYPE extends Object, ATTACHED extends HTAttachedContainers<TYPE, ATTACHED>> implements Collection<TYPE>
-
-
Method Summary
Modifier and Type Method Description TYPEget(Integer index)TYPEgetOrNull(Integer index)abstract ATTACHEDcreate(List<TYPE> containers)ATTACHEDwith(Integer index, TYPE element)BooleanisEmpty()Booleancontains(TYPE element)Iterator<TYPE>iterator()BooleancontainsAll(Collection<TYPE> elements)abstract List<TYPE>getContainers()IntegergetSize()-
Methods inherited from class kotlin.collections.Collection
parallelStream, stream, toArray -
Methods inherited from class kotlin.collections.Iterable
forEach, spliterator -
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
-
Method Detail
-
containsAll
Boolean containsAll(Collection<TYPE> elements)
-
getContainers
abstract List<TYPE> getContainers()
-
-
-
-