i.IObjectDeserializer Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of javaee-rt Show documentation
Show all versions of javaee-rt Show documentation
An Execution Environment for Java SCOREs
package i;
/**
* Passed to deserializeSelf() so that the receiver can abstractly deserialize itself.
* Note that there is no identification of data elements, other than the order they are read.
*/
public interface IObjectDeserializer {
boolean readBoolean();
byte readByte();
short readShort();
char readChar();
int readInt();
float readFloat();
long readLong();
double readDouble();
void readByteArray(byte[] result);
Object readObject();
String readClassName();
void automaticallyDeserializeFromRoot(Class> rootClass, Object instance);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy