public interface TextDirectionHeuristicCompat
Modifier and Type | Method and Description |
---|---|
boolean |
isRtl(char[] array,
int start,
int count)
Guess if a chars array is in the RTL direction or not.
|
boolean |
isRtl(CharSequence cs,
int start,
int count)
Guess if a
CharSequence is in the RTL direction or not. |
boolean isRtl(char[] array, int start, int count)
array
- the char array.start
- start index, inclusive.count
- the length to check, must not be negative and not greater than
array.length - start
.boolean isRtl(CharSequence cs, int start, int count)
CharSequence
is in the RTL direction or not.cs
- the CharSequence.start
- start index, inclusive.count
- the length to check, must not be negative and not greater than
CharSequence.length() - start
.