phonetic_character_converter.IPACharacterConverter Maven / Gradle / Ivy
                 Go to download
                
        
                    Show more of this group  Show more artifacts with this name
Show all versions of phonetictranscriber Show documentation
                Show all versions of phonetictranscriber Show documentation
Generation of phonetic pronounciation transcription for Latvian words
                
             The newest version!
        
        package phonetic_character_converter;
import java.util.ArrayList;
public class IPACharacterConverter implements PhoneticCharacterConverter {
	@Override
	public String toIPAchar(String character) {
		return character;
	}
	@Override
	public String formIPAchar(String character) {
		return character;
	}
	@Override
	public String[] tokenize(String word) {
		
		ArrayList tokens = new ArrayList();
		int state=0;
		String token="";
		char c;
		for(int i=0;i      © 2015 - 2025 Weber Informatics LLC | Privacy Policy