Normalize emphasized words
Phonetic without stemming
TextNormalization tn = new TextNormalization();
String normalized = tn.normalize("heeeellloooo", false));
// ---> heeeellloooo = helloPhonetic with stemming
String normalized = tn.normalize("occcccccuring", true);
// ---> occcccccuring = occurCombination without stemming
String [] words = TextNormalization.normalizeCombination("heeeellloooo", true);
// ---> hellloooo = helo, heloo, helloo, helloCombination with stemming
String [] words = TextNormalization.normalizeCombination("occcccccuring", true);
// ---> occcurrrring = ocur, occur, ocurr, occurrSee the doc for the full list of usages.