List of usage examples for java.lang Character getType
public static int getType(int codePoint)
From source file:Main.java
public static void main(String[] args) { for (char ch = Character.MIN_VALUE; ch < Character.MAX_VALUE; ch++) { if (Character.CURRENCY_SYMBOL == Character.getType(ch)) { String s = String.format("\\u%04x", (int) ch); System.out.println(s); }//from ww w . j a v a 2 s . c o m } }
From source file:Main.java
public static void main(String[] args) { for (char ch = Character.MIN_VALUE; ch < Character.MAX_VALUE; ch++) { if (Character.MAX_CODE_POINT == Character.getType(ch)) { String s = String.format("\\u%04x", (int) ch); System.out.println(s); }/*from www . ja va 2 s . co m*/ } }
From source file:Main.java
public static void main(String[] args) { for (char ch = Character.MIN_VALUE; ch < Character.MAX_VALUE; ch++) { if (Character.DASH_PUNCTUATION == Character.getType(ch)) { String s = String.format("\\u%04x", (int) ch); System.out.println(s); }/* w w w .j a v a2 s.co m*/ } }
From source file:Main.java
public static void main(String[] args) { for (char ch = Character.MIN_VALUE; ch < Character.MAX_VALUE; ch++) { if (Character.LINE_SEPARATOR == Character.getType(ch)) { String s = String.format("\\u%04x", (int) ch); System.out.println(s); }// w w w . j a v a2 s. c o m } }
From source file:Main.java
public static void main(String[] args) { for (char ch = Character.MIN_VALUE; ch < Character.MAX_VALUE; ch++) { if (Character.SPACE_SEPARATOR == Character.getType(ch)) { String s = String.format("\\u%04x", (int) ch); System.out.println(s); }/*from w w w .jav a2 s . c om*/ } }
From source file:Main.java
public static void main(String[] args) { for (char ch = Character.MIN_VALUE; ch < Character.MAX_VALUE; ch++) { if (Character.MODIFIER_SYMBOL == Character.getType(ch)) { String s = String.format("\\u%04x", (int) ch); System.out.println(s); }/*w ww . jav a 2s . c o m*/ } }
From source file:Main.java
public static void main(String[] args) { for (char ch = Character.MIN_VALUE; ch < Character.MAX_VALUE; ch++) { if (Character.NON_SPACING_MARK == Character.getType(ch)) { String s = String.format("\\u%04x", (int) ch); System.out.println(s); }//from w w w . j a v a 2 s . c o m } }
From source file:Main.java
public static void main(String[] args) { for (char ch = Character.MIN_VALUE; ch < Character.MAX_VALUE; ch++) { if (Character.LOWERCASE_LETTER == Character.getType(ch)) { String s = String.format("\\u%04x", (int) ch); System.out.println(s); }/*from w w w .ja v a2 s . c o m*/ } }
From source file:Main.java
public static void main(String[] args) { for (char ch = Character.MIN_VALUE; ch < Character.MAX_VALUE; ch++) { if (Character.OTHER_PUNCTUATION == Character.getType(ch)) { String s = String.format("\\u%04x", (int) ch); System.out.println(s); }//from www .j a v a 2s. com } }
From source file:Main.java
public static void main(String[] args) { for (char ch = Character.MIN_VALUE; ch < Character.MAX_VALUE; ch++) { if (Character.START_PUNCTUATION == Character.getType(ch)) { String s = String.format("\\u%04x", (int) ch); System.out.println(s); }// www .j a v a2 s . com } }