Package system.globalization
Class CultureInfo
- java.lang.Object
-
- org.mases.jcobridge.netreflection.NetObject
-
- system.globalization.CultureInfo
-
- All Implemented Interfaces:
IJCOBridgeReflected
public class CultureInfo extends NetObject
The base .NET class managing System.Globalization.CultureInfo, System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e..NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.Globalization.CultureInfo
Powered by JCOBridge: more info at https://www.jcobridge.com
- Author:
- MASES s.r.l https://masesgroup.com
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798estatic java.lang.String
assemblyShortName
Assembly name: System.Private.CoreLibstatic java.lang.String
className
Qualified class name: System.Globalization.CultureInfostatic JCType
classType
The type managed from JCOBridge.
-
Constructor Summary
Constructors Constructor Description CultureInfo()
CultureInfo(int culture)
CultureInfo(int culture, boolean useUserOverride)
CultureInfo(java.lang.Object instance)
Internal constructor.CultureInfo(java.lang.String name)
CultureInfo(java.lang.String name, boolean useUserOverride)
-
Method Summary
-
-
-
Field Detail
-
assemblyFullName
public static final java.lang.String assemblyFullName
Fully assembly qualified name: System.Private.CoreLib, Version=9.0.0.0, Culture=neutral, PublicKeyToken=7cec85d7bea7798e- See Also:
- Constant Field Values
-
assemblyShortName
public static final java.lang.String assemblyShortName
Assembly name: System.Private.CoreLib- See Also:
- Constant Field Values
-
className
public static final java.lang.String className
Qualified class name: System.Globalization.CultureInfo- See Also:
- Constant Field Values
-
-
Constructor Detail
-
CultureInfo
public CultureInfo(java.lang.Object instance) throws java.lang.Throwable
Internal constructor. Use with caution- Throws:
java.lang.Throwable
-
CultureInfo
public CultureInfo() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
CultureInfo
public CultureInfo(int culture, boolean useUserOverride) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, CultureNotFoundException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
CultureNotFoundException
OutOfMemoryException
-
CultureInfo
public CultureInfo(int culture) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException, CultureNotFoundException, OutOfMemoryException, ArgumentNullException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
IndexOutOfRangeException
FormatException
CultureNotFoundException
OutOfMemoryException
ArgumentNullException
-
CultureInfo
public CultureInfo(java.lang.String name, boolean useUserOverride) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException, IndexOutOfRangeException, CultureNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
OutOfMemoryException
IndexOutOfRangeException
CultureNotFoundException
-
CultureInfo
public CultureInfo(java.lang.String name) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, OutOfMemoryException, IndexOutOfRangeException, CultureNotFoundException
-
-
Method Detail
-
getJCOAssemblyName
public java.lang.String getJCOAssemblyName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Assembly name- Specified by:
getJCOAssemblyName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOAssemblyName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Assembly
-
getJCOClassName
public java.lang.String getJCOClassName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name- Specified by:
getJCOClassName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOClassName
in classNetObject
- Returns:
- A
String
representing the Fullname of reflected Class
-
getJCOObjectName
public java.lang.String getJCOObjectName()
Description copied from interface:IJCOBridgeReflected
Returns the reflected Class name used to build the object- Specified by:
getJCOObjectName
in interfaceIJCOBridgeReflected
- Overrides:
getJCOObjectName
in classNetObject
- Returns:
- A
String
representing the name used to allocated the object in CLR context
-
getJCOInstance
public java.lang.Object getJCOInstance()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class- Specified by:
getJCOInstance
in interfaceIJCOBridgeReflected
- Overrides:
getJCOInstance
in classNetObject
- Returns:
- An
Object
representing the CLR instance of the instantiated Class
-
setJCOInstance
public void setJCOInstance(JCObject instance)
- Overrides:
setJCOInstance
in classNetObject
-
getJCOType
public JCType getJCOType()
Description copied from interface:IJCOBridgeReflected
Returns the instantiated class Type- Specified by:
getJCOType
in interfaceIJCOBridgeReflected
- Overrides:
getJCOType
in classNetObject
- Returns:
- A
JCType
representing the CLR Type of the instantiated Class
-
cast
public static CultureInfo cast(IJCOBridgeReflected from) throws java.lang.Throwable
Try to cast theIJCOBridgeReflected
instance intoCultureInfo
, a cast assert is made to check if types are compatible.- Parameters:
from
-IJCOBridgeReflected
instance to be casted- Returns:
CultureInfo
instance- Throws:
java.lang.Throwable
- in case of error during cast operation
-
CreateSpecificCulture
public static CultureInfo CreateSpecificCulture(java.lang.String name) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, OutOfMemoryException, PlatformNotSupportedException, ArgumentOutOfRangeException, IndexOutOfRangeException, InvalidOperationException, RankException, ArrayTypeMismatchException, CultureNotFoundException
-
GetConsoleFallbackUICulture
public CultureInfo GetConsoleFallbackUICulture() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, OutOfMemoryException, NotSupportedException, InvalidOperationException, CultureNotFoundException
-
GetCultureInfo
public static CultureInfo GetCultureInfo(int culture) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, NullReferenceException, CultureNotFoundException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
NullReferenceException
CultureNotFoundException
OutOfMemoryException
-
GetCultureInfo
public static CultureInfo GetCultureInfo(java.lang.String name, boolean predefinedOnly) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, CultureNotFoundException, IndexOutOfRangeException, NullReferenceException, OutOfMemoryException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
CultureNotFoundException
IndexOutOfRangeException
NullReferenceException
OutOfMemoryException
-
GetCultureInfo
public static CultureInfo GetCultureInfo(java.lang.String name, java.lang.String altName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, OutOfMemoryException, IndexOutOfRangeException, NullReferenceException, CultureNotFoundException, FormatException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
OutOfMemoryException
IndexOutOfRangeException
NullReferenceException
CultureNotFoundException
FormatException
-
GetCultureInfo
public static CultureInfo GetCultureInfo(java.lang.String name) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, NullReferenceException, OutOfMemoryException, CultureNotFoundException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
NullReferenceException
OutOfMemoryException
CultureNotFoundException
-
GetCultureInfoByIetfLanguageTag
public static CultureInfo GetCultureInfoByIetfLanguageTag(java.lang.String name) throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, FormatException, CultureNotFoundException, ArgumentNullException, NullReferenceException, OutOfMemoryException, RankException, ArrayTypeMismatchException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
IndexOutOfRangeException
ArgumentOutOfRangeException
InvalidOperationException
FormatException
CultureNotFoundException
ArgumentNullException
NullReferenceException
OutOfMemoryException
RankException
ArrayTypeMismatchException
-
ReadOnly
public static CultureInfo ReadOnly(CultureInfo ci) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, CultureNotFoundException, TypeInitializationException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
CultureNotFoundException
TypeInitializationException
NullReferenceException
-
GetCultures
public static CultureInfo[] GetCultures(CultureTypes types) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, CultureNotFoundException, ObjectDisposedException, OutOfMemoryException, IndexOutOfRangeException
-
Clone
public NetObject Clone() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, CultureNotFoundException, TypeInitializationException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
ArrayTypeMismatchException
ArgumentNullException
IndexOutOfRangeException
CultureNotFoundException
TypeInitializationException
NullReferenceException
-
GetFormat
public NetObject GetFormat(NetType formatType) throws java.lang.Throwable, OutOfMemoryException, PlatformNotSupportedException, ArgumentNullException, ArgumentException, NotSupportedException, CultureNotFoundException, InvalidOperationException, IndexOutOfRangeException, ArgumentOutOfRangeException, ArrayTypeMismatchException, RankException, InvalidCastException, TypeInitializationException
- Throws:
java.lang.Throwable
OutOfMemoryException
PlatformNotSupportedException
ArgumentNullException
ArgumentException
NotSupportedException
CultureNotFoundException
InvalidOperationException
IndexOutOfRangeException
ArgumentOutOfRangeException
ArrayTypeMismatchException
RankException
InvalidCastException
TypeInitializationException
-
ClearCachedData
public void ClearCachedData() throws java.lang.Throwable, ArgumentNullException, OutOfMemoryException, PlatformNotSupportedException, ArgumentOutOfRangeException, ArgumentException, InvalidOperationException, IndexOutOfRangeException, CultureNotFoundException, ArrayTypeMismatchException, NullReferenceException, NotSupportedException
-
getIsNeutralCulture
public boolean getIsNeutralCulture() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getIsReadOnly
public boolean getIsReadOnly() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getUseUserOverride
public boolean getUseUserOverride() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getKeyboardLayoutId
public int getKeyboardLayoutId() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
-
getLCID
public int getLCID() throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
NotSupportedException
-
getCalendar
public Calendar getCalendar() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, IndexOutOfRangeException, FormatException, OutOfMemoryException, CultureNotFoundException, TypeInitializationException, SecurityException, UnauthorizedAccessException, IOException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
PlatformNotSupportedException
NotSupportedException
ObjectDisposedException
InvalidOperationException
RankException
ArrayTypeMismatchException
IndexOutOfRangeException
FormatException
OutOfMemoryException
CultureNotFoundException
TypeInitializationException
SecurityException
UnauthorizedAccessException
IOException
-
getOptionalCalendars
public final Calendar[] getOptionalCalendars() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, ArgumentNullException, InvalidOperationException, PlatformNotSupportedException, ArrayTypeMismatchException, NotSupportedException, ObjectDisposedException, RankException, IndexOutOfRangeException, OutOfMemoryException, CultureNotFoundException, TypeInitializationException, SecurityException, UnauthorizedAccessException, IOException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
ArgumentNullException
InvalidOperationException
PlatformNotSupportedException
ArrayTypeMismatchException
NotSupportedException
ObjectDisposedException
RankException
IndexOutOfRangeException
OutOfMemoryException
CultureNotFoundException
TypeInitializationException
SecurityException
UnauthorizedAccessException
IOException
-
getCompareInfo
public CompareInfo getCompareInfo() throws java.lang.Throwable, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentException, ArgumentNullException, InvalidOperationException, ArgumentOutOfRangeException, OutOfMemoryException, ExternalException, NotSupportedException, NullReferenceException, CultureNotFoundException
-
getCurrentCulture
public static CultureInfo getCurrentCulture() throws java.lang.Throwable, ArgumentNullException, OutOfMemoryException, PlatformNotSupportedException, ArgumentException, InvalidOperationException, CultureNotFoundException, NullReferenceException, NotSupportedException
-
setCurrentCulture
public static void setCurrentCulture(CultureInfo CurrentCulture) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, NullReferenceException
-
getCurrentUICulture
public static CultureInfo getCurrentUICulture() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, OutOfMemoryException, CultureNotFoundException, NullReferenceException
-
setCurrentUICulture
public static void setCurrentUICulture(CultureInfo CurrentUICulture) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, NullReferenceException
-
getDefaultThreadCurrentCulture
public static CultureInfo getDefaultThreadCurrentCulture() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setDefaultThreadCurrentCulture
public static void setDefaultThreadCurrentCulture(CultureInfo DefaultThreadCurrentCulture) throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getDefaultThreadCurrentUICulture
public static CultureInfo getDefaultThreadCurrentUICulture() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
setDefaultThreadCurrentUICulture
public static void setDefaultThreadCurrentUICulture(CultureInfo DefaultThreadCurrentUICulture) throws java.lang.Throwable, NotSupportedException, ArgumentException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentOutOfRangeException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
IndexOutOfRangeException
PlatformNotSupportedException
ArgumentOutOfRangeException
-
getInstalledUICulture
public static CultureInfo getInstalledUICulture() throws java.lang.Throwable, ArgumentNullException, OutOfMemoryException, PlatformNotSupportedException, ArgumentException, InvalidOperationException, CultureNotFoundException, NullReferenceException, NotSupportedException
-
getInvariantCulture
public static CultureInfo getInvariantCulture() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getParent
public CultureInfo getParent() throws java.lang.Throwable, NotSupportedException, ArgumentException, OutOfMemoryException, PlatformNotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, InvalidOperationException, ArgumentNullException, RankException, ArrayTypeMismatchException, NullReferenceException
-
getCultureTypes
public CultureTypes getCultureTypes() throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, PlatformNotSupportedException, ArgumentNullException, RankException, ArrayTypeMismatchException, CultureNotFoundException, NullReferenceException, NotSupportedException, OutOfMemoryException, ExternalException, InvalidOperationException
- Throws:
java.lang.Throwable
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
PlatformNotSupportedException
ArgumentNullException
RankException
ArrayTypeMismatchException
CultureNotFoundException
NullReferenceException
NotSupportedException
OutOfMemoryException
ExternalException
InvalidOperationException
-
getDateTimeFormat
public DateTimeFormatInfo getDateTimeFormat() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ArrayTypeMismatchException, CultureNotFoundException, TypeInitializationException, SecurityException, UnauthorizedAccessException, IOException, ArgumentNullException, OutOfMemoryException, NullReferenceException
- Throws:
java.lang.Throwable
ArgumentException
NotSupportedException
InvalidOperationException
ArgumentOutOfRangeException
PlatformNotSupportedException
IndexOutOfRangeException
FormatException
ArrayTypeMismatchException
CultureNotFoundException
TypeInitializationException
SecurityException
UnauthorizedAccessException
IOException
ArgumentNullException
OutOfMemoryException
NullReferenceException
-
setDateTimeFormat
public void setDateTimeFormat(DateTimeFormatInfo DateTimeFormat) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
getNumberFormat
public NumberFormatInfo getNumberFormat() throws java.lang.Throwable, OutOfMemoryException, PlatformNotSupportedException, ArgumentNullException, ArgumentException, NullReferenceException, NotSupportedException, ExternalException, InvalidOperationException, CultureNotFoundException, ArgumentOutOfRangeException, IndexOutOfRangeException
-
setNumberFormat
public void setNumberFormat(NumberFormatInfo NumberFormat) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException
-
getTextInfo
public TextInfo getTextInfo() throws java.lang.Throwable, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
NotSupportedException
-
getDisplayName
public java.lang.String getDisplayName() throws java.lang.Throwable, OutOfMemoryException, PlatformNotSupportedException, NotSupportedException, ArgumentException, CultureNotFoundException, NullReferenceException, IndexOutOfRangeException, ExternalException, ArgumentOutOfRangeException
-
getEnglishName
public java.lang.String getEnglishName() throws java.lang.Throwable, OutOfMemoryException, PlatformNotSupportedException, NotSupportedException, IndexOutOfRangeException, ArgumentOutOfRangeException, ArgumentException
-
getIetfLanguageTag
public java.lang.String getIetfLanguageTag() throws java.lang.Throwable, NotSupportedException, ArgumentException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
NotSupportedException
ArgumentException
PlatformNotSupportedException
-
getName
public java.lang.String getName() throws java.lang.Throwable
- Throws:
java.lang.Throwable
-
getNativeName
public java.lang.String getNativeName() throws java.lang.Throwable, OutOfMemoryException, PlatformNotSupportedException, NotSupportedException
- Throws:
java.lang.Throwable
OutOfMemoryException
PlatformNotSupportedException
NotSupportedException
-
getThreeLetterISOLanguageName
public java.lang.String getThreeLetterISOLanguageName() throws java.lang.Throwable, OutOfMemoryException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
OutOfMemoryException
PlatformNotSupportedException
-
getThreeLetterWindowsLanguageName
public java.lang.String getThreeLetterWindowsLanguageName() throws java.lang.Throwable, PlatformNotSupportedException, ArgumentException, ArgumentOutOfRangeException, IndexOutOfRangeException, NotSupportedException
- Throws:
java.lang.Throwable
PlatformNotSupportedException
ArgumentException
ArgumentOutOfRangeException
IndexOutOfRangeException
NotSupportedException
-
getTwoLetterISOLanguageName
public java.lang.String getTwoLetterISOLanguageName() throws java.lang.Throwable, OutOfMemoryException, PlatformNotSupportedException
- Throws:
java.lang.Throwable
OutOfMemoryException
PlatformNotSupportedException
-
-