KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > SpeechTokenContext


1 // GENERATED. DO NOT MODIFY
2
package speech.types;
3
4 import com4j.*;
5
6 public enum SpeechTokenContext implements ComEnum {
7     STCInprocServer(1),
8     STCInprocHandler(2),
9     STCLocalServer(4),
10     STCRemoteServer(16),
11     STCAll(23),
12     ;
13
14     private final int value;
15     SpeechTokenContext(int value) { this.value=value; }
16     public int comEnumValue() { return value; }
17 }
18
Popular Tags