Serialized Form


Package java.sql

Class java.sql.BatchUpdateException implements Serializable

Serialized Fields

updateCounts

int[] updateCounts
The array that describes the outcome of a batch execution.

 
Since:
1.2

Class java.sql.DataTruncation implements Serializable

Serialized Fields

index

int index
 

parameter

boolean parameter
 

read

boolean read
 

dataSize

int dataSize
 

transferSize

int transferSize
 

Class java.sql.Date implements Serializable

Class java.sql.SQLException implements Serializable

Serialized Fields

SQLState

java.lang.String SQLState
 

vendorCode

int vendorCode
 

next

SQLException next
 

Class java.sql.SQLPermission implements Serializable

Class java.sql.SQLWarning implements Serializable

Class java.sql.Time implements Serializable

Class java.sql.Timestamp implements Serializable

Serialized Fields

nanos

int nanos
 


Package javax.sql

Class javax.sql.ConnectionEvent implements Serializable

Serialized Fields

ex

SQLException ex
The SQLException that the driver will throw to the application when an error occurs and the pooled connection is no longer usable.

 

Class javax.sql.RowSetEvent implements Serializable


Package java.math

Class java.math.BigDecimal implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reconstitute the BigDecimal instance from a stream (that is, deserialize it).

Serialized Fields

intVal

BigInteger intVal
The unscaled value of this BigDecimal, as returned by unscaledValue().

 
See Also:
BigDecimal.unscaledValue()

scale

int scale
The scale of this BigDecimal, as returned by scale().

 
See Also:
BigDecimal.scale()

Class java.math.BigInteger implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws java.io.IOException,
                        java.lang.ClassNotFoundException
Reconstitute the BigInteger instance from a stream (that is, deserialize it). The magnitude is read in as an array of bytes for historical reasons, but it is converted to an array of ints and the byte array is discarded.


writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws java.io.IOException
Save the BigInteger instance to a stream. The magnitude of a BigInteger is serialized as a byte array for historical reasons.

Serial Data:
two necessary fields are written as well as obsolete fields for compatibility with older versions.
java.io.IOException
Serialization Overview
Serializable fields for BigInteger.

Serialized Fields

bitCount

int bitCount
number of bits in this BigInteger

bitLength

int bitLength
the number of bits in the minimal two's-complement representation of this BigInteger

lowestSetBit

int lowestSetBit
lowest set bit in the twos complement representation

magnitude

int[] magnitude
magnitude array of this BigInteger.

signum

int signum
signum of this BigInteger.