Partager via


Transliterator.Inverse Property

Definition

Returns this transliterator's inverse.

public Android.Icu.Text.Transliterator? Inverse { [Android.Runtime.Register("getInverse", "()Landroid/icu/text/Transliterator;", "", ApiSince=29)] get; }
[<get: Android.Runtime.Register("getInverse", "()Landroid/icu/text/Transliterator;", "", ApiSince=29)>]
member this.Inverse : Android.Icu.Text.Transliterator

Property Value

a transliterator that is an inverse, not necessarily exact, of this transliterator, or null if no such transliterator is registered.

Attributes

Remarks

Returns this transliterator's inverse. See the class documentation for details. This implementation simply inverts the two entities in the ID and attempts to retrieve the resulting transliterator. That is, if getID() returns "A-B", then this method will return the result of getInstance("B-A"), or null if that call fails.

Subclasses with knowledge of their inverse may wish to override this method.

Java documentation for android.icu.text.Transliterator.getInverse().

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