Package com.google.gwt.i18n.shared
Class AnyRtlDirectionEstimator
- java.lang.Object
-
- com.google.gwt.i18n.shared.DirectionEstimator
-
- com.google.gwt.i18n.shared.AnyRtlDirectionEstimator
-
public class AnyRtlDirectionEstimator extends DirectionEstimator
Direction estimator that uses the "any RTL" heuristic.
-
-
Constructor Summary
Constructors Constructor Description AnyRtlDirectionEstimator()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description HasDirection.Direction
estimateDirection(java.lang.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.-
Methods inherited from class com.google.gwt.i18n.shared.DirectionEstimator
estimateDirection, estimateDirection
-
-
-
-
Method Detail
-
get
public static AnyRtlDirectionEstimator get()
Get an instance of AnyRtlDirectionEstimator.- Returns:
- An instance of AnyRtlDirectionEstimator.
-
estimateDirection
public HasDirection.Direction estimateDirection(java.lang.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.- Specified by:
estimateDirection
in classDirectionEstimator
- Parameters:
str
- Input string.- Returns:
- Direction The estimated direction of
str
.
-
-