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