Fields Summary |
---|
public static final TextDirectionHeuristic | LTRAlways decides that the direction is left to right. |
public static final TextDirectionHeuristic | RTLAlways decides that the direction is right to left. |
public static final TextDirectionHeuristic | FIRSTSTRONG_LTRDetermines the direction based on the first strong directional character, including bidi
format chars, falling back to left to right if it finds none. This is the default behavior
of the Unicode Bidirectional Algorithm. |
public static final TextDirectionHeuristic | FIRSTSTRONG_RTLDetermines the direction based on the first strong directional character, including bidi
format chars, falling back to right to left if it finds none. This is similar to the default
behavior of the Unicode Bidirectional Algorithm, just with different fallback behavior. |
public static final TextDirectionHeuristic | ANYRTL_LTRIf the text contains any strong right to left non-format character, determines that the
direction is right to left, falling back to left to right if it finds none. |
public static final TextDirectionHeuristic | LOCALEForce the paragraph direction to the Locale direction. Falls back to left to right. |
private static final int | STATE_TRUEState constants for taking care about true / false / unknown |
private static final int | STATE_FALSE |
private static final int | STATE_UNKNOWN |