Skip to content

Commit

Permalink
ICU-227271 Add Java enum for InCB property values
Browse files Browse the repository at this point in the history
  • Loading branch information
echeran committed Jul 23, 2024
1 parent e8e4811 commit be896a2
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions icu4j/main/core/src/main/java/com/ibm/icu/lang/UCharacter.java
Original file line number Diff line number Diff line change
Expand Up @@ -4124,6 +4124,24 @@ public static interface IndicSyllabicCategory {
public static final int REORDERING_KILLER = 36;
}

/**
* Indic Conjunct Break constants.
* See https://unicode.org/reports/tr44/#Indic_Conjunct_Break
*
* @see UProperty#INDIC_CONJUNCT_BREAK
* @draft ICU 76
*/
public enum IndicConjunctBreak {
/** @draft ICU 76 */
NONE,
/** @draft ICU 76 */
CONSONANT,
/** @draft ICU 76 */
EXTEND,
/** @draft ICU 76 */
LINKER,
}

/**
* Vertical Orientation constants.
*
Expand Down

0 comments on commit be896a2

Please sign in to comment.