KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > speech > types > SpeechPartOfSpeech


1 // GENERATED. DO NOT MODIFY
2
package speech.types;
3
4 import com4j.*;
5
6 public enum SpeechPartOfSpeech implements ComEnum {
7     SPSNotOverriden(-1),
8     SPSUnknown(0),
9     SPSNoun(4096),
10     SPSVerb(8192),
11     SPSModifier(12288),
12     SPSFunction(16384),
13     SPSInterjection(20480),
14     ;
15
16     private final int value;
17     SpeechPartOfSpeech(int value) { this.value=value; }
18     public int comEnumValue() { return value; }
19 }
20
Popular Tags