Package org.apache.abdera.i18n.text
Class Bidi
java.lang.Object
org.apache.abdera.i18n.text.Bidi
Deprecated.
This API is deprecated as Apache Abdera is a retired project since 2017.
Bidi guessing algorithms
-
Nested Class Summary
Nested Classes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionstatic Bidi.Direction
guessDirectionFromEncoding
(String charset) Deprecated.Algorithm that will determine text direction by looking at the character set encoding.static Bidi.Direction
Deprecated.Algorithm that defers to the Java Bidi implementation to determine text direction.static Bidi.Direction
Deprecated.Algorithm that will determine text direction by looking at the characteristics of the language tag.static Bidi.Direction
Deprecated.Algorithm that analyzes properties of the text to determine text direction.
-
Constructor Details
-
Bidi
public Bidi()Deprecated.
-
-
Method Details
-
guessDirectionFromLanguage
Deprecated.Algorithm that will determine text direction by looking at the characteristics of the language tag. If the tag uses a language or script that is known to be RTL, then Direction.RTL will be returned -
guessDirectionFromEncoding
Deprecated.Algorithm that will determine text direction by looking at the character set encoding. If the charset is typically used for RTL languages, Direction.RTL will be returned -
guessDirectionFromTextProperties
Deprecated.Algorithm that analyzes properties of the text to determine text direction. If the majority of characters in the text are RTL characters, then Direction.RTL will be returned. -
guessDirectionFromJavaBidi
Deprecated.Algorithm that defers to the Java Bidi implementation to determine text direction.
-