From 66c6771a03487d3e7ec50af000d8df89381cc237 Mon Sep 17 00:00:00 2001 From: sven-oly Date: Tue, 18 Feb 2025 21:29:35 +0000 Subject: [PATCH] ICU-22922 Update ICU4J status See #3398 --- .../java/com/ibm/icu/lang/UCharacter.java | 36 +++++++++---------- .../java/com/ibm/icu/util/MeasureUnit.java | 8 ++--- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java b/icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java index 78536ea7618..2faaa84af42 100644 --- a/icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java +++ b/icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java @@ -4167,12 +4167,12 @@ public final class UCharacter implements ECharacterCategory, ECharacterDirection * See https://www.unicode.org/reports/tr39/#Identifier_Status_and_Type. * * @see UProperty#IDENTIFIER_STATUS - * @draft ICU 75 + * @stable ICU 75 */ public enum IdentifierStatus { - /** @draft ICU 75 */ + /** @stable ICU 75 */ RESTRICTED, - /** @draft ICU 75 */ + /** @stable ICU 75 */ ALLOWED, } @@ -4181,32 +4181,32 @@ public final class UCharacter implements ECharacterCategory, ECharacterDirection * See https://www.unicode.org/reports/tr39/#Identifier_Status_and_Type. * * @see UProperty#IDENTIFIER_TYPE - * @draft ICU 75 + * @stable ICU 75 */ public enum IdentifierType { - /** @draft ICU 75 */ + /** @stable ICU 75 */ NOT_CHARACTER, - /** @draft ICU 75 */ + /** @stable ICU 75 */ DEPRECATED, - /** @draft ICU 75 */ + /** @stable ICU 75 */ DEFAULT_IGNORABLE, - /** @draft ICU 75 */ + /** @stable ICU 75 */ NOT_NFKC, - /** @draft ICU 75 */ + /** @stable ICU 75 */ NOT_XID, - /** @draft ICU 75 */ + /** @stable ICU 75 */ EXCLUSION, - /** @draft ICU 75 */ + /** @stable ICU 75 */ OBSOLETE, - /** @draft ICU 75 */ + /** @stable ICU 75 */ TECHNICAL, - /** @draft ICU 75 */ + /** @stable ICU 75 */ UNCOMMON_USE, - /** @draft ICU 75 */ + /** @stable ICU 75 */ LIMITED_USE, - /** @draft ICU 75 */ + /** @stable ICU 75 */ INCLUSION, - /** @draft ICU 75 */ + /** @stable ICU 75 */ RECOMMENDED, } @@ -4716,7 +4716,7 @@ public final class UCharacter implements ECharacterCategory, ECharacterDirection * @param c code point * @param type Identifier_Type to check * @return true if type is in Identifier_Type(c) - * @draft ICU 75 + * @stable ICU 75 */ public static final boolean hasIdentifierType(int c, IdentifierType type) { return UCharacterProperty.INSTANCE.hasIDType(c, type); @@ -4740,7 +4740,7 @@ public final class UCharacter implements ECharacterCategory, ECharacterDirection * @param c code point * @param types output set * @return number of values in c's Identifier_Type - * @draft ICU 75 + * @stable ICU 75 */ public static final int getIdentifierTypes(int c, EnumSet types) { return UCharacterProperty.INSTANCE.getIDTypes(c, types); diff --git a/icu4j/main/core/src/main/java/com/ibm/icu/util/MeasureUnit.java b/icu4j/main/core/src/main/java/com/ibm/icu/util/MeasureUnit.java index 1f1acfb2d36..16cd2842e01 100644 --- a/icu4j/main/core/src/main/java/com/ibm/icu/util/MeasureUnit.java +++ b/icu4j/main/core/src/main/java/com/ibm/icu/util/MeasureUnit.java @@ -128,14 +128,14 @@ public class MeasureUnit implements Serializable { /** * SI prefix: quetta, 10^30. * - * @draft ICU 75 + * @stable ICU 75 */ QUETTA(30, "quetta", 10), /** * SI prefix: ronna, 10^27. * - * @draft ICU 75 + * @stable ICU 75 */ RONNA(27, "ronna", 10), @@ -289,14 +289,14 @@ public class MeasureUnit implements Serializable { /** * SI prefix: ronto, 10^-27. * - * @draft ICU 75 + * @stable ICU 75 */ RONTO(-27, "ronto", 10), /** * SI prefix: quecto, 10^-30. * - * @draft ICU 75 + * @stable ICU 75 */ QUECTO(-30, "quecto", 10),