public class TimeZoneInfo extends NetObject implements ISerializable, IDeserializationCallback
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.TimeZoneInfo
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=10.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e
|
static java.lang.String |
assemblyShortName
Assembly name: System.Private.CoreLib
|
static java.lang.String |
className
Qualified class name: System.TimeZoneInfo
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
TimeZoneInfo() |
TimeZoneInfo(java.lang.Object instance)
Internal constructor.
|
| Modifier and Type | Method and Description |
|---|---|
static TimeZoneInfo |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into TimeZoneInfo, a cast assert is made to check if types are compatible. |
static void |
ClearCachedData() |
static DateTimeOffset |
ConvertTime(DateTimeOffset dateTimeOffset,
TimeZoneInfo destinationTimeZone) |
static DateTime |
ConvertTime(DateTime dateTime,
TimeZoneInfo destinationTimeZone) |
static DateTime |
ConvertTime(DateTime dateTime,
TimeZoneInfo sourceTimeZone,
TimeZoneInfo destinationTimeZone) |
static DateTimeOffset |
ConvertTimeBySystemTimeZoneId(DateTimeOffset dateTimeOffset,
java.lang.String destinationTimeZoneId) |
static DateTime |
ConvertTimeBySystemTimeZoneId(DateTime dateTime,
java.lang.String destinationTimeZoneId) |
static DateTime |
ConvertTimeBySystemTimeZoneId(DateTime dateTime,
java.lang.String sourceTimeZoneId,
java.lang.String destinationTimeZoneId) |
static DateTime |
ConvertTimeFromUtc(DateTime dateTime,
TimeZoneInfo destinationTimeZone) |
static DateTime |
ConvertTimeToUtc(DateTime dateTime) |
static DateTime |
ConvertTimeToUtc(DateTime dateTime,
TimeZoneInfo sourceTimeZone) |
static TimeZoneInfo |
CreateCustomTimeZone(java.lang.String id,
TimeSpan baseUtcOffset,
java.lang.String displayName,
java.lang.String standardDisplayName) |
boolean |
Equals(TimeZoneInfo other) |
static TimeZoneInfo |
FindSystemTimeZoneById(java.lang.String id) |
static TimeZoneInfo |
FromSerializedString(java.lang.String source) |
TimeSpan[] |
GetAmbiguousTimeOffsets(DateTime dateTime) |
TimeSpan[] |
GetAmbiguousTimeOffsets(DateTimeOffset dateTimeOffset) |
TimeSpan |
getBaseUtcOffset() |
java.lang.String |
getDaylightName() |
java.lang.String |
getDisplayName() |
boolean |
getHasIanaId() |
java.lang.String |
getId() |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
static TimeZoneInfo |
getLocal() |
java.lang.String |
getStandardName() |
boolean |
getSupportsDaylightSavingTime() |
static TimeZoneInfo |
getUtc() |
TimeSpan |
GetUtcOffset(DateTime dateTime) |
TimeSpan |
GetUtcOffset(DateTimeOffset dateTimeOffset) |
boolean |
HasSameRules(TimeZoneInfo other) |
boolean |
IsAmbiguousTime(DateTime dateTime) |
boolean |
IsAmbiguousTime(DateTimeOffset dateTimeOffset) |
boolean |
IsDaylightSavingTime(DateTime dateTime) |
boolean |
IsDaylightSavingTime(DateTimeOffset dateTimeOffset) |
boolean |
IsInvalidTime(DateTime dateTime) |
void |
setJCOInstance(JCObject instance) |
java.lang.String |
ToSerializedString() |
static boolean |
TryConvertIanaIdToWindowsId(java.lang.String ianaId,
JCORefOut windowsId) |
static boolean |
TryConvertWindowsIdToIanaId(java.lang.String windowsId,
JCORefOut ianaId) |
static boolean |
TryConvertWindowsIdToIanaId(java.lang.String windowsId,
java.lang.String region,
JCORefOut ianaId) |
static boolean |
TryFindSystemTimeZoneById(java.lang.String id,
JCORefOut<TimeZoneInfo> timeZoneInfo) |
Equals, Equals, GetHashCode, GetType, hashCode, toString, ToStringGetObjectData, ToISerializableOnDeserialization, ToIDeserializationCallbackpublic static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public TimeZoneInfo()
throws java.lang.Throwable
java.lang.Throwablepublic TimeZoneInfo(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic static TimeZoneInfo cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into TimeZoneInfo, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedTimeZoneInfo instancejava.lang.Throwable - in case of error during cast operationpublic static void ClearCachedData()
throws java.lang.Throwable
java.lang.Throwablepublic static DateTimeOffset ConvertTime(DateTimeOffset dateTimeOffset, TimeZoneInfo destinationTimeZone) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException
public static DateTime ConvertTime(DateTime dateTime, TimeZoneInfo destinationTimeZone) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, InvalidTimeZoneException, CultureNotFoundException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, OverflowException, IndexOutOfRangeException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionInvalidTimeZoneExceptionCultureNotFoundExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionOutOfMemoryExceptionOverflowExceptionIndexOutOfRangeExceptionpublic static DateTime ConvertTime(DateTime dateTime, TimeZoneInfo sourceTimeZone, TimeZoneInfo destinationTimeZone) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, OverflowException, PlatformNotSupportedException, IndexOutOfRangeException
public static DateTimeOffset ConvertTimeBySystemTimeZoneId(DateTimeOffset dateTimeOffset, java.lang.String destinationTimeZoneId) throws java.lang.Throwable, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, NotSupportedException, OutOfMemoryException, ExternalException, ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException, SecurityException, UnauthorizedAccessException, IOException, InvalidTimeZoneException, TimeZoneNotFoundException
java.lang.ThrowableArgumentExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionNotSupportedExceptionOutOfMemoryExceptionExternalExceptionArgumentNullExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionInvalidTimeZoneExceptionTimeZoneNotFoundExceptionpublic static DateTime ConvertTimeBySystemTimeZoneId(DateTime dateTime, java.lang.String destinationTimeZoneId) throws java.lang.Throwable, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, NotSupportedException, OutOfMemoryException, ExternalException, ArgumentNullException, ArgumentOutOfRangeException, InvalidOperationException, SecurityException, UnauthorizedAccessException, IOException, InvalidTimeZoneException, TimeZoneNotFoundException, OverflowException
java.lang.ThrowableArgumentExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionNotSupportedExceptionOutOfMemoryExceptionExternalExceptionArgumentNullExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionInvalidTimeZoneExceptionTimeZoneNotFoundExceptionOverflowExceptionpublic static DateTime ConvertTimeBySystemTimeZoneId(DateTime dateTime, java.lang.String sourceTimeZoneId, java.lang.String destinationTimeZoneId) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, InvalidTimeZoneException, CultureNotFoundException, SecurityException, UnauthorizedAccessException, IOException, NullReferenceException, TimeZoneNotFoundException, OverflowException, IndexOutOfRangeException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionInvalidTimeZoneExceptionCultureNotFoundExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionNullReferenceExceptionTimeZoneNotFoundExceptionOverflowExceptionIndexOutOfRangeExceptionpublic static DateTime ConvertTimeFromUtc(DateTime dateTime, TimeZoneInfo destinationTimeZone) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, OverflowException, PlatformNotSupportedException, IndexOutOfRangeException
public static DateTime ConvertTimeToUtc(DateTime dateTime) throws java.lang.Throwable, NotSupportedException, ArgumentException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, InvalidTimeZoneException, CultureNotFoundException, ArgumentNullException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, OverflowException, IndexOutOfRangeException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionInvalidTimeZoneExceptionCultureNotFoundExceptionArgumentNullExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionOutOfMemoryExceptionOverflowExceptionIndexOutOfRangeExceptionpublic static DateTime ConvertTimeToUtc(DateTime dateTime, TimeZoneInfo sourceTimeZone) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, OverflowException, PlatformNotSupportedException, IndexOutOfRangeException
public static TimeZoneInfo CreateCustomTimeZone(java.lang.String id, TimeSpan baseUtcOffset, java.lang.String displayName, java.lang.String standardDisplayName) throws java.lang.Throwable, NotSupportedException, ArgumentException, InvalidOperationException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidTimeZoneException, OverflowException, CultureNotFoundException, NullReferenceException, IndexOutOfRangeException, OutOfMemoryException, ExternalException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidTimeZoneExceptionOverflowExceptionCultureNotFoundExceptionNullReferenceExceptionIndexOutOfRangeExceptionOutOfMemoryExceptionExternalExceptionpublic boolean Equals(TimeZoneInfo other) throws java.lang.Throwable, NotSupportedException, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, ArrayTypeMismatchException, InvalidOperationException
public static TimeZoneInfo FindSystemTimeZoneById(java.lang.String id) throws java.lang.Throwable, ArgumentException, CultureNotFoundException, PlatformNotSupportedException, NullReferenceException, NotSupportedException, IndexOutOfRangeException, OutOfMemoryException, ExternalException, ArgumentOutOfRangeException, SecurityException, UnauthorizedAccessException, IOException, InvalidOperationException, InvalidTimeZoneException, TimeZoneNotFoundException
java.lang.ThrowableArgumentExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionNotSupportedExceptionIndexOutOfRangeExceptionOutOfMemoryExceptionExternalExceptionArgumentOutOfRangeExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionInvalidOperationExceptionInvalidTimeZoneExceptionTimeZoneNotFoundExceptionpublic static TimeZoneInfo FromSerializedString(java.lang.String source) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, SerializationException, IndexOutOfRangeException, OverflowException, InvalidTimeZoneException, OutOfMemoryException, ExternalException, NullReferenceException, CultureNotFoundException
java.lang.ThrowableArgumentExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionNotSupportedExceptionObjectDisposedExceptionInvalidOperationExceptionRankExceptionArrayTypeMismatchExceptionArgumentNullExceptionSerializationExceptionIndexOutOfRangeExceptionOverflowExceptionInvalidTimeZoneExceptionOutOfMemoryExceptionExternalExceptionNullReferenceExceptionCultureNotFoundExceptionpublic TimeSpan[] GetAmbiguousTimeOffsets(DateTime dateTime) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException, InvalidTimeZoneException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException, NullReferenceException, OverflowException
java.lang.ThrowableArgumentExceptionArgumentNullExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionInvalidOperationExceptionNotSupportedExceptionArrayTypeMismatchExceptionIndexOutOfRangeExceptionRankExceptionCultureNotFoundExceptionObjectDisposedExceptionInvalidTimeZoneExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionOutOfMemoryExceptionNullReferenceExceptionOverflowExceptionpublic TimeSpan[] GetAmbiguousTimeOffsets(DateTimeOffset dateTimeOffset) throws java.lang.Throwable, ArgumentException, ArgumentNullException, PlatformNotSupportedException, ArgumentOutOfRangeException, InvalidOperationException, NotSupportedException, ArrayTypeMismatchException, IndexOutOfRangeException, RankException, CultureNotFoundException, ObjectDisposedException
public TimeSpan getBaseUtcOffset() throws java.lang.Throwable
java.lang.Throwablepublic java.lang.String getDaylightName()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
NullReferenceException
public java.lang.String getDisplayName()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
NullReferenceException
public boolean getHasIanaId()
throws java.lang.Throwable
java.lang.Throwablepublic java.lang.String getId()
throws java.lang.Throwable
java.lang.Throwablepublic java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in interface IDeserializationCallbackgetJCOAssemblyName in interface ISerializablegetJCOAssemblyName in class NetObjectString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in interface IDeserializationCallbackgetJCOClassName in interface ISerializablegetJCOClassName in class NetObjectString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in interface IDeserializationCallbackgetJCOInstance in interface ISerializablegetJCOInstance in class NetObjectObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in interface IDeserializationCallbackgetJCOObjectName in interface ISerializablegetJCOObjectName in class NetObjectString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in interface IDeserializationCallbackgetJCOType in interface ISerializablegetJCOType in class NetObjectJCType representing the CLR Type of the instantiated Classpublic static TimeZoneInfo getLocal() throws java.lang.Throwable, NotSupportedException, ArgumentException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, InvalidTimeZoneException, CultureNotFoundException, ArgumentNullException, SecurityException, UnauthorizedAccessException, IOException, OutOfMemoryException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionPlatformNotSupportedExceptionInvalidTimeZoneExceptionCultureNotFoundExceptionArgumentNullExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionOutOfMemoryExceptionpublic java.lang.String getStandardName()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
NullReferenceException
public boolean getSupportsDaylightSavingTime()
throws java.lang.Throwable
java.lang.Throwablepublic static TimeZoneInfo getUtc() throws java.lang.Throwable
java.lang.Throwablepublic TimeSpan GetUtcOffset(DateTime dateTime) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, InvalidTimeZoneException, CultureNotFoundException, SecurityException, UnauthorizedAccessException, IOException, NullReferenceException, IndexOutOfRangeException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionInvalidTimeZoneExceptionCultureNotFoundExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionNullReferenceExceptionIndexOutOfRangeExceptionpublic TimeSpan GetUtcOffset(DateTimeOffset dateTimeOffset) throws java.lang.Throwable, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException
java.lang.ThrowableArgumentOutOfRangeExceptionIndexOutOfRangeExceptionPlatformNotSupportedExceptionpublic boolean HasSameRules(TimeZoneInfo other) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
public boolean IsAmbiguousTime(DateTime dateTime) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, OverflowException, PlatformNotSupportedException, IndexOutOfRangeException, InvalidOperationException, InvalidTimeZoneException, CultureNotFoundException, SecurityException, UnauthorizedAccessException, IOException, NullReferenceException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionArgumentNullExceptionArgumentOutOfRangeExceptionOverflowExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionInvalidOperationExceptionInvalidTimeZoneExceptionCultureNotFoundExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionNullReferenceExceptionpublic boolean IsAmbiguousTime(DateTimeOffset dateTimeOffset) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, OverflowException, InvalidTimeZoneException, SecurityException, IOException, PlatformNotSupportedException, NullReferenceException
public boolean IsDaylightSavingTime(DateTime dateTime) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, InvalidTimeZoneException, CultureNotFoundException, SecurityException, UnauthorizedAccessException, IOException, NullReferenceException, IndexOutOfRangeException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionPlatformNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionInvalidTimeZoneExceptionCultureNotFoundExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionNullReferenceExceptionIndexOutOfRangeExceptionpublic boolean IsDaylightSavingTime(DateTimeOffset dateTimeOffset) throws java.lang.Throwable, ArgumentOutOfRangeException, OverflowException, NotSupportedException, PlatformNotSupportedException, ArgumentException, IndexOutOfRangeException
public boolean IsInvalidTime(DateTime dateTime) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, OverflowException, PlatformNotSupportedException, IndexOutOfRangeException
public void setJCOInstance(JCObject instance)
setJCOInstance in class NetObjectpublic java.lang.String ToSerializedString()
throws java.lang.Throwable,
ArgumentException,
ArgumentNullException,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
NotSupportedException,
ObjectDisposedException,
InvalidOperationException,
RankException,
ArrayTypeMismatchException,
IndexOutOfRangeException,
NullReferenceException
public static boolean TryConvertIanaIdToWindowsId(java.lang.String ianaId,
JCORefOut windowsId)
throws java.lang.Throwable,
NotSupportedException,
ArgumentException,
InvalidOperationException,
PlatformNotSupportedException
java.lang.ThrowableNotSupportedExceptionArgumentExceptionInvalidOperationExceptionPlatformNotSupportedExceptionpublic static boolean TryConvertWindowsIdToIanaId(java.lang.String windowsId,
JCORefOut ianaId)
throws java.lang.Throwable,
ArgumentException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
NotSupportedException,
IndexOutOfRangeException,
OutOfMemoryException,
ExternalException,
ArgumentOutOfRangeException,
InvalidOperationException
public static boolean TryConvertWindowsIdToIanaId(java.lang.String windowsId,
java.lang.String region,
JCORefOut ianaId)
throws java.lang.Throwable,
ArgumentException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
NotSupportedException,
IndexOutOfRangeException,
OutOfMemoryException,
ExternalException,
ArgumentOutOfRangeException,
InvalidOperationException
public static boolean TryFindSystemTimeZoneById(java.lang.String id,
JCORefOut<TimeZoneInfo> timeZoneInfo)
throws java.lang.Throwable,
ArgumentException,
CultureNotFoundException,
PlatformNotSupportedException,
NullReferenceException,
NotSupportedException,
IndexOutOfRangeException,
OutOfMemoryException,
ExternalException,
ArgumentOutOfRangeException,
SecurityException,
UnauthorizedAccessException,
IOException,
InvalidOperationException,
InvalidTimeZoneException
java.lang.ThrowableArgumentExceptionCultureNotFoundExceptionPlatformNotSupportedExceptionNullReferenceExceptionNotSupportedExceptionIndexOutOfRangeExceptionOutOfMemoryExceptionExternalExceptionArgumentOutOfRangeExceptionSecurityExceptionUnauthorizedAccessExceptionIOExceptionInvalidOperationExceptionInvalidTimeZoneException