mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-27 06:45:07 +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) 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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue