public class

AnyRtlDirectionEstimator

extends DirectionEstimator
java.lang.Object
   ↳ com.google.gwt.i18n.shared.DirectionEstimator
     ↳ com.google.gwt.i18n.shared.AnyRtlDirectionEstimator

Class Overview

Direction estimator that uses the "any RTL" heuristic.

Summary

Public Constructors
AnyRtlDirectionEstimator()
Public Methods
HasDirection.Direction estimateDirection(String str)
Estimates the direction of a given string using the "any RTL" heuristic: the return value is RTL if the string contains at least one RTL character.
static AnyRtlDirectionEstimator get()
Get an instance of AnyRtlDirectionEstimator.
[Expand]
Inherited Methods
From class com.google.gwt.i18n.shared.DirectionEstimator
From class java.lang.Object

Public Constructors

public AnyRtlDirectionEstimator ()

Public Methods

public HasDirection.Direction estimateDirection (String str)

Estimates the direction of a given string using the "any RTL" heuristic: the return value is RTL if the string contains at least one RTL character. Otherwise, it is LTR.

Parameters
str Input string.
Returns
  • Direction The estimated direction of str.

public static AnyRtlDirectionEstimator get ()

Get an instance of AnyRtlDirectionEstimator.

Returns
  • An instance of AnyRtlDirectionEstimator.