Uses of Class
com.ibm.icu.text.BidiTransform.Order
-
Packages that use BidiTransform.Order Package Description com.ibm.icu.text -
-
Uses of BidiTransform.Order in com.ibm.icu.text
Methods in com.ibm.icu.text that return BidiTransform.Order Modifier and Type Method Description static BidiTransform.Order
BidiTransform.Order. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static BidiTransform.Order[]
BidiTransform.Order. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.ibm.icu.text with parameters of type BidiTransform.Order Modifier and Type Method Description private BidiTransform.ReorderingScheme
BidiTransform. findMatchingScheme(byte inLevel, BidiTransform.Order inOrder, byte outLevel, BidiTransform.Order outOrder)
Finds a valid
matching the caller-defined scheme.BidiTransform.ReorderingScheme
private static boolean
BidiTransform. IsLogical(BidiTransform.Order order)
Is order logical? convenience methodprivate static boolean
BidiTransform. IsVisual(BidiTransform.Order order)
Is order visual? convenience method(package private) abstract boolean
BidiTransform.ReorderingScheme. matches(byte inLevel, BidiTransform.Order inOrder, byte outLevel, BidiTransform.Order outOrder)
Indicates whether this scheme matches another one in terms of equality of base direction and ordering scheme.java.lang.String
BidiTransform. transform(java.lang.CharSequence text, byte inParaLevel, BidiTransform.Order inOrder, byte outParaLevel, BidiTransform.Order outOrder, BidiTransform.Mirroring doMirroring, int shapingOptions)
Performs transformation of text from the bidi layout defined by the input ordering scheme to the bidi layout defined by the output ordering scheme, and applies character mirroring and Arabic shaping operations.
-