Added in API level 29

BidiClassifier

open class BidiClassifier
kotlin.Any
   ↳ android.icu.text.BidiClassifier

Overrides default Bidi class values with custom ones.

The override mechanism requires to define a subclass of BidiClassifier which overrides the classifier method to assign customized Bidi classes.

This may be useful for assigning Bidi classes to PUA characters, or for special application needs. For instance, an application may want to handle all spaces like L or R characters (according to the base direction) when creating the visual ordering of logical lines which are part of a report organized in columns: there should not be interaction between adjacent cells.

To start using this customized classifier with a Bidi object, it must be specified by calling the Bidi.setCustomClassifier method; after that, the method classify of the custom BidiClassifier will be called by the UBA implementation any time the class of a character is to be determined.

Summary

Public constructors
BidiClassifier(context: Any!)

Public methods
open Int

Gets customized Bidi class for the code point c.

open Any!

Returns the current classifier context.

open Unit
setContext(context: Any!)

Sets classifier context, which can be used either by a caller or callee for various purposes.

Public constructors

BidiClassifier

Added in API level 29
BidiClassifier(context: Any!)
Parameters
context Any!: Context for this classifier instance. May be null.

Public methods

classify

Added in API level 29
open fun classify(c: Int): Int

Gets customized Bidi class for the code point c.

Default implementation, to be overridden.

Parameters
c Int: Code point to be classified.
Return
Int An integer representing directional property / Bidi class for the given code point c, or UCharacter.getIntPropertyMaxValue(UProperty.BIDI_CLASS)+1 to signify that there is no need to override the standard Bidi class for the given code point.

getContext

Added in API level 29
open fun getContext(): Any!

Returns the current classifier context.

setContext

Added in API level 29
open fun setContext(context: Any!): Unit

Sets classifier context, which can be used either by a caller or callee for various purposes.

Parameters
context Any!: Context for this classifier instance. May be null.