public interface WLObjectInput
extends java.io.ObjectInput
Methods in this interface can be used by classes implementing the readObject() method in the weblogic.common.WLSerializable interface.
WLObjectOutput
Modifier and Type | Method and Description |
---|---|
java.lang.String |
readAbbrevString()
Deprecated.
Please use readImmutable instead.
|
java.util.ArrayList |
readArrayList()
Reads a java.util.ArrayList from the input stream.
|
java.lang.Object[] |
readArrayOfObjects()
Reads an array of objects from the input stream.
|
byte[] |
readBytes()
Reads an array of bytes from the input stream.
|
java.util.Date |
readDate()
Reads a java.util.Date from an input stream.
|
java.lang.Object |
readImmutable()
Reads an abbreviated object from the input stream.
|
java.lang.Object |
readObjectWL()
Reads a WebLogic serializable object from the input stream.
|
java.util.Properties |
readProperties()
Reads a java.util properties object from the input stream.
|
java.lang.String |
readString()
Reads a java.lang.String from the input stream.
|
java.lang.Object readObjectWL() throws java.io.IOException, java.lang.ClassNotFoundException
java.io.IOException
- if there is an error during serializationjava.lang.ClassNotFoundException
- if the object is not available for readjava.lang.String readString() throws java.io.IOException
java.io.IOException
- if there is an error during serializationjava.util.Date readDate() throws java.io.IOException
java.io.IOException
- if there is an error during serializationjava.util.ArrayList readArrayList() throws java.io.IOException, java.lang.ClassNotFoundException
java.io.IOException
- if there is an error during serializationjava.lang.ClassNotFoundException
- if the object to be read is not availablejava.util.Properties readProperties() throws java.io.IOException
java.io.IOException
- if there is an error during serializationbyte[] readBytes() throws java.io.IOException
java.io.IOException
- if there is an error during serializationjava.lang.Object[] readArrayOfObjects() throws java.io.IOException, java.lang.ClassNotFoundException
java.io.IOException
- if there is an error during serializationjava.lang.ClassNotFoundException
- if the object is not available for read@Deprecated java.lang.String readAbbrevString() throws java.io.IOException
java.io.IOException
- if there is an error during serializationjava.lang.Object readImmutable() throws java.io.IOException, java.lang.ClassNotFoundException
java.io.IOException
- if there is an error during serializationjava.lang.ClassNotFoundException