1 package speech.types; 3 4 import com4j.*; 5 6 public enum DISPID_SpeechPhraseRule implements ComEnum { 7 DISPID_SPRuleName(1), 8 DISPID_SPRuleId(2), 9 DISPID_SPRuleFirstElement(3), 10 DISPID_SPRuleNumberOfElements(4), 11 DISPID_SPRuleParent(5), 12 DISPID_SPRuleChildren(6), 13 DISPID_SPRuleConfidence(7), 14 DISPID_SPRuleEngineConfidence(8), 15 ; 16 17 private final int value; 18 DISPID_SpeechPhraseRule(int value) { this.value=value; } 19 public int comEnumValue() { return value; } 20 } 21 | Popular Tags |