8303018: Unicode Emoji Properties

Reviewed-by: prr, erikj, rriggs
This commit is contained in:
Naoto Sato 2023-03-20 20:20:19 +00:00
parent bc0ed730f2
commit f593a6b52e
19 changed files with 643 additions and 278 deletions

View file

@ -1,5 +1,5 @@
/*
* Copyright (c) 2003, 2018, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2003, 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
@ -60,6 +60,30 @@ class CharacterDataPrivateUse extends CharacterData {
return false;
}
boolean isEmoji(int ch) {
return false;
}
boolean isEmojiPresentation(int ch) {
return false;
}
boolean isEmojiModifier(int ch) {
return false;
}
boolean isEmojiModifierBase(int ch) {
return false;
}
boolean isEmojiComponent(int ch) {
return false;
}
boolean isExtendedPictographic(int ch) {
return false;
}
int toLowerCase(int ch) {
return ch;
}