A B C E G I M P S T

A

ALL - Static variable in class TimeZones
Contains all the time zones given above, separated by " "

B

BST - Static variable in class TimeZones
= "BST", a time zone

C

CDT - Static variable in class TimeZones
= "CDT", a time zone
compare(TimeZones) - Method in class TimeZones
= -1 if this time < time t, 0 if this time equals time t, and 1 if this time > time t
CST - Static variable in class TimeZones
= "CST", a time zone

E

EDT - Static variable in class TimeZones
= "EDT", a time zone
EST - Static variable in class TimeZones
= "EST", a time zone

G

getAmPm() - Method in class TimeZones
= am-pm indication: true means display in AM-PM format; false means display in 24-hour format
getTime() - Method in class TimeZones
 
getZone() - Method in class TimeZones
= the time zone
GMT - Static variable in class TimeZones
= "GMT", a time zone

I

isLegal(String) - Static method in class TimeZones
= "z is a legal zone" --see class specification.
IST - Static variable in class TimeZones
= "IST", a time zone

M

MDT - Static variable in class TimeZones
= "MDT", a time zone
MST - Static variable in class TimeZones
= "MST", a time zone

P

PDT - Static variable in class TimeZones
= "PDT", a time zone
PST - Static variable in class TimeZones
= "PST", a time zone

S

setDisplay(boolean) - Method in class TimeZones
If b is true, set the display mode to AM-PM; if b is false, set it to "twenty-four hours".

T

timeInGMT() - Method in class TimeZones
= a new Time that is the same as this time but described in GMT
timeInZone(String) - Method in class TimeZones
= a new Time that is the same as this time but described in zone z.
TimeZones - Class in <Unnamed>
An instance gives the time of day in a time zone, in terms hours, minutes, and seconds.
TimeZones() - Constructor for class TimeZones
Constructor: an instance with time 0 GMT and a 24-hour clock
TimeZones(int, String, boolean) - Constructor for class TimeZones
Constructor: A time of day of s seconds in zone z.
TimeZones(int, int, int, String, boolean) - Constructor for class TimeZones
Constructor: A time of day of h hours, m minutes, s seconds in zone z.
toString() - Method in class TimeZones
= a string representation of the time.

A B C E G I M P S T