Search Options

Display Count
Sort
Preferred Language
Advanced Search

Results 1 - 2 of 2 for InverseSerializedForm (0.08 seconds)

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

        @GwtIncompatible
            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
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 11.1K bytes
    - Click Count (0)
  2. guava/src/com/google/common/collect/HashBiMap.java

          }
        }
    
        Object writeReplace() {
          return new InverseSerializedForm<>(obverse);
        }
    
        @GwtIncompatible
        @J2ktIncompatible
            private void readObject(ObjectInputStream in) throws InvalidObjectException {
          throw new InvalidObjectException("Use InverseSerializedForm");
        }
      }
    
    Created: Fri Apr 03 12:43:13 GMT 2026
    - Last Modified: Fri Dec 26 20:08:09 GMT 2025
    - 25.7K bytes
    - Click Count (0)
Back to Top