All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.obsidiandynamics.blackstrom.codec.PackedForm Maven / Gradle / Ivy

The newest version!
package com.obsidiandynamics.blackstrom.codec;

/**
 *  Signifies that the implementing object represents an intermediate serialized form
 *  that can be further unpacked — reconstructing the original object graph — given the 
 *  appropriate {@link Unpacker} implementation.
 */
public interface PackedForm {
  int hashCode();
  
  boolean equals(Object obj);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy