KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > SpeechWordType


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