|
BEA Systems, Inc. | ||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||||
This interface, which is the interface implemented by the output streams set up between the WebLogic Server and its clients, is passed as an argument to the writeObject() method in the interface WLSerializable.
Methods in this interface can be used by classes implementing the writeObject() method in the weblogic.classes.WLSerializable interface.
WLSerializable.writeObject(weblogic.common.WLObjectOutput),
WLObjectInput| Method Summary | |
void |
writeAbbrevString(java.lang.String s)
Deprecated. Writes a commonly used string value to the output stream the string is abbreviated for greater efficiency. |
void |
writeArrayList(com.sun.java.util.collections.ArrayList lst)
Deprecated. Writes a com.sun.java.util.collections.ArrayList to the output stream. |
void |
writeArrayOfConsistentObjects(java.lang.Object[] aoo)
Deprecated. Writes an array of Objects to the output stream where all objects are of the same class. |
void |
writeArrayOfObjects(java.lang.Object[] aoo)
Deprecated. Writes an array of Objects to the output stream. |
void |
writeAscii(java.lang.String s)
Deprecated. Writes an ASCII string to the output stream. |
void |
writeBigDecimal(java.lang.Object val)
Deprecated. Writes a java.math.BigDecimal or xjava.math.BigDecimal to the stream. |
void |
writeBitSet(java.util.BitSet b)
Deprecated. Writes a java.util.BitSet to the output stream. |
void |
writeBooleanArray(boolean[] val)
Deprecated. Writes an array of booleans to the output stream. |
void |
writeBytes(byte[] val)
Deprecated. Writes an array of bytes to the output stream. |
void |
writeBytes(byte[] val,
int len)
Deprecated. Writes an array of bytes to the output stream. |
void |
writeCharArray(char[] val)
Deprecated. Writes an array of chars to the output stream. |
void |
writeDate(java.util.Date dateval)
Deprecated. Writes a java.lang.Date (or its equally famous subclass, java.sql.Date) to the output stream. |
void |
writeDoubleArray(double[] val)
Deprecated. Writes an array of doubles to the output stream. |
void |
writeDoubler(double v)
Deprecated. Writes a double to the output stream. |
void |
writeException(java.lang.Exception e)
Deprecated. Writes an java.lang.Exception to the output stream. |
void |
writeFloatArray(float[] val)
Deprecated. Writes an array of floats to the output stream. |
void |
writeFloater(float v)
Deprecated. Writes a float to the output stream. |
void |
writeHashtable(java.util.Hashtable ht)
Deprecated. Writes a java.util.Hashtable to the output stream. |
void |
writeIntArray(int[] val)
Deprecated. Writes an array of ints to the output stream. |
void |
writeInteger(int v)
Deprecated. Writes an int to the output stream. |
void |
writeLongArray(long[] val)
Deprecated. Writes an array of longs to the output stream. |
void |
writeLonger(long v)
Deprecated. Writes a long to the output stream. |
void |
writeObjectWL(java.lang.Object o)
Deprecated. Writes a WebLogic serializable object to the output stream. |
void |
writeParamSet(ParamSet ps)
Deprecated. Writes a weblogic.common.ParamSet to the output stream. |
void |
writeProperties(java.util.Properties propval)
Deprecated. Writes a java.util.Properties to the output stream. |
void |
writeShortArray(short[] val)
Deprecated. Writes an array of shorts to the output stream. |
void |
writeShorter(short v)
Deprecated. Writes a short to the output stream. |
void |
writeString(java.lang.String s)
Deprecated. Writes a java.lang.String to the output stream. |
void |
writeTimestamp(java.lang.Object val)
Deprecated. Writes a java.sql.Timestamp or xjava.sql.Timestamp to the stream. |
void |
writeVector(java.util.Vector v)
Deprecated. Writes a java.util.Vector to the output stream. |
| Methods inherited from interface java.io.ObjectOutput |
close,
flush,
write,
write,
write,
writeObject |
| Methods inherited from interface java.io.DataOutput |
writeBoolean,
writeByte,
writeBytes,
writeChar,
writeChars,
writeDouble,
writeFloat,
writeInt,
writeLong,
writeShort,
writeUTF |
| Method Detail |
public void writeObjectWL(java.lang.Object o)
throws java.io.IOException
o - Object to be written
public void writeAscii(java.lang.String s)
throws java.io.IOException
s - String to be written
public void writeString(java.lang.String s)
throws java.io.IOException
s - String to be written
public void writeParamSet(ParamSet ps)
throws java.io.IOException
ps - ParamSet to be written
public void writeException(java.lang.Exception e)
throws java.io.IOException
e - Exception to be written
public void writeDate(java.util.Date dateval)
throws java.io.IOException
dateval - Date to be written
public void writeVector(java.util.Vector v)
throws java.io.IOException
v - Vector to be written
public void writeArrayList(com.sun.java.util.collections.ArrayList lst)
throws java.io.IOException
lst - ArrayList to be written
public void writeBitSet(java.util.BitSet b)
throws java.io.IOException
b - BitSet to be written
public void writeHashtable(java.util.Hashtable ht)
throws java.io.IOException
ht - Hashtable to be written
public void writeProperties(java.util.Properties propval)
throws java.io.IOException
propval - Properties object to be written
public void writeTimestamp(java.lang.Object val)
throws java.io.IOException
val - Timestamp value to be written
public void writeBigDecimal(java.lang.Object val)
throws java.io.IOException
val - BigDecimal value to be written
public void writeBytes(byte[] val)
throws java.io.IOException
val - Value to be written
public void writeBytes(byte[] val,
int len)
throws java.io.IOException
val - Value to be writtenlen - length of array
public void writeBooleanArray(boolean[] val)
throws java.io.IOException
val - Value to be written
public void writeCharArray(char[] val)
throws java.io.IOException
val - Value to be written
public void writeDoubleArray(double[] val)
throws java.io.IOException
val - Value to be written
public void writeFloatArray(float[] val)
throws java.io.IOException
val - Value to be written
public void writeIntArray(int[] val)
throws java.io.IOException
val - Value to be written
public void writeShortArray(short[] val)
throws java.io.IOException
val - Value to be written
public void writeLongArray(long[] val)
throws java.io.IOException
val - Value to be written
public void writeArrayOfObjects(java.lang.Object[] aoo)
throws java.io.IOException
aoo - Value to be written
public void writeArrayOfConsistentObjects(java.lang.Object[] aoo)
throws java.io.IOException
aoo - Value to be written
public void writeFloater(float v)
throws java.io.IOException
v - Value to be written
public void writeInteger(int v)
throws java.io.IOException
v - Value to be written
public void writeShorter(short v)
throws java.io.IOException
v - Value to be written
public void writeDoubler(double v)
throws java.io.IOException
v - Value to be written
public void writeLonger(long v)
throws java.io.IOException
v - Value to be written
public void writeAbbrevString(java.lang.String s)
throws java.io.IOException
s - String to be written
|
Documentation is available at http://www.weblogic.com/docs51 |
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: INNER | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||