DecimalFormatSymbols Class

Definition

This class represents the set of symbols (such as the decimal separator, the grouping separator, and so on) needed by DecimalFormat to format numbers.

[Android.Runtime.Register("java/text/DecimalFormatSymbols", DoNotGenerateAcw=true)]
public class DecimalFormatSymbols : Java.Lang.Object, IDisposable, Java.Interop.IJavaPeerable, Java.IO.ISerializable, Java.Lang.ICloneable
[<Android.Runtime.Register("java/text/DecimalFormatSymbols", DoNotGenerateAcw=true)>]
type DecimalFormatSymbols = class
    inherit Object
    interface ISerializable
    interface IJavaObject
    interface IDisposable
    interface IJavaPeerable
    interface ICloneable
Inheritance
DecimalFormatSymbols
Attributes
Implements

Remarks

This class represents the set of symbols (such as the decimal separator, the grouping separator, and so on) needed by DecimalFormat to format numbers. DecimalFormat creates for itself an instance of DecimalFormatSymbols from its locale data. If you need to change any of these symbols, you can get the DecimalFormatSymbols object from your DecimalFormat and modify it.

Added in 1.1.

Java documentation for java.text.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.

Constructors

DecimalFormatSymbols()

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

DecimalFormatSymbols(IntPtr, JniHandleOwnership)

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

DecimalFormatSymbols(Locale)

Create a DecimalFormatSymbols object for the given locale.

Properties

Class

Returns the runtime class of this Object.

(Inherited from Object)
Currency

Gets the currency of these DecimalFormatSymbols. -or- Sets the currency of these DecimalFormatSymbols.

CurrencySymbol

Returns the currency symbol for the currency of these DecimalFormatSymbols in their locale. -or- Sets the currency symbol for the currency of these DecimalFormatSymbols in their locale.

DecimalSeparator

Gets the character used for decimal sign. -or- Sets the character used for decimal sign.

Digit

Gets the character used for a digit in a pattern. -or- Sets the character used for a digit in a pattern.

ExponentSeparator

Returns the string used to separate the mantissa from the exponent. -or- Sets the string used to separate the mantissa from the exponent.

GroupingSeparator

Gets the character used for grouping separator. -or- Sets the character used for grouping separator.

Handle

The handle to the underlying Android instance.

(Inherited from Object)
Infinity

Gets the string used to represent infinity. -or- Sets the string used to represent infinity.

Instance

Gets the DecimalFormatSymbols instance for the default locale.

InternationalCurrencySymbol

Returns the ISO 4217 currency code of the currency of these DecimalFormatSymbols. -or- Sets the ISO 4217 currency code of the currency of these DecimalFormatSymbols.

JniIdentityHashCode (Inherited from Object)
JniPeerMembers
MinusSign

Gets the character used to represent minus sign. -or- Sets the character used to represent minus sign.

MonetaryDecimalSeparator

Returns the monetary decimal separator. -or- Sets the monetary decimal separator.

MonetaryGroupingSeparator

Gets the character used for grouping separator for currencies. -or- Sets the character used for grouping separator for currencies.

NaN

Gets the string used to represent "not a number". -or- Sets the string used to represent "not a number".

PatternSeparator

Gets the character used to separate positive and negative subpatterns in a pattern. -or- Sets the character used to separate positive and negative subpatterns in a pattern.

PeerReference (Inherited from Object)
Percent

Gets the character used for percent sign. -or- Sets the character used for percent sign.

PerMill

Gets the character used for per mille sign. -or- Sets the character used for per mille sign.

ThresholdClass

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

ThresholdType

This API supports the Mono for Android infrastructure and is not intended to be used directly from your code.

ZeroDigit

Gets the character used for zero. -or- Sets the character used for zero.

Methods

Clone()

Standard override.

Dispose() (Inherited from Object)
Dispose(Boolean) (Inherited from Object)
Equals(Object)

Indicates whether some other object is "equal to" this one.

(Inherited from Object)
GetAvailableLocales()

Returns an array of all locales for which the getInstance methods of this class can return localized instances.

GetHashCode()

Returns a hash code value for the object.

(Inherited from Object)
GetInstance(Locale)

Gets the DecimalFormatSymbols instance for the specified locale.

JavaFinalize()

Called by the garbage collector on an object when garbage collection determines that there are no more references to the object.

(Inherited from Object)
Notify()

Wakes up a single thread that is waiting on this object's monitor.

(Inherited from Object)
NotifyAll()

Wakes up all threads that are waiting on this object's monitor.

(Inherited from Object)
SetHandle(IntPtr, JniHandleOwnership)

Sets the Handle property.

(Inherited from Object)
ToArray<T>() (Inherited from Object)
ToString()

Returns a string representation of the object.

(Inherited from Object)
UnregisterFromRuntime() (Inherited from Object)
Wait()

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>.

(Inherited from Object)
Wait(Int64)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)
Wait(Int64, Int32)

Causes the current thread to wait until it is awakened, typically by being <em>notified</em> or <em>interrupted</em>, or until a certain amount of real time has elapsed.

(Inherited from Object)

Explicit Interface Implementations

IJavaPeerable.Disposed() (Inherited from Object)
IJavaPeerable.DisposeUnlessReferenced() (Inherited from Object)
IJavaPeerable.Finalized() (Inherited from Object)
IJavaPeerable.JniManagedPeerState (Inherited from Object)
IJavaPeerable.SetJniIdentityHashCode(Int32) (Inherited from Object)
IJavaPeerable.SetJniManagedPeerState(JniManagedPeerStates) (Inherited from Object)
IJavaPeerable.SetPeerReference(JniObjectReference) (Inherited from Object)

Extension Methods

JavaCast<TResult>(IJavaObject)

Performs an Android runtime-checked type conversion.

JavaCast<TResult>(IJavaObject)
GetJniTypeName(IJavaPeerable)

Applies to