Interface ReadOnlyStrictCollection<E>
- All Superinterfaces:
com.google.gwt.user.client.rpc.IsSerializable
,Iterable<E>
,IterableWithSize<E>
,Serializable
- All Known Subinterfaces:
ReadOnlyStrictList<E>
,StrictCollection<E>
,StrictList<E>
- All Known Implementing Classes:
ImmutableStrictList
,StrictHashSet
,StrictListImpl
public interface ReadOnlyStrictCollection<E>
extends IterableWithSize<E>, com.google.gwt.user.client.rpc.IsSerializable, Serializable
- Since:
- 3.9.0
-
Method Summary
Modifier and TypeMethodDescriptionboolean
boolean
containsAll
(Iterable<? extends E> elements) <T> ReadOnlyStrictCollection<T>
toTransformed
(NotStrictTransformer<E, T> transformer) Each element from the collection will be transformed or skipped (if transformer returnsnull
)<T> ReadOnlyStrictCollection<T>
toTransformed
(StrictTransformer<E, T> transformer) Each element from the collection will be transformed.Methods inherited from interface java.lang.Iterable
forEach, iterator, spliterator
Methods inherited from interface com.polarion.alm.shared.api.utils.collections.IterableWithSize
addAllTo, isEmpty, size, toArray, toArrayList
-
Method Details
-
contains
-
containsAll
-