Home | History | Annotate | Download | only in lang

Lines Matching defs:hasBinaryProperty

113  * - alpha:     isUAlphabetic(c) or hasBinaryProperty(c, UProperty.ALPHABETIC)
114 * - lower: isULowercase(c) or hasBinaryProperty(c, UProperty.LOWERCASE)
115 * - upper: isUUppercase(c) or hasBinaryProperty(c, UProperty.UPPERCASE)
120 * - xdigit: hasBinaryProperty(c, UProperty.POSIX_XDIGIT)
121 * - alnum: hasBinaryProperty(c, UProperty.POSIX_ALNUM)
122 * - space: isUWhiteSpace(c) or hasBinaryProperty(c, UProperty.WHITE_SPACE)
123 * - blank: hasBinaryProperty(c, UProperty.POSIX_BLANK)
125 * - graph: hasBinaryProperty(c, UProperty.POSIX_GRAPH)
126 * - print: hasBinaryProperty(c, UProperty.POSIX_PRINT)}</pre>
4933 public static boolean hasBinaryProperty(int ch, int property)
4935 return UCharacterProperty.INSTANCE.hasBinaryProperty(ch, property);
4940 * <p>Same as UCharacter.hasBinaryProperty(ch, UProperty.ALPHABETIC).
4946 return hasBinaryProperty(ch, UProperty.ALPHABETIC);
4951 * <p>Same as UCharacter.hasBinaryProperty(ch, UProperty.LOWERCASE).
4957 return hasBinaryProperty(ch, UProperty.LOWERCASE);
4962 * <p>Same as UCharacter.hasBinaryProperty(ch, UProperty.UPPERCASE).
4968 return hasBinaryProperty(ch, UProperty.UPPERCASE);
4973 * <p>Same as UCharacter.hasBinaryProperty(ch, UProperty.WHITE_SPACE).
4980 return hasBinaryProperty(ch, UProperty.WHITE_SPACE);
5016 * @see #hasBinaryProperty
5078 * @see #hasBinaryProperty
5108 * @see #hasBinaryProperty