Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 4 of 4 for SortedMultisetBridge (0.57 seconds)

  1. guava/src/com/google/common/collect/SortedMultisetBridge.java

     * to ensure binary compatibility with older Guava versions that specified {@code elementSet()} to
     * return {@code SortedSet}.
     *
     * @author Louis Wasserman
     */
    @GwtIncompatible
    interface SortedMultisetBridge<E extends @Nullable Object> extends Multiset<E> {
      @Override
      SortedSet<E> elementSet();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 1.1K bytes
    - Click Count (0)
  2. android/guava/src/com/google/common/collect/SortedMultisetBridge.java

     * to ensure binary compatibility with older Guava versions that specified {@code elementSet()} to
     * return {@code SortedSet}.
     *
     * @author Louis Wasserman
     */
    @GwtIncompatible
    interface SortedMultisetBridge<E extends @Nullable Object> extends Multiset<E> {
      @Override
      SortedSet<E> elementSet();
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Sun Dec 22 03:38:46 GMT 2024
    - 1.1K bytes
    - Click Count (0)
  3. android/guava/src/com/google/common/collect/SortedMultiset.java

     *
     * @author Louis Wasserman
     * @since 11.0
     */
    @GwtCompatible
    public interface SortedMultiset<E extends @Nullable Object>
        extends SortedMultisetBridge<E>, SortedIterable<E> {
      /**
       * Returns the comparator that orders this multiset, or {@link Ordering#natural()} if the natural
       * ordering of the elements is used.
       */
      @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 5.4K bytes
    - Click Count (0)
  4. guava/src/com/google/common/collect/SortedMultiset.java

     *
     * @author Louis Wasserman
     * @since 11.0
     */
    @GwtCompatible
    public interface SortedMultiset<E extends @Nullable Object>
        extends SortedMultisetBridge<E>, SortedIterable<E> {
      /**
       * Returns the comparator that orders this multiset, or {@link Ordering#natural()} if the natural
       * ordering of the elements is used.
       */
      @Override
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Thu Aug 07 16:05:33 GMT 2025
    - 5.4K bytes
    - Click Count (0)
Back to Top