KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > SpeechDataKeyLocation


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