package com.tyndalehouse.step.core.utils.language.hebrew; /** * Distinguishes between consonant and vowels * * @author chrisburrell * */ public enum HebrewLetterType { /** hebrew consonant */ CONSONANT, /** hebrew vowel */ VOWEL, /** An accent */ ACCENT, }