Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 2 of 2 for InverseSerializedForm (0.12 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: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Sat Oct 19 00:05:46 UTC 2024
    - 11.3K 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: Fri Nov 01 12:43:10 UTC 2024
    - Last Modified: Fri Oct 13 14:11:58 UTC 2023
    - 24.5K bytes
    - Viewed (0)
Back to top