KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > SpeechRuleState


1 // GENERATED. DO NOT MODIFY
2
package speech.types;
3
4 import com4j.*;
5
6 public enum SpeechRuleState implements ComEnum {
7     SGDSInactive(0),
8     SGDSActive(1),
9     SGDSActiveWithAutoPause(3),
10     ;
11
12     private final int value;
13     SpeechRuleState(int value) { this.value=value; }
14     public int comEnumValue() { return value; }
15 }
16
Popular Tags