KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > SpeechDiscardType


1 // GENERATED. DO NOT MODIFY
2
package speech.types;
3
4 import com4j.*;
5
6 public enum SpeechDiscardType implements ComEnum {
7     SDTProperty(1),
8     SDTReplacement(2),
9     SDTRule(4),
10     SDTDisplayText(8),
11     SDTLexicalForm(16),
12     SDTPronunciation(32),
13     SDTAudio(64),
14     SDTAlternates(128),
15     SDTAll(255),
16     ;
17
18     private final int value;
19     SpeechDiscardType(int value) { this.value=value; }
20     public int comEnumValue() { return value; }
21 }
22
Popular Tags