Uses of Class
standup.lexicon.WordSequence

Packages that use WordSequence
standup.lexicon This package provides classes and interfaces that handle access and manipulation of the STANDUP lexicon. 
standup.sql Provides classes and interfaces that handle access to the STANDUP lexical database, currently implemented as a relational database using PostgreSQL server. 
 

Uses of WordSequence in standup.lexicon
 

Fields in standup.lexicon declared as WordSequence
private  WordSequence WordForm.spelling
           
 

Fields in standup.lexicon with type parameters of type WordSequence
private static Hashtable<WordSequence,Set<String>> Dictionary.indexSpellingToWordFormIDs
           
 

Methods in standup.lexicon that return WordSequence
 WordSequence WordStruct.getSpelling()
          Returns the linearized surface form of this WordStruct as a WordSequence.
 WordSequence WordString.getSpelling()
           
 WordSequence WordForm.getSpelling()
           
abstract  WordSequence StructElement.getSpelling()
          Returns the linearized surface form of this (possibly hierarchical) StructElement as a WordSequence.
 WordSequence Lexeme.getSpelling()
          Returns the spelling of this Lexeme.
static WordSequence WordSequence.readXML(Element e)
          Returns an instance of a WordSequence whose contents are specified within the given XML Element.
 

Methods in standup.lexicon with parameters of type WordSequence
 void WordSequence.add(WordSequence _w)
          Append a WordSequence to the end of this WordSequence.
 LexemeSet LexemeSet.getSpelledLexemes(WordSequence ws)
          Returns a LexemeSet that is a subset of this LexemeSet containing Lexemes whose spelling is the same as the given WordSequence.
static LexemeSet Dictionary.getSpelledLexemes(WordSequence ws)
          Returns all Lexemes with the given spelling.
static Set<WordForm> Dictionary.getSpelledWordForms(WordSequence ws)
          Returns all WordForms with the given spelling.
 

Constructors in standup.lexicon with parameters of type WordSequence
WordForm(String _id, WordSequence _sp)
          Constructor that provides all necessary details.
 

Uses of WordSequence in standup.sql
 

Methods in standup.sql with parameters of type WordSequence
static LexemeSet SQLUtils.getSpelledCompiledLexemes(WordSequence w)
          Returns all Lexemes with the given spelling.
static Set<WordForm> SQLUtils.getSpelledCompiledWordForms(WordSequence w)
           
static Set<standup.authoring.dbbuild.ProtoLexeme> SQLUtils.getSpelledProtoLexemes(WordSequence w)
           
static Set<standup.authoring.dbbuild.ProtoWordForm> SQLUtils.getSpelledProtoWordForms(WordSequence w)