Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InverseSerializedForm (0.35 sec)

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

        @GwtIncompatible // serialization
        Object writeReplace() {
          return new InverseSerializedForm<>(RegularImmutableBiMap.this);
        }
    
        @J2ktIncompatible // java.io.ObjectInputStream
        private void readObject(ObjectInputStream stream) throws InvalidObjectException {
          throw new InvalidObjectException("Use InverseSerializedForm");
        }
      }
    
      @J2ktIncompatible // serialization
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Thu Feb 22 21:19:52 UTC 2024
    - 11.2K bytes
    - Viewed (0)
  2. guava/src/com/google/common/collect/HashBiMap.java

        Object writeReplace() {
          return new InverseSerializedForm<>(HashBiMap.this);
        }
    
        @GwtIncompatible // serialization
        @J2ktIncompatible
        private void readObject(ObjectInputStream in) throws InvalidObjectException {
          throw new InvalidObjectException("Use InverseSerializedForm");
        }
      }
    
      private static final class InverseSerializedForm<
    Registered: Wed Jun 12 16:38:11 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
Back to top