1 package speech.types; 3 4 import com4j.*; 5 6 public enum DISPID_SpeechPhraseAlternate implements ComEnum { 7 DISPID_SPARecoResult(1), 8 DISPID_SPAStartElementInResult(2), 9 DISPID_SPANumberOfElementsInResult(3), 10 DISPID_SPAPhraseInfo(4), 11 DISPID_SPACommit(5), 12 ; 13 14 private final int value; 15 DISPID_SpeechPhraseAlternate(int value) { this.value=value; } 16 public int comEnumValue() { return value; } 17 } 18 | Popular Tags |