1 package speech.types; 3 4 import com4j.*; 5 6 public enum SpeechVoiceEvents implements ComEnum { 7 SVEStartInputStream(2), 8 SVEEndInputStream(4), 9 SVEVoiceChange(8), 10 SVEBookmark(16), 11 SVEWordBoundary(32), 12 SVEPhoneme(64), 13 SVESentenceBoundary(128), 14 SVEViseme(256), 15 SVEAudioLevel(512), 16 SVEPrivate(32768), 17 SVEAllEvents(33790), 18 ; 19 20 private final int value; 21 SpeechVoiceEvents(int value) { this.value=value; } 22 public int comEnumValue() { return value; } 23 } 24 | Popular Tags |