Package gov.nih.nlm.nls.lexAccess.Api

Examples of gov.nih.nlm.nls.lexAccess.Api.LexAccessApiResult


   */
  @Override
  public synchronized List<WordElement> getWords(String baseForm, LexicalCategory category) {
    // get words from DB
    try {
      LexAccessApiResult lexResult = lexdb.GetLexRecordsByBase(baseForm,
          LexAccessApi.B_EXACT);     
      return getWordsFromLexResult(category, lexResult);
    } catch (SQLException ex) {
      System.out.println("Lexical DB error: " + ex.toString());
      // probably should thrown an exception
View Full Code Here


   */
  @Override
  public synchronized List<WordElement> getWordsByID(String id) {
    // get words from DB
    try {
      LexAccessApiResult lexResult = lexdb.GetLexRecords(id);
      return getWordsFromLexResult(LexicalCategory.ANY, lexResult);
    } catch (SQLException ex) {
      System.out.println("Lexical DB error: " + ex.toString());
      // probably should thrown an exception
    }
View Full Code Here

  @Override
  public synchronized List<WordElement> getWordsFromVariant(String variant,
      LexicalCategory category) {
    // get words from DB
    try {
      LexAccessApiResult lexResult = lexdb.GetLexRecords(variant);
      return getWordsFromLexResult(category, lexResult);
    } catch (SQLException ex) {
      System.out.println("Lexical DB error: " + ex.toString());
      // probably should thrown an exception
    }
View Full Code Here

TOP

Related Classes of gov.nih.nlm.nls.lexAccess.Api.LexAccessApiResult

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.