DecimalFormatSymbols Constructors

Definition

Overloads

DecimalFormatSymbols()

Create a DecimalFormatSymbols object for the default java.util.Locale.Category#FORMAT FORMAT locale.

DecimalFormatSymbols(Locale)

Create a DecimalFormatSymbols object for the given locale.

DecimalFormatSymbols(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

DecimalFormatSymbols()

Create a DecimalFormatSymbols object for the default java.util.Locale.Category#FORMAT FORMAT locale.

[Android.Runtime.Register(".ctor", "()V", "")]
public DecimalFormatSymbols ();
Attributes

Remarks

Create a DecimalFormatSymbols object for the default java.util.Locale.Category#FORMAT FORMAT locale. It is recommended that the #getInstance(Locale) getInstance method is used instead.

This is equivalent to calling #DecimalFormatSymbols(Locale) DecimalFormatSymbols(Locale.getDefault(Locale.Category.FORMAT)).

Java documentation for java.text.DecimalFormatSymbols.DecimalFormatSymbols().

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

DecimalFormatSymbols(Locale)

Create a DecimalFormatSymbols object for the given locale.

[Android.Runtime.Register(".ctor", "(Ljava/util/Locale;)V", "")]
public DecimalFormatSymbols (Java.Util.Locale? locale);
[<Android.Runtime.Register(".ctor", "(Ljava/util/Locale;)V", "")>]
new Java.Text.DecimalFormatSymbols : Java.Util.Locale -> Java.Text.DecimalFormatSymbols

Parameters

locale
Locale

the desired locale

Attributes

Remarks

Create a DecimalFormatSymbols object for the given locale. It is recommended that the #getInstance(Locale) getInstance method is used instead. If the specified locale contains the java.util.Locale#UNICODE_LOCALE_EXTENSION for the numbering system, the instance is initialized with the specified numbering system if the JRE implementation supports it. For example,

NumberFormat.getNumberInstance(Locale.forLanguageTag("th-TH-u-nu-thai"))

This may return a NumberFormat instance with the Thai numbering system, instead of the Latin numbering system.

Java documentation for java.text.DecimalFormatSymbols.DecimalFormatSymbols(java.util.Locale).

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to

DecimalFormatSymbols(IntPtr, JniHandleOwnership)

A constructor used when creating managed representations of JNI objects; called by the runtime.

protected DecimalFormatSymbols (IntPtr javaReference, Android.Runtime.JniHandleOwnership transfer);
new Java.Text.DecimalFormatSymbols : nativeint * Android.Runtime.JniHandleOwnership -> Java.Text.DecimalFormatSymbols

Parameters

javaReference
IntPtr

nativeint

A IntPtrcontaining a Java Native Interface (JNI) object reference.

transfer
JniHandleOwnership

A JniHandleOwnershipindicating how to handle javaReference

Remarks

Portions of this page are modifications based on work created and shared by the Android Open Source Project and used according to terms described in the Creative Commons 2.5 Attribution License.

Applies to