Package net.didion.jwnl.data
Class DictionaryElementType
- java.lang.Object
-
- net.didion.jwnl.data.DictionaryElementType
-
public class DictionaryElementType extends Object
WordNet contains different file types, index, synset data, and exception files. This class defines what the current dictionary is.- Author:
- brett
-
-
Field Summary
Fields Modifier and Type Field Description static DictionaryElementTypeEXCEPTIONProperty that defines an exception file.static DictionaryElementTypeINDEX_WORDProperty to define an index file.static DictionaryElementTypeSYNSETProperty to define a synset file.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description static ListgetAllDictionaryElementTypes()Gets all the dictionary types.StringgetName()Gets the name of this DictionaryElementType.inthashCode()StringtoString()
-
-
-
Field Detail
-
INDEX_WORD
public static final DictionaryElementType INDEX_WORD
Property to define an index file.
-
SYNSET
public static final DictionaryElementType SYNSET
Property to define a synset file.
-
EXCEPTION
public static final DictionaryElementType EXCEPTION
Property that defines an exception file.
-
-