KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > SPDATAKEYLOCATION


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