Search Options

Results per page
Sort
Preferred Languages
Advance

Results 11 - 17 of 17 for SortedMultiset (0.17 sec)

  1. android/guava/src/com/google/common/collect/AbstractSortedMultiset.java

      }
    
      @LazyInit @CheckForNull private transient SortedMultiset<E> descendingMultiset;
    
      @Override
      public SortedMultiset<E> descendingMultiset() {
        SortedMultiset<E> result = descendingMultiset;
        return (result == null) ? descendingMultiset = createDescendingMultiset() : result;
      }
    
      SortedMultiset<E> createDescendingMultiset() {
        @WeakOuter
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/DescendingMultiset.java

     * @author Louis Wasserman
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    abstract class DescendingMultiset<E extends @Nullable Object> extends ForwardingMultiset<E>
        implements SortedMultiset<E> {
      abstract SortedMultiset<E> forwardMultiset();
    
      @LazyInit @CheckForNull private transient Comparator<? super E> comparator;
    
      @Override
      public Comparator<? super E> comparator() {
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/DescendingMultiset.java

     * @author Louis Wasserman
     */
    @GwtCompatible(emulated = true)
    @ElementTypesAreNonnullByDefault
    abstract class DescendingMultiset<E extends @Nullable Object> extends ForwardingMultiset<E>
        implements SortedMultiset<E> {
      abstract SortedMultiset<E> forwardMultiset();
    
      @LazyInit @CheckForNull private transient Comparator<? super E> comparator;
    
      @Override
      public Comparator<? super E> comparator() {
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 4.5K bytes
    - Viewed (0)
  4. android/guava-tests/test/com/google/common/collect/ForwardingSortedMultisetTest.java

            .testForwarding(
                SortedMultiset.class,
                new Function<SortedMultiset, SortedMultiset>() {
                  @Override
                  public SortedMultiset apply(SortedMultiset delegate) {
                    return wrap(delegate);
                  }
                });
      }
    
      public void testEquals() {
        SortedMultiset<String> set1 = ImmutableSortedMultiset.of("one");
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Thu Apr 06 12:56:11 GMT 2023
    - 6.4K bytes
    - Viewed (0)
  5. guava-gwt/src-super/com/google/common/collect/super/com/google/common/collect/UnmodifiableSortedMultiset.java

     *
     * @author Louis Wasserman
     */
    @ElementTypesAreNonnullByDefault
    final class UnmodifiableSortedMultiset<E extends @Nullable Object> extends UnmodifiableMultiset<E>
        implements SortedMultiset<E> {
      UnmodifiableSortedMultiset(SortedMultiset<E> delegate) {
        super(delegate);
      }
    
      @Override
      protected SortedMultiset<E> delegate() {
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Tue Jan 23 18:43:40 GMT 2024
    - 3.2K bytes
    - Viewed (0)
  6. guava/src/com/google/common/collect/AbstractSortedMultiset.java

      }
    
      @LazyInit @CheckForNull private transient SortedMultiset<E> descendingMultiset;
    
      @Override
      public SortedMultiset<E> descendingMultiset() {
        SortedMultiset<E> result = descendingMultiset;
        return (result == null) ? descendingMultiset = createDescendingMultiset() : result;
      }
    
      SortedMultiset<E> createDescendingMultiset() {
        @WeakOuter
    Java
    - Registered: Fri Apr 05 12:43:09 GMT 2024
    - Last Modified: Mon Jun 26 21:02:13 GMT 2023
    - 4.6K bytes
    - Viewed (0)
  7. android/guava/src/com/google/common/collect/SortedMultisetBridge.java

    package com.google.common.collect;
    
    import com.google.common.annotations.GwtIncompatible;
    import java.util.SortedSet;
    import org.checkerframework.checker.nullness.qual.Nullable;
    
    /**
     * Superinterface of {@link SortedMultiset} to introduce a bridge method for {@code elementSet()},
     * to ensure binary compatibility with older Guava versions that specified {@code elementSet()} to
     * return {@code SortedSet}.
     *
     * @author Louis Wasserman
     */
    Java
    - Registered: Fri May 03 12:43:13 GMT 2024
    - Last Modified: Tue Jun 01 22:07:10 GMT 2021
    - 1.2K bytes
    - Viewed (0)
Back to top