java.lang.AutoCloseable, java.io.DataOutput, java.io.ObjectOutputpublic interface WLObjectOutput
extends java.io.ObjectOutput
Methods in this interface can be used by classes implementing the writeObject() method in the weblogic.classes.WLSerializable interface.
| Modifier and Type | Method | Description | 
|---|---|---|
| void | writeAbbrevString(java.lang.String s) | Deprecated.
 Please use writeImmutable instead | 
| void | writeArrayList(java.util.ArrayList lst) | Writes a java.util.ArrayList to the output stream. | 
| void | writeArrayOfObjects(java.lang.Object[] aoo) | Writes an array of Objects to the output stream. | 
| void | writeBytes(byte[] val) | Writes an array of bytes to the output stream. | 
| void | writeDate(java.util.Date dateval) | Writes a java.lang.Date (or its equally famous subclass,
 java.sql.Date) to the output stream. | 
| void | writeImmutable(java.lang.Object o) | Writes a commonly used object to the output stream
 the object is abbreviated for greater efficiency. | 
| void | writeObjectWL(java.lang.Object o) | Writes a WebLogic serializable object to the output stream. | 
| void | writeProperties(java.util.Properties propval) | Writes a java.util.Properties to the output stream. | 
| void | writeString(java.lang.String s) | Writes a java.lang.String to the output stream. | 
void writeObjectWL(java.lang.Object o)
            throws java.io.IOException
o - Object to be writtenjava.io.IOExceptionvoid writeString(java.lang.String s)
          throws java.io.IOException
s - String to be writtenjava.io.IOExceptionvoid writeDate(java.util.Date dateval)
        throws java.io.IOException
dateval - Date to be writtenjava.io.IOExceptionvoid writeArrayList(java.util.ArrayList lst)
             throws java.io.IOException
lst - ArrayList to be writtenjava.io.IOExceptionvoid writeProperties(java.util.Properties propval)
              throws java.io.IOException
propval - Properties object to be writtenjava.io.IOExceptionvoid writeBytes(byte[] val)
         throws java.io.IOException
val - Value to be writtenjava.io.IOException - if there is a serialization errorvoid writeArrayOfObjects(java.lang.Object[] aoo)
                  throws java.io.IOException
aoo - Value to be writtenjava.io.IOException - if there is a serialization error@Deprecated
void writeAbbrevString(java.lang.String s)
                throws java.io.IOException
s - String to be writtenjava.io.IOException - if there is an error during serializationvoid writeImmutable(java.lang.Object o)
             throws java.io.IOException
o - String to be writtenjava.io.IOException - if there is an error during serialization