mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 23:04:50 +02:00
8303018: Unicode Emoji Properties
Reviewed-by: prr, erikj, rriggs
This commit is contained in:
parent
bc0ed730f2
commit
f593a6b52e
19 changed files with 643 additions and 278 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2006, 2020, Oracle and/or its affiliates. All rights reserved.
|
||||
* Copyright (c) 2006, 2023, Oracle and/or its affiliates. All rights reserved.
|
||||
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
|
||||
*
|
||||
* This code is free software; you can redistribute it and/or modify it
|
||||
|
@ -38,6 +38,12 @@ abstract class CharacterData {
|
|||
abstract boolean isUnicodeIdentifierStart(int ch);
|
||||
abstract boolean isUnicodeIdentifierPart(int ch);
|
||||
abstract boolean isIdentifierIgnorable(int ch);
|
||||
abstract boolean isEmoji(int ch);
|
||||
abstract boolean isEmojiPresentation(int ch);
|
||||
abstract boolean isEmojiModifier(int ch);
|
||||
abstract boolean isEmojiModifierBase(int ch);
|
||||
abstract boolean isEmojiComponent(int ch);
|
||||
abstract boolean isExtendedPictographic(int ch);
|
||||
abstract int toLowerCase(int ch);
|
||||
abstract int toUpperCase(int ch);
|
||||
abstract int toTitleCase(int ch);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue