// Copyright (c) Six Labors.
// Licensed under the Six Labors Split License.
namespace SixLabors.Fonts.Unicode {
///
/// Unicode Indic_Syllabic_Category property values.
///
///
///
/// These values describe subtypes relevant to Indic syllable, or aksara,
/// construction and segmentation.
///
public enum IndicSyllabicCategory
{
///
/// Avagraha.
///
Avagraha = 0,
///
/// Bindu.
///
Bindu = 1,
///
/// Brahmi_Joining_Number.
///
BrahmiJoiningNumber = 2,
///
/// Cantillation_Mark.
///
CantillationMark = 3,
///
/// Consonant
///
Consonant = 4,
///
/// Consonant_Dead
///
ConsonantDead = 5,
///
/// Consonant_Final
///
ConsonantFinal = 6,
///
/// Consonant_Head_Letter
///
ConsonantHeadLetter = 7,
///
/// Consonant_Initial_Postfixed
///
ConsonantInitialPostfixed = 8,
///
/// Consonant_Killer
///
ConsonantKiller = 9,
///
/// Consonant_Medial
///
ConsonantMedial = 10,
///
/// Consonant_Placeholder
///
ConsonantPlaceholder = 11,
///
/// Consonant_Preceding_Repha
///
ConsonantPrecedingRepha = 12,
///
/// Consonant_Prefixed
///
ConsonantPrefixed = 13,
///
/// Consonant_Subjoined
///
ConsonantSubjoined = 14,
///
/// Consonant_Succeeding_Repha
///
ConsonantSucceedingRepha = 15,
///
/// Consonant_With_Stacker
///
ConsonantWithStacker = 16,
///
/// Gemination_Mark
///
GeminationMark = 17,
///
/// Invisible_Stacker
///
InvisibleStacker = 18,
///
/// Joiner
///
Joiner = 19,
///
/// Modifying_Letter
///
ModifyingLetter = 20,
///
/// Non_Joiner
///
NonJoiner = 21,
///
/// Nukta
///
Nukta = 22,
///
/// Number
///
Number = 23,
///
/// Number_Joiner
///
NumberJoiner = 24,
///
/// Pure_Killer
///
PureKiller = 26,
///
/// Register_Shifter
///
RegisterShifter = 27,
///
/// Reordering_Killer
///
ReorderingKiller = 28,
///
/// Syllable_Modifier
///
SyllableModifier = 29,
///
/// Tone_Letter
///
ToneLetter = 30,
///
/// Tone_Mark
///
ToneMark = 31,
///
/// Virama
///
Virama = 32,
///
/// Visarga
///
Visarga = 33,
///
/// Vowel
///
Vowel = 34,
///
/// Vowel_Dependent
///
VowelDependent = 35,
///
/// Vowel_Independent
///
VowelIndependent = 36,
///
/// Other.
///
///
/// This is the Unicode fallback for code points without an explicit
/// Indic_Syllabic_Category.
///
Other = 0xFF
}
}