Package org.apache.pdfbox.util
Class ICU4JImpl
- java.lang.Object
-
- org.apache.pdfbox.util.ICU4JImpl
-
public class ICU4JImpl extends java.lang.ObjectDeprecated.will be removed in 2.0.0This class is an implementation the ICU4J class. TextNormalize will call this only if the ICU4J library exists in the classpath.- Version:
- $Revision: 1.0 $
- Author:
- Brian Carrier
-
-
Constructor Summary
Constructors Constructor Description ICU4JImpl()Deprecated.Constructor.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description java.lang.StringmakeLineLogicalOrder(java.lang.String str, boolean isRtlDominant)Deprecated.Takes a line of text in presentation order and converts it to logical order.java.lang.StringnormalizeDiac(java.lang.String str)Deprecated.Decomposes Diacritic characters to their combining forms.java.lang.StringnormalizePres(java.lang.String str)Deprecated.Normalize presentation forms of characters to the separate parts.
-
-
-
Method Detail
-
makeLineLogicalOrder
public java.lang.String makeLineLogicalOrder(java.lang.String str, boolean isRtlDominant)Deprecated.Takes a line of text in presentation order and converts it to logical order.- Parameters:
str- String to convertisRtlDominant- RTL (right-to-left) will be the dominant text direction- Returns:
- The converted string
- See Also:
TextNormalize.makeLineLogicalOrder(String, boolean)
-
normalizePres
public java.lang.String normalizePres(java.lang.String str)
Deprecated.Normalize presentation forms of characters to the separate parts.- Parameters:
str- String to normalize- Returns:
- Normalized form
- See Also:
TextNormalize.normalizePres(String)
-
normalizeDiac
public java.lang.String normalizeDiac(java.lang.String str)
Deprecated.Decomposes Diacritic characters to their combining forms.- Parameters:
str- String to be Normalized- Returns:
- A Normalized String
-
-