Uses of Class
cloud.opencode.base.collections.immutable.ImmutableSortedSet
Packages that use ImmutableSortedSet
Package
Description
Immutable Collections Package
不可变集合包
Transform Collections Package - Collection Transformation Utilities
转换集合包 - 集合转换工具
-
Uses of ImmutableSortedSet in cloud.opencode.base.collections
Methods in cloud.opencode.base.collections that return ImmutableSortedSetModifier and TypeMethodDescriptionFluentIterable.toSortedSet(Comparator<? super E> comparator) Collect to sorted immutable set. -
Uses of ImmutableSortedSet in cloud.opencode.base.collections.immutable
Methods in cloud.opencode.base.collections.immutable that return ImmutableSortedSetModifier and TypeMethodDescriptionImmutableSortedSet.Builder.build()Build the immutable sorted set.static <E extends Comparable<? super E>>
ImmutableSortedSet<E> ImmutableSortedSet.copyOf(Collection<? extends E> elements) Copy from a collection.static <E> ImmutableSortedSet<E> ImmutableSortedSet.copyOf(Collection<? extends E> elements, Comparator<? super E> comparator) Copy from a collection with comparator.static <E extends Comparable<? super E>>
ImmutableSortedSet<E> ImmutableSortedSet.of()Return an empty immutable sorted set.static <E extends Comparable<? super E>>
ImmutableSortedSet<E> ImmutableSortedSet.of(E e1) Return an immutable sorted set with one element.static <E extends Comparable<? super E>>
ImmutableSortedSet<E> ImmutableSortedSet.of(E... elements) Return an immutable sorted set with multiple elements. -
Uses of ImmutableSortedSet in cloud.opencode.base.collections.transform
Methods in cloud.opencode.base.collections.transform that return types with arguments of type ImmutableSortedSetModifier and TypeMethodDescriptionstatic <T extends Comparable<? super T>>
Collector<T, ?, ImmutableSortedSet<T>> MoreCollectorUtil.toImmutableSortedSet()Collector to ImmutableSortedSet using natural ordering.static <T> Collector<T, ?, ImmutableSortedSet<T>> MoreCollectorUtil.toImmutableSortedSet(Comparator<? super T> comparator) Collector to ImmutableSortedSet.