Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 3 of 3 for SERIALIZABLE (0.18 sec)

  1. android/guava/src/com/google/common/base/Equivalence.java

       * com.google.common.collect.Ordering#lexicographical} does for orderings.
       *
       * <p>The returned object is serializable if this object is serializable.
       *
       * @since 10.0
       */
      @GwtCompatible(serializable = true)
      public final <S extends @Nullable T> Equivalence<Iterable<S>> pairwise() {
        // Ideally, the returned equivalence would support Iterable<? extends T>. However,
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 01:41:50 GMT 2024
    - 14.1K bytes
    - Viewed (0)
  2. android/guava/src/com/google/common/collect/Ordering.java

      @GwtCompatible(serializable = true)
      public <S extends T> Ordering<S> reverse() {
        return new ReverseOrdering<>(this);
      }
    
      /**
       * Returns an ordering that treats {@code null} as less than all other values and uses {@code
       * this} to compare non-null values.
       *
       * <p>The returned object is serializable if this object is serializable.
       *
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 39.4K bytes
    - Viewed (0)
  3. android/guava/src/com/google/common/collect/Maps.java

       * operation throws an {@link UnsupportedOperationException}.
       *
       * <p>The returned entry is serializable.
       *
       * <p><b>Java 9 users:</b> consider using {@code java.util.Map.entry(key, value)} if the key and
       * value are non-null and the entry does not need to be serializable.
       *
       * @param key the key to be associated with the returned entry
    Java
    - Registered: Fri Apr 26 12:43:10 GMT 2024
    - Last Modified: Wed Apr 24 19:38:27 GMT 2024
    - 159.3K bytes
    - Viewed (0)
Back to top