lv.gotika.engine
Class GothicAnalyzer.DictView

java.lang.Object
  extended by lv.gotika.engine.GothicAnalyzer.DictView
Enclosing class:
GothicAnalyzer

public static class GothicAnalyzer.DictView
extends Object

A set of flags that indicate different views of the in-memory dictionary. Used for printing purposes.


Field Summary
static String LEMMAS
          Print out the exact list of words.
static String SYNONYMS
          Print out synonym sets.
static String SOUNDEX
          Print out the list of soundex patterns.
 
Constructor Summary
GothicAnalyzer.DictView()
           
 
Method Summary
static boolean isValidDictView(String s)
          Checks whether the given string is a valid DictView flag.
 
Methods inherited from class java.lang.Object
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

LEMMAS

public static final String LEMMAS
Print out the exact list of words.

See Also:
Constant Field Values

SOUNDEX

public static final String SOUNDEX
Print out the list of soundex patterns.

See Also:
Constant Field Values

SYNONYMS

public static final String SYNONYMS
Print out synonym sets.

See Also:
Constant Field Values
Constructor Detail

GothicAnalyzer.DictView

public GothicAnalyzer.DictView()
Method Detail

isValidDictView

public static boolean isValidDictView(String s)
Checks whether the given string is a valid DictView flag.

Parameters:
s - a string.
Returns:
true if it is a valid flag; false otherwise.