Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 1 of 1 for NullsFirstOrdering (0.07 seconds)

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

      // type parameter <S> lets us avoid the extra <String> in statements like:
      // Ordering<String> o = Ordering.<String>natural().nullsFirst();
      public <S extends T> Ordering<@Nullable S> nullsFirst() {
        return new NullsFirstOrdering<S>(this);
      }
    
      /**
       * Returns an ordering that treats {@code null} as greater than all other values and uses this
       * ordering to compare non-null values.
       *
    Created: Fri Dec 26 12:43:10 GMT 2025
    - Last Modified: Tue Sep 23 17:50:58 GMT 2025
    - 39.5K bytes
    - Click Count (0)
Back to Top