Transliterator.GetElements Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Return the elements that make up this transliterator.
[Android.Runtime.Register("getElements", "()[Landroid/icu/text/Transliterator;", "GetGetElementsHandler", ApiSince=29)]
public virtual Android.Icu.Text.Transliterator[]? GetElements ();
[<Android.Runtime.Register("getElements", "()[Landroid/icu/text/Transliterator;", "GetGetElementsHandler", ApiSince=29)>]
abstract member GetElements : unit -> Android.Icu.Text.Transliterator[]
override this.GetElements : unit -> Android.Icu.Text.Transliterator[]
Returns
an array of one or more transliterators that make up this transliterator
- Attributes
Remarks
Return the elements that make up this transliterator. For example, if the transliterator "NFD;Jamo-Latin;Latin-Greek" were created, the return value of this method would be an array of the three transliterator objects that make up that transliterator: [NFD, Jamo-Latin, Latin-Greek].
If this transliterator is not composed of other transliterators, then this method will return an array of length one containing a reference to this transliterator.
Java documentation for android.icu.text.Transliterator.getElements()
.
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.