Package org.jbox2d.serialization
Interface SerializationResult
-
public interface SerializationResult
Container for holding serialization results. UsegetValue()
to get the implementation-specific result.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Object
getValue()
The implementation-specific serialization result.void
writeTo(java.io.OutputStream argOutputStream)
Writes the result to the given output stream.
-
-
-
Method Detail
-
getValue
java.lang.Object getValue()
The implementation-specific serialization result.- Returns:
- serialization result
-
writeTo
void writeTo(java.io.OutputStream argOutputStream) throws java.io.IOException
Writes the result to the given output stream.- Parameters:
argOutputStream
-- Throws:
java.io.IOException
-
-