Serialized Form


Package java.io

Class java.io.CharConversionException extends IOException implements Serializable

serialVersionUID: -8680016352018427031l

Class java.io.EOFException extends IOException implements Serializable

serialVersionUID: 6433858223774886977l

Class java.io.File extends java.lang.Object implements Serializable

serialVersionUID: 301077366599181567l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws IOException
Serialized Fields

path

java.lang.String path

Class java.io.FileNotFoundException extends IOException implements Serializable

serialVersionUID: -897856973823710492l

Class java.io.FilePermission extends java.security.Permission implements Serializable

serialVersionUID: 7930732926638008763l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws IOException
Serialized Fields

actions

java.lang.String actions

Class java.io.InterruptedIOException extends IOException implements Serializable

serialVersionUID: 4020568460727500567l

Serialized Fields

bytesTransferred

int bytesTransferred
The number of bytes transferred before the IO interrupt occurred. The default is 0 but the value may be filled in by the caller of the constructor.

Class java.io.InvalidClassException extends ObjectStreamException implements Serializable

serialVersionUID: -4333316296251054416l

Serialized Fields

classname

java.lang.String classname
The fully qualified name of the class that caused the problem

Class java.io.InvalidObjectException extends ObjectStreamException implements Serializable

serialVersionUID: 3233174318281839583l

Class java.io.IOException extends Exception implements Serializable

serialVersionUID: 7818375828146090155l

Class java.io.NotActiveException extends ObjectStreamException implements Serializable

serialVersionUID: -3893467273049808895l

Class java.io.NotSerializableException extends ObjectStreamException implements Serializable

serialVersionUID: 2906642554793891381l

Class java.io.ObjectStreamClass extends java.lang.Object implements Serializable

serialVersionUID: -6120832682080437368l

Serialized Fields

Class java.io.ObjectStreamException extends IOException implements Serializable

serialVersionUID: 7260898174833392607l

Class java.io.OptionalDataException extends ObjectStreamException implements Serializable

serialVersionUID: -8011121865681257820l

Serialized Fields

eof

boolean eof
If true it means there is no more primitive data available.


length

int length
Number of bytes of primitive data (int, char, long, etc).

Class java.io.SerializablePermission extends java.security.BasicPermission implements Serializable

Serialized Fields

actions

java.lang.String actions

Class java.io.StreamCorruptedException extends ObjectStreamException implements Serializable

serialVersionUID: 8983558202217591746l

Class java.io.SyncFailedException extends IOException implements Serializable

serialVersionUID: -2353342684412443330l

Class java.io.UnsupportedEncodingException extends IOException implements Serializable

serialVersionUID: -4274276298326136670l

Class java.io.UTFDataFormatException extends IOException implements Serializable

serialVersionUID: 420743449228280612l

Class java.io.WriteAbortedException extends ObjectStreamException implements Serializable

serialVersionUID: -3326426625597282442l

Serialized Fields

detail

Exception detail
The exception that was caused when writeObject() was attempting to serialize the object


Package java.util

Class java.util.ArrayList extends AbstractList implements Serializable

serialVersionUID: 8683452581122892189l

Serialization Methods

readObject

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


writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws IOException
Save the state of the ArrayList instance to a stream (that is, serialize it).

Serial Data:
The length of the array backing the ArrayList instance is emitted (int), followed by all of its elements (each an Object) in the proper order.
Throws:
IOException
Serialized Fields

size

int size
The size of the ArrayList (the number of elements it contains).

 

Class java.util.BitSet extends java.lang.Object implements Serializable

serialVersionUID: 7997698588986878753l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws IOException,
                        ClassNotFoundException
Serialized Fields

bits

long[] bits

Class java.util.Calendar extends java.lang.Object implements Serializable

serialVersionUID: -1807547505821590642l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws IOException
Serialized Fields

fields

int[] fields

isSet

boolean[] isSet

time

long time

isTimeSet

boolean isTimeSet

areFieldsSet

boolean areFieldsSet

lenient

boolean lenient

zone

java.util.TimeZone zone

firstDayOfWeek

int firstDayOfWeek

minimalDaysInFirstWeek

int minimalDaysInFirstWeek

nextStamp

int nextStamp

serialVersionOnStream

int serialVersionOnStream

Class java.util.ConcurrentModificationException extends RuntimeException implements Serializable

serialVersionUID: -3666751008965953603l

Class java.util.Currency extends java.lang.Object implements Serializable

Serialization Methods

readResolve

private java.lang.Object readResolve()
Serialized Fields

currencyCode

java.lang.String currencyCode

Class java.util.Date extends java.lang.Object implements Serializable

serialVersionUID: 7523967970034938905l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws IOException

Class java.util.DuplicateFormatFlagsException extends IllegalFormatException implements Serializable

serialVersionUID: 18890531l

Serialized Fields

flags

java.lang.String flags

Class java.util.EmptyStackException extends RuntimeException implements Serializable

serialVersionUID: 5084686378493302095l

Class java.util.EventObject extends java.lang.Object implements Serializable

serialVersionUID: 5516075349620653480l

Class java.util.FormatFlagsConversionMismatchException extends IllegalFormatException implements Serializable

serialVersionUID: 19120414l

Serialized Fields

f

java.lang.String f

c

char c

Class java.util.FormatterClosedException extends IllegalStateException implements Serializable

serialVersionUID: 18111216l

Class java.util.GregorianCalendar extends java.util.Calendar implements Serializable

serialVersionUID: -8125100834729963327l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws IOException,
                        ClassNotFoundException
Serialized Fields

gregorianCutover

long gregorianCutover

Class java.util.HashMap extends AbstractMap implements Serializable

serialVersionUID: 362498820763181265l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Reconstitute the HashMap instance from a stream (i.e., deserialize it).


writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws IOException
Save the state of the HashMap instance to a stream (i.e., serialize it).

Serial Data:
The capacity of the HashMap (the length of the bucket array) is emitted (int), followed by the size of the HashMap (the number of key-value mappings), followed by the key (Object) and value (Object) for each key-value mapping represented by the HashMap The key-value mappings are emitted in the order that they are returned by entrySet().iterator().
Throws:
IOException
Serialized Fields

threshold

int threshold
The next size value at which to resize (capacity * load factor).

 

loadFactor

float loadFactor
The load factor for the hash table.

 

Class java.util.HashSet extends AbstractSet implements Serializable

serialVersionUID: -5024744406713321676l

Serialization Methods

readObject

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


writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws IOException
Save the state of this HashSet instance to a stream (that is, serialize this set).

Serial Data:
The capacity of the backing HashMap instance (int), and its load factor (float) are emitted, followed by the size of the set (the number of elements it contains) (int), followed by all of its elements (each an Object) in no particular order.
Throws:
IOException

Class java.util.Hashtable extends Dictionary implements Serializable

serialVersionUID: 1421746759512286392l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
Reconstitute the Hashtable from a stream (i.e., deserialize it).


writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws IOException
Save the state of the Hashtable to a stream (i.e., serialize it).

Serial Data:
The capacity of the Hashtable (the length of the bucket array) is emitted (int), followed by the size of the Hashtable (the number of key-value mappings), followed by the key (Object) and value (Object) for each key-value mapping represented by the Hashtable The key-value mappings are emitted in no particular order.
Throws:
IOException
Serialized Fields

threshold

int threshold
The table is rehashed when its size exceeds this threshold. (The value of this field is (int)(capacity * loadFactor).)

 

loadFactor

float loadFactor
The load factor for the hashtable.

 

Class java.util.IdentityHashMap extends AbstractMap implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws IOException
Serialized Fields

size

int size

Class java.util.IllegalFormatCodePointException extends IllegalFormatException implements Serializable

serialVersionUID: 19080630l

Serialized Fields

c

int c

Class java.util.IllegalFormatConversionException extends IllegalFormatException implements Serializable

serialVersionUID: 17000126l

Serialized Fields

c

char c

arg

java.lang.Class arg

Class java.util.IllegalFormatException extends IllegalArgumentException implements Serializable

serialVersionUID: 18830826l

Class java.util.IllegalFormatFlagsException extends IllegalFormatException implements Serializable

serialVersionUID: 790824l

Serialized Fields

flags

java.lang.String flags

Class java.util.IllegalFormatPrecisionException extends IllegalFormatException implements Serializable

serialVersionUID: 18711008l

Serialized Fields

p

int p

Class java.util.IllegalFormatWidthException extends IllegalFormatException implements Serializable

serialVersionUID: 16660902l

Serialized Fields

w

int w

Class java.util.InputMismatchException extends NoSuchElementException implements Serializable

serialVersionUID: 8811230760997066428l

Class java.util.InvalidPropertiesFormatException extends IOException implements Serializable

serialVersionUID: 7763056076009360219l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws NotSerializableException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws NotSerializableException

Class java.util.LinkedHashMap extends HashMap implements Serializable

Serialized Fields

accessOrder

boolean accessOrder

Class java.util.LinkedHashSet extends HashSet implements Serializable

Class java.util.LinkedList extends java.util.AbstractSequentialList implements Serializable

serialVersionUID: 876323262645176354l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws IOException

Class java.util.Locale extends java.lang.Object implements Serializable

serialVersionUID: 9149081749638150636l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream in)
                 throws IOException,
                        ClassNotFoundException
Serial Data:
The first three fields are three String objects: the first is a 2-letter ISO 639 code representing the locale's language, the second is a 2-letter ISO 3166 code representing the locale's region or country, and the third is an optional chain of variant codes defined by this library. Any of the fields may be the empty string. The fourth field is an intrepresenting the locale's hash code, but is ignored by readObject(). Whatever this field's value, the hash code is initialized to -1, a sentinel value that indicates the hash code must be recomputed.
Throws:
IOException
ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream out)
                  throws IOException
Serial Data:
The first three fields are three String objects: the first is a 2-letter ISO 639 code representing the locale's language, the second is a 2-letter ISO 3166 code representing the locale's region or country, and the third is an optional chain of variant codes defined by this library. Any of the fields may be the empty string. The fourth field is an int whose value is always -1. This is a sentinel value indicating the Locale's hash code must be recomputed.
Throws:
IOException
Serialized Fields

language

java.lang.String language
 
See Also:
Locale.getLanguage()

country

java.lang.String country
 
See Also:
Locale.getCountry()

variant

java.lang.String variant
 
See Also:
Locale.getVariant()

hashcode

int hashcode
Placeholder for the object's hash code. Always -1.

 

Class java.util.MissingFormatArgumentException extends IllegalFormatException implements Serializable

serialVersionUID: 19190115l

Serialized Fields

s

java.lang.String s

Class java.util.MissingFormatWidthException extends IllegalFormatException implements Serializable

serialVersionUID: 15560123l

Serialized Fields

s

java.lang.String s

Class java.util.MissingResourceException extends RuntimeException implements Serializable

serialVersionUID: -4876345176062000401l

Serialized Fields

className

java.lang.String className

key

java.lang.String key

Class java.util.NoSuchElementException extends RuntimeException implements Serializable

serialVersionUID: 6769829250639411880l

Class java.util.Properties extends Hashtable implements Serializable

serialVersionUID: 4112578634029874840l

Serialized Fields

defaults

Properties defaults
A property list that contains default values for any keys not found in this property list.

 

Class java.util.PropertyPermission extends java.security.BasicPermission implements Serializable

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws IOException
Serialized Fields

actions

java.lang.String actions

Class java.util.Random extends java.lang.Object implements Serializable

serialVersionUID: 3905348978240129619l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws IOException
Serialized Fields

Class java.util.SimpleTimeZone extends java.util.TimeZone implements Serializable

serialVersionUID: -403250971215465050l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws IOException
Serialized Fields

startMonth

int startMonth

startDay

int startDay

startDayOfWeek

int startDayOfWeek

startTime

int startTime

startTimeMode

int startTimeMode

endMonth

int endMonth

endDay

int endDay

endDayOfWeek

int endDayOfWeek

endTime

int endTime

endTimeMode

int endTimeMode

startYear

int startYear

rawOffset

int rawOffset

useDaylight

boolean useDaylight

monthLength

byte[] monthLength

startMode

int startMode

endMode

int endMode

dstSavings

int dstSavings

serialVersionOnStream

int serialVersionOnStream

Class java.util.Stack extends Vector implements Serializable

serialVersionUID: 1224463164541339165l

Class java.util.TimeZone extends java.lang.Object implements Serializable

serialVersionUID: 3581463369166924961l

Serialized Fields

ID

java.lang.String ID

Class java.util.TooManyListenersException extends Exception implements Serializable

serialVersionUID: 5074640544770687831l

Class java.util.TreeMap extends AbstractMap implements Serializable

serialVersionUID: 919286545866124006l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws IOException
Serialized Fields

comparator

Comparator comparator

Class java.util.TreeSet extends AbstractSet implements Serializable

serialVersionUID: -2479143000061671589l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream)
                 throws IOException,
                        ClassNotFoundException

writeObject

private void writeObject(java.io.ObjectOutputStream)
                  throws IOException

Class java.util.UnknownFormatConversionException extends IllegalFormatException implements Serializable

serialVersionUID: 19060418l

Serialized Fields

s

java.lang.String s

Class java.util.UnknownFormatFlagsException extends IllegalFormatException implements Serializable

serialVersionUID: 19370506l

Serialized Fields

flags

java.lang.String flags

Class java.util.Vector extends AbstractList implements Serializable

serialVersionUID: -2767605614048989439l

Serialization Methods

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws IOException
Save the state of the Vector instance to a stream (that is, serialize it). This method is present merely for synchronization. It just calls the default readObject method.

Serialized Fields

elementData

java.lang.Object[] elementData
The array buffer into which the components of the vector are stored. The capacity of the vector is the length of this array buffer, and is at least large enough to contain all the vector's elements.

Any array elements following the last element in the Vector are null.

 

elementCount

int elementCount
The number of valid components in this Vector object. Components elementData[0] through elementData[elementCount-1] are the actual items.

 

capacityIncrement

int capacityIncrement
The amount by which the capacity of the vector is automatically incremented when its size becomes greater than its capacity. If the capacity increment is less than or equal to zero, the capacity of the vector is doubled each time it needs to grow.

 


Package java.lang.reflect

Class java.lang.reflect.GenericSignatureFormatError extends ClassFormatError implements Serializable

serialVersionUID: 6709919147137911034l

Class java.lang.reflect.InvocationTargetException extends Exception implements Serializable

serialVersionUID: 4085088731926701167l

Serialized Fields

target

Throwable target

Class java.lang.reflect.MalformedParameterizedTypeException extends RuntimeException implements Serializable

serialVersionUID: -5696557788586220964l

Class java.lang.reflect.Proxy extends java.lang.Object implements Serializable

Serialized Fields

h

InvocationHandler h
the invocation handler for this proxy instance.

 

Class java.lang.reflect.ReflectPermission extends java.security.BasicPermission implements Serializable

Class java.lang.reflect.UndeclaredThrowableException extends RuntimeException implements Serializable

serialVersionUID: 330127114055056639l

Serialized Fields

undeclaredThrowable

Throwable undeclaredThrowable


Package java.lang

Class java.lang.AbstractMethodError extends IncompatibleClassChangeError implements Serializable

serialVersionUID: -1654391082989018462l

Class java.lang.ArithmeticException extends RuntimeException implements Serializable

serialVersionUID: 2256477558314496007l

Class java.lang.ArrayIndexOutOfBoundsException extends IndexOutOfBoundsException implements Serializable

serialVersionUID: -5116101128118950844l

Class java.lang.ArrayStoreException extends RuntimeException implements Serializable

serialVersionUID: -4522193890499838241l

Class java.lang.AssertionError extends Error implements Serializable

serialVersionUID: -5013299493970297370l

Class java.lang.Boolean extends java.lang.Object implements Serializable

serialVersionUID: -3665804199014368530l

Serialized Fields

value

boolean value

Class java.lang.Byte extends java.lang.Number implements Serializable

serialVersionUID: -7183698231559129828l

Serialized Fields

value

byte value

Class java.lang.Character extends java.lang.Object implements Serializable

serialVersionUID: 3786198910865385080l

Serialized Fields

value

char value

Class java.lang.Class extends java.lang.Object implements Serializable

serialVersionUID: 3206093459760846163l

Serialized Fields

Class java.lang.ClassCastException extends RuntimeException implements Serializable

serialVersionUID: -9223365651070458532l

Class java.lang.ClassCircularityError extends LinkageError implements Serializable

serialVersionUID: 1054362542914539689l

Class java.lang.ClassFormatError extends LinkageError implements Serializable

serialVersionUID: -8420114879011949195l

Class java.lang.ClassNotFoundException extends Exception implements Serializable

serialVersionUID: 9176873029745254542l

Serialized Fields

ex

Throwable ex

Class java.lang.CloneNotSupportedException extends Exception implements Serializable

serialVersionUID: 5195511250079656443l

Class java.lang.Double extends java.lang.Number implements Serializable

serialVersionUID: -9172774392245257468l

Serialized Fields

value

double value

Class java.lang.Error extends Throwable implements Serializable

serialVersionUID: 4980196508277280342l

Class java.lang.Exception extends Throwable implements Serializable

serialVersionUID: -3387516993124229948l

Class java.lang.ExceptionInInitializerError extends LinkageError implements Serializable

serialVersionUID: 1521711792217232256l

Serialized Fields

exception

Throwable exception

Class java.lang.Float extends java.lang.Number implements Serializable

serialVersionUID: -2671257302660747028l

Serialized Fields

value

float value

Class java.lang.IllegalAccessError extends IncompatibleClassChangeError implements Serializable

serialVersionUID: -8988904074992417891l

Class java.lang.IllegalAccessException extends Exception implements Serializable

serialVersionUID: 6616958222490762034l

Class java.lang.IllegalArgumentException extends RuntimeException implements Serializable

serialVersionUID: -5365630128856068164l

Class java.lang.IllegalMonitorStateException extends RuntimeException implements Serializable

serialVersionUID: 3713306369498869069l

Class java.lang.IllegalStateException extends RuntimeException implements Serializable

serialVersionUID: -1848914673093119416l

Class java.lang.IllegalThreadStateException extends IllegalArgumentException implements Serializable

serialVersionUID: -7626246362397460174l

Class java.lang.IncompatibleClassChangeError extends LinkageError implements Serializable

serialVersionUID: -4914975503642802119l

Class java.lang.IndexOutOfBoundsException extends RuntimeException implements Serializable

serialVersionUID: 234122996006267687l

Class java.lang.InstantiationError extends IncompatibleClassChangeError implements Serializable

serialVersionUID: -4885810657349421204l

Class java.lang.InstantiationException extends Exception implements Serializable

serialVersionUID: -8441929162975509110l

Class java.lang.Integer extends java.lang.Number implements Serializable

serialVersionUID: 1360826667806852920l

Serialized Fields

value

int value

Class java.lang.InternalError extends VirtualMachineError implements Serializable

serialVersionUID: -9062593416125562365l

Class java.lang.InterruptedException extends Exception implements Serializable

serialVersionUID: 6700697376100628473l

Class java.lang.LinkageError extends Error implements Serializable

serialVersionUID: 3579600108157160122l

Class java.lang.Long extends java.lang.Number implements Serializable

serialVersionUID: 4290774380558885855l

Serialized Fields

value

long value

Class java.lang.NegativeArraySizeException extends RuntimeException implements Serializable

serialVersionUID: -8960118058596991861l

Class java.lang.NoClassDefFoundError extends LinkageError implements Serializable

serialVersionUID: 9095859863287012458l

Class java.lang.NoSuchFieldError extends IncompatibleClassChangeError implements Serializable

serialVersionUID: -3456430195886129035l

Class java.lang.NoSuchFieldException extends Exception implements Serializable

serialVersionUID: -6143714805279938260l

Class java.lang.NoSuchMethodError extends IncompatibleClassChangeError implements Serializable

serialVersionUID: -3765521442372831335l

Class java.lang.NoSuchMethodException extends Exception implements Serializable

serialVersionUID: 5034388446362600923l

Class java.lang.NullPointerException extends RuntimeException implements Serializable

serialVersionUID: 5162710183389028792l

Class java.lang.Number extends java.lang.Object implements Serializable

serialVersionUID: -8742448824652078965l

Class java.lang.NumberFormatException extends IllegalArgumentException implements Serializable

serialVersionUID: -2848938806368998894l

Class java.lang.OutOfMemoryError extends VirtualMachineError implements Serializable

serialVersionUID: 8228564086184010517l

Class java.lang.RuntimeException extends Exception implements Serializable

serialVersionUID: -7034897190745766939l

Class java.lang.RuntimePermission extends java.security.BasicPermission implements Serializable

Class java.lang.SecurityException extends RuntimeException implements Serializable

serialVersionUID: 6878364983674394167l

Class java.lang.Short extends java.lang.Number implements Serializable

serialVersionUID: 7515723908773894738l

Serialized Fields

value

short value

Class java.lang.StackOverflowError extends VirtualMachineError implements Serializable

serialVersionUID: 8609175038441759607l

Class java.lang.StackTraceElement extends java.lang.Object implements Serializable

serialVersionUID: 6992337162326171013l

Serialized Fields

declaringClass

java.lang.String declaringClass

methodName

java.lang.String methodName

fileName

java.lang.String fileName

lineNumber

int lineNumber

Class java.lang.String extends java.lang.Object implements Serializable

serialVersionUID: -6849794470754667710l

Serialized Fields

Class java.lang.StringBuffer extends java.lang.Object implements Serializable

serialVersionUID: 3388685877147921107l

Serialization Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                 throws IOException,
                        ClassNotFoundException
readObject is called to restore the state of the StringBuffer from a stream.

Serialized Fields

value

char[] value
The value is used for character storage.

 

count

int count
The count is the number of characters in the buffer.

 

shared

boolean shared
A flag indicating whether the buffer is shared

 

Class java.lang.StringIndexOutOfBoundsException extends IndexOutOfBoundsException implements Serializable

serialVersionUID: -6762910422159637258l

Class java.lang.ThreadDeath extends Error implements Serializable

serialVersionUID: -4417128565033088268l

Class java.lang.Throwable extends java.lang.Object implements Serializable

serialVersionUID: -3042686055658047285l

Serialization Methods

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                  throws IOException
Throws:
IOException
Serialized Fields

detailMessage

java.lang.String detailMessage
Specific details about the Throwable. For example, for FileNotFoundException, this contains the name of the file that could not be found.

 

cause

Throwable cause
The throwable that caused this throwable to get thrown, or null if this throwable was not caused by another throwable, or if the causative throwable is unknown. If this field is equal to this throwable itself, it indicates that the cause of this throwable has not yet been initialized.

 
Since:
1.4

stackTrace

StackTraceElement[] stackTrace
The stack trace, as returned by Throwable.getStackTrace().

 
Since:
1.4

Class java.lang.TypeNotPresentException extends RuntimeException implements Serializable

serialVersionUID: -5101214195716534496l

Serialized Fields

typeName

java.lang.String typeName

Class java.lang.UnknownError extends VirtualMachineError implements Serializable

serialVersionUID: 2524784860676771849l

Class java.lang.UnsatisfiedLinkError extends LinkageError implements Serializable

serialVersionUID: -4019343241616879428l

Class java.lang.UnsupportedClassVersionError extends ClassFormatError implements Serializable

serialVersionUID: -7123279212883497373l

Class java.lang.UnsupportedOperationException extends RuntimeException implements Serializable

serialVersionUID: -1242599979055084673l

Class java.lang.VerifyError extends LinkageError implements Serializable

serialVersionUID: 7001962396098498785l

Class java.lang.VirtualMachineError extends Error implements Serializable

serialVersionUID: 4161983926571568670l