Java Character DIRECTIONALITY _LEFT _TO _RIGHT _OVERRIDE
Syntax
Character.DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE has the following syntax.
public static final byte DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE
Example
In the following code shows how to use Character.DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE field.
// ww w . java 2 s .com
public class Main{
public static void main(String[] args) {
for(char ch = Character.MIN_VALUE;ch<Character.MAX_VALUE;ch++){
if(Character.DIRECTIONALITY_LEFT_TO_RIGHT_OVERRIDE == Character.getDirectionality(ch)){
String s = String.format ("\\u%04x", (int)ch);
System.out.println(s);
}
}
}
}
The code above generates the following result.