Class NSTimeZoneData

Information about a TimeZone.

Constructors

NSTimeZoneData()

Initializes a new instance of the NSTimeZoneData class.

Declaration

NSTimeZoneData

Methods

GetIsoNumber()

Declaration

Integer GetIsoNumber()

Examples

NSTimeZoneData thing;
Integer isoNumber = thing.GetIsoNumber();

Returns

Type Description
Integer

GetName()

Declaration

String GetName()

Examples

NSTimeZoneData thing;
String name = thing.GetName();

Returns

Type Description
String Name associated with the location.

GetTimeZoneDSTRules()

Declaration

Map GetTimeZoneDSTRules()

Examples

NSTimeZoneData thing;
Map timeZoneDSTRules = thing.GetTimeZoneDSTRules();

Returns

Type Description
Map Rules for daylight savings time.

GetTimeZoneSTDRules()

Declaration

Map GetTimeZoneSTDRules()

Examples

NSTimeZoneData thing;
Map timeZoneSTDRules = thing.GetTimeZoneSTDRules();

Returns

Type Description
Map Rules for standard time.

GetTZLocationCities()

Declaration

String GetTZLocationCities()

Examples

NSTimeZoneData thing;
String tZLocationCities = thing.GetTZLocationCities();

Returns

Type Description
String Cities associated with location.

GetTZLocationCode()

Declaration

String GetTZLocationCode()

Examples

NSTimeZoneData thing;
String tZLocationCode = thing.GetTZLocationCode();

Returns

Type Description
String Code associated with location.

GetTZLocationID()

Declaration

Integer GetTZLocationID()

Examples

NSTimeZoneData thing;
Integer tZLocationID = thing.GetTZLocationID();

Returns

Type Description
Integer Timezone location Id.

SetIsoNumber(Integer)

Declaration

Void SetIsoNumber(Integer isoNumber)

Examples

NSTimeZoneData thing;
Integer isoNumber;
thing.SetIsoNumber(isoNumber);

Parameters

Type Name Description
Integer isoNumber

Returns

Type Description
Void

SetName(String)

Declaration

Void SetName(String name)

Examples

NSTimeZoneData thing;
String name;
thing.SetName(name);

Parameters

Type Name Description
String name Name associated with the location.

Returns

Type Description
Void

SetTimeZoneDSTRules(Map)

Declaration

Void SetTimeZoneDSTRules(Map timeZoneDSTRules)

Examples

NSTimeZoneData thing;
Map timeZoneDSTRules;
thing.SetTimeZoneDSTRules(timeZoneDSTRules);

Parameters

Type Name Description
timeZoneDSTRules Rules for daylight savings time.

Returns

Type Description
Void

SetTimeZoneSTDRules(Map)

Rules for standard time

Declaration

Void SetTimeZoneSTDRules(Map timeZoneSTDRules)

Examples

NSTimeZoneData thing;
Map timeZoneSTDRules;
thing.SetTimeZoneSTDRules(timeZoneSTDRules);

Parameters

Type Name Description
timeZoneSTDRules Rules for standard time.

Returns

Type Description
Void

SetTZLocationCities(String)

Declaration

Void SetTZLocationCities(String tZLocationCities)

Examples

NSTimeZoneData thing;
String tZLocationCities;
thing.SetTZLocationCities(tZLocationCities);

Parameters

Type Name Description
String tZLocationCities Cities associated with location.

Returns

Type Description
Void

SetTZLocationCode(String)

Declaration

Void SetTZLocationCode(String tZLocationCode)

Examples

NSTimeZoneData thing;
String tZLocationCode;
thing.SetTZLocationCode(tZLocationCode);

Parameters

Type Name Description
String tZLocationCode Code associated with location.

Returns

Type Description
Void

SetTZLocationID(Integer)

Declaration

Void SetTZLocationID(Integer tZLocationID)

Examples

NSTimeZoneData thing;
Integer tZLocationID;
thing.SetTZLocationID(tZLocationID);

Parameters

Type Name Description
Integer tZLocationID Timezone location Id.

Returns

Type Description
Void