Class | Tree | Index | Help
PREV | NEXT FRAMES  | NO FRAMES

Serialized Form


Class java.util.Calendar

This class implements Serializable.

Serialized Form - Methods

readObject

private void readObject(java.io.ObjectInputStream stream)
                throws IOException,
                       java.lang.ClassNotFoundException
Read this object out to a serialization stream.

writeObject

private void writeObject(java.io.ObjectOutputStream stream)
                 throws IOException
Write object out to a serialization stream.
Serialized Form - Fields

areFieldsSet

boolean areFieldsSet
True if fields[] are in sync with the currently set time. If false, then the next attempt to get the value of a field will force a recomputation of all fields from the current value of time.

fields

int[] fields
The field values for the currently set time for this calendar.

firstDayOfWeek

int firstDayOfWeek

isSet

boolean[] isSet
The flags which tell if a specified time field for the calendar is set. A new object has no fields set. After the first call to a method which generates the fields, they all remain set after that.

isTimeSet

boolean isTimeSet
True if then the value of time is valid. The time is made invalid by the user setting an individual field.
See Also:
time

lenient

boolean lenient
See Also:
setLenient

minimalDaysInFirstWeek

int minimalDaysInFirstWeek

nextStamp

int nextStamp

serialVersionOnStream

int serialVersionOnStream

time

long time
The currently set time for this calendar, expressed in milliseconds from January 1, 1970 0:00:00 UTC.
See Also:
isTimeSet

zone

java.util.TimeZone zone
Time zone affects the time calculation done by Calendar. Calendar uses the time zone data to produce the local time. Both firstDayOfWeek and minimalDaysInFirstWeek are locale-dependent. For example, in US locale, firstDayOfWeek is SUNDAY; minimalDaysInFirstWeek is 1. They are used to figure out the week count for a specific date for a given locale. These must be set when a Calendar is constructed.


Class java.io.EOFException

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.


Class java.io.File

This class implements Serializable.

Serialized Form - Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                throws IOException,
                       java.lang.ClassNotFoundException
readObject is called to restore this filename. The original separator character is read. If it is different than the separator character on this system, then the old seperator is replaced by the local separator.

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                 throws IOException
WriteObject is called to save this filename. The separator character is saved also so it can be replaced in case the path is reconstituted on a different host type.
Serialized Form - Fields

path

java.lang.String path
This abstract pathname's normalized pathname string. A normalized pathname string uses the default name-separator character and does not contain any duplicate or redundant separators.


Class java.io.FileNotFoundException

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.


Class java.util.GregorianCalendar

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.

Serialized Form - Fields

gregorianCutover

long gregorianCutover
The point at which the Gregorian calendar rules are used, measured in milliseconds from the standard epoch. Default is October 15, 1582 (Gregorian) 00:00:00 UTC, that is, October 4, 1582 (Julian) is followed by October 15, 1582 (Gregorian). This corresponds to Julian day number 2299161.


Class java.util.Hashtable

This class implements Serializable.

Serialized Form - Methods

readObject

private void readObject(java.io.ObjectInputStream s)
                throws IOException,
                       java.lang.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.
Serialized Form - Fields

loadFactor

float loadFactor
The load factor for the hashtable.

threshold

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


Class InvalidAccountException

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.


Class InvalidAmountException

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.


Class InvalidPINException

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.


Class InvalidRequestException

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.


Class java.io.IOException

This class implements Serializable.

Serialized Form - Methods

No readObject or writeObject method declared.


Class java.util.LinkedList

This class implements Serializable.

Serialized Form - Methods

readObject

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

writeObject

private void writeObject(java.io.ObjectOutputStream s)
                 throws IOException
Save the state of the LinkedList to a stream (i.e., serialize it).
Serial Data:
The size of the LinkedList (the number of elements it contains) is emitted (int), followed by all of its elements (each an Object) in the proper order.


Class | Tree | Index | Help
PREV | NEXT FRAMES  | NO FRAMES