Uses of Class
com.baseprogramming.lang.WordCategory

Packages that use WordCategory
com.baseprogramming.dev.gen   
com.baseprogramming.dev.gen.ui   
com.baseprogramming.lang   
 

Uses of WordCategory in com.baseprogramming.dev.gen
 

Methods in com.baseprogramming.dev.gen with parameters of type WordCategory
static Term DataFactory.getTerm(WordCategory pos)
          Returns a Term for the given category
static java.util.List<USCensusNameRecord> DataFactory.readUSCensusNameFile(WordCategory pos, java.lang.String name)
           
 

Uses of WordCategory in com.baseprogramming.dev.gen.ui
 

Methods in com.baseprogramming.dev.gen.ui that return WordCategory
 WordCategory WordCategoryMenuItem.getPos()
           
 

Methods in com.baseprogramming.dev.gen.ui with parameters of type WordCategory
 void WordCategoryMenuItem.setPos(WordCategory Pos)
           
 

Constructors in com.baseprogramming.dev.gen.ui with parameters of type WordCategory
WordCategoryMenuItem(java.lang.String text, WordCategory Pos)
           
WordCategoryMenuItem(WordCategory Pos)
           
 

Uses of WordCategory in com.baseprogramming.lang
 

Methods in com.baseprogramming.lang that return WordCategory
static WordCategory WordCategory.forId(java.lang.String id)
           
 WordCategory Term.getWordCategory()
           
static WordCategory WordCategory.valueOf(java.lang.String name)
          Returns the enum constant of this type with the specified name.
static WordCategory[] WordCategory.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.baseprogramming.lang that return types with arguments of type WordCategory
 java.util.List<WordCategory> Term.getWordCategories()
           
 

Methods in com.baseprogramming.lang with parameters of type WordCategory
 void Term.addWordCategory(WordCategory pos)
           
 void Term.setWordCategory(WordCategory pos)
           
 

Constructors in com.baseprogramming.lang with parameters of type WordCategory
Term(java.lang.String word, WordCategory pos)