We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
getType
1 parent d419ebe commit 5533438Copy full SHA for 5533438
Base/src/main/scala/CodePoint.scala
@@ -18,6 +18,7 @@ final class CodePoint private (val intValue:Int) {
18
19
def charCount : Int = Character.charCount(intValue)
20
def name : String = Character.getName(intValue)
21
+ def category : Int = Character.getType(intValue)
22
def isAlphabetic : Boolean = Character.isAlphabetic(intValue)
23
def isBmp : Boolean = Character.isBmpCodePoint(intValue)
24
def isDefined : Boolean = Character.isDefined(intValue)
0 commit comments