Uses of Interface
org.violetlib.collections.ICollection
-
-
Uses of ICollection in org.violetlib.collections
Subinterfaces of ICollection in org.violetlib.collections Modifier and Type Interface and Description interface
IList<V>
An immutable ordered collection of elements.interface
ISet<V>
An immutable set of elements.Methods in org.violetlib.collections that return ICollection Modifier and Type Method and Description static <V> ICollection<V>
ICollection. cast(ICollection<?> o)
Cast a collection to a specific type.static <V> ICollection<V>
ICollection. concatenate(ICollection<? extends V>... sources)
static <V> ICollection<V>
ICollection. concatenate(IList<? extends ICollection<V>> sources)
abstract ICollection<V>
Builder. values()
Return a collection containing the previously supplied (and not removed) elements.Methods in org.violetlib.collections with parameters of type ICollection Modifier and Type Method and Description abstract void
MapSetBuilder. addAll(K key, ICollection<V> values)
Add elements to the set associated with the specified key.static <V> ICollection<V>
ICollection. cast(ICollection<?> o)
Cast a collection to a specific type.static <V> ICollection<V>
ICollection. concatenate(ICollection<? extends V>... sources)
abstract ISet<V>
ISet. extendingAll(ICollection<? extends V> values)
Return a set containing the members of this set and the specified values.Method parameters in org.violetlib.collections with type arguments of type ICollection Modifier and Type Method and Description static <V> ICollection<V>
ICollection. concatenate(IList<? extends ICollection<V>> sources)
-