Searched defs:ImmutableSortedSet (Results 1 - 2 of 2) sorted by relevance

/external/guava/guava/src/com/google/common/collect/
H A DImmutableSortedSet.java46 * ImmutableSortedSet} contains its own private data and will <i>never</i>
60 * {@code ImmutableSortedSet} doesn't use {@link Object#equals} to determine if
72 * <b>Warning:</b> Like most sets, an {@code ImmutableSortedSet} will not
89 public abstract class ImmutableSortedSet<E> extends ImmutableSortedSetFauxverideShim<E> class in inherits:ImmutableSortedSetFauxverideShim,SortedSet,SortedIterable
95 private static final ImmutableSortedSet<Comparable> NATURAL_EMPTY_SET =
99 private static <E> ImmutableSortedSet<E> emptySet() {
100 return (ImmutableSortedSet<E>) NATURAL_EMPTY_SET;
103 static <E> ImmutableSortedSet<E> emptySet(
115 public static <E> ImmutableSortedSet<E> of() {
122 public static <E extends Comparable<? super E>> ImmutableSortedSet<
566 ImmutableSortedSet(Comparator<? super E> comparator) { method in class:ImmutableSortedSet
[all...]
/external/guava/guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/
H A DImmutableSortedSet.java34 * GWT emulation of {@link ImmutableSortedSet}.
38 public abstract class ImmutableSortedSet<E> class in inherits:ImmutableSet,SortedSet,SortedIterable
42 // which overrides ImmutableSet & which ImmutableSortedSet extends.
45 @Deprecated public static <E> ImmutableSortedSet.Builder<E> builder() {
54 private static final ImmutableSortedSet<Object> NATURAL_EMPTY_SET =
58 private static <E> ImmutableSortedSet<E> emptySet() {
59 return (ImmutableSortedSet<E>) NATURAL_EMPTY_SET;
62 static <E> ImmutableSortedSet<E> emptySet(
72 public static <E> ImmutableSortedSet<E> of() {
76 public static <E extends Comparable<? super E>> ImmutableSortedSet<
249 ImmutableSortedSet(Comparator<? super E> comparator) { method in class:ImmutableSortedSet
253 ImmutableSortedSet(SortedSet<E> sortedDelegate) { method in class:ImmutableSortedSet
[all...]

Completed in 35 milliseconds