Added in API level 29

BidiRun


public class BidiRun
extends Object

java.lang.Object
   ↳ android.icu.text.BidiRun


A BidiRun represents a sequence of characters at the same embedding level. The Bidi algorithm decomposes a piece of text into sequences of characters at the same embedding level, each such sequence is called a "run".

A BidiRun represents such a run by storing its essential properties, but does not duplicate the characters which form the run.

The "limit" of the run is the position just after the last character, i.e., one more than that position.

This class has no public constructor, and its members cannot be modified by users.

See also:

Summary

Public methods

byte getDirection()

Get direction of run

byte getEmbeddingLevel()

Get level of run

int getLength()

Get length of run

int getLimit()

Get position of one character after the end of the run in the source text

int getStart()

Get the first logical position of the run in the source text

boolean isEvenRun()

Check if run level is even

boolean isOddRun()

Check if run level is odd

String toString()

String to display run

Inherited methods

Object clone()

Creates and returns a copy of this object.

boolean equals(Object obj)

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

void finalize()

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

final Class<?> getClass()

Returns the runtime class of this Object.

int hashCode()

Returns a hash code value for the object.

final void notify()

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

final void notifyAll()

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

String toString()

Returns a string representation of the object.

final void wait(long timeoutMillis, int nanos)

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

final void wait(long timeoutMillis)

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

final void wait()

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

Public methods

getDirection

Added in API level 29
public byte getDirection ()

Get direction of run

Returns
byte

getEmbeddingLevel

Added in API level 29
public byte getEmbeddingLevel ()

Get level of run

Returns
byte

getLength

Added in API level 29
public int getLength ()

Get length of run

Returns
int

getLimit

Added in API level 29
public int getLimit ()

Get position of one character after the end of the run in the source text

Returns
int

getStart

Added in API level 29
public int getStart ()

Get the first logical position of the run in the source text

Returns
int

isEvenRun

Added in API level 29
public boolean isEvenRun ()

Check if run level is even

Returns
boolean true if the embedding level of this run is even, i.e. it is a left-to-right run.

isOddRun

Added in API level 29
public boolean isOddRun ()

Check if run level is odd

Returns
boolean true if the embedding level of this run is odd, i.e. it is a right-to-left run.

toString

Added in API level 29
public String toString ()

String to display run

Returns
String a string representation of the object.