1 // GENERATED. DO NOT MODIFY2 package speech.types;3 4 import com4j.*;5 6 public enum SpeechGrammarState implements ComEnum {7 SGSEnabled(1),8 SGSDisabled(0),9 SGSExclusive(3),10 ;11 12 private final int value;13 SpeechGrammarState(int value) { this.value=value; }14 public int comEnumValue() { return value; }15 }16