Package com.pff
Class PSTTimeZone
- java.lang.Object
-
- com.pff.PSTTimeZone
-
public class PSTTimeZone extends java.lang.Object
Class containing time zone information
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
PSTTimeZone.SYSTEMTIME
private class
PSTTimeZone.TZRule
-
Field Summary
Fields Modifier and Type Field Description private java.lang.String
name
private PSTTimeZone.TZRule
rule
private java.util.SimpleTimeZone
simpleTimeZone
static java.util.SimpleTimeZone
utcTimeZone
A static copy of the UTC time zone, available for others to use
-
Constructor Summary
Constructors Constructor Description PSTTimeZone(byte[] timeZoneData)
PSTTimeZone(java.lang.String name, byte[] timeZoneData)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getBias()
int
getDaylightBias()
PSTTimeZone.SYSTEMTIME
getDaylightStart()
java.lang.String
getName()
java.util.SimpleTimeZone
getSimpleTimeZone()
int
getStandardBias()
PSTTimeZone.SYSTEMTIME
getStandardStart()
PSTTimeZone.SYSTEMTIME
getStart()
boolean
isEqual(PSTTimeZone rhs)
-
-
-
Field Detail
-
utcTimeZone
public static java.util.SimpleTimeZone utcTimeZone
A static copy of the UTC time zone, available for others to use
-
name
private java.lang.String name
-
rule
private PSTTimeZone.TZRule rule
-
simpleTimeZone
private java.util.SimpleTimeZone simpleTimeZone
-
-
Method Detail
-
getName
public java.lang.String getName()
-
getSimpleTimeZone
public java.util.SimpleTimeZone getSimpleTimeZone()
-
isEqual
public boolean isEqual(PSTTimeZone rhs)
-
getStart
public PSTTimeZone.SYSTEMTIME getStart()
-
getBias
public int getBias()
-
getStandardBias
public int getStandardBias()
-
getDaylightBias
public int getDaylightBias()
-
getDaylightStart
public PSTTimeZone.SYSTEMTIME getDaylightStart()
-
getStandardStart
public PSTTimeZone.SYSTEMTIME getStandardStart()
-
-