Uses of Class
net.sf.extjwnl.data.list.PointerTargetTree

Packages that use PointerTargetTree
net.sf.extjwnl.data Classes for extracting and containing data from the dictionary. 
 

Uses of PointerTargetTree in net.sf.extjwnl.data
 

Methods in net.sf.extjwnl.data that return PointerTargetTree
static PointerTargetTree PointerUtils.getAlsoSeeTree(Synset synset, int depth)
          Finds all See Also relations to depth depth.
static PointerTargetTree PointerUtils.getCauseTree(Synset synset)
          Finds all cause links for synset.
static PointerTargetTree PointerUtils.getCauseTree(Synset synset, int depth)
          Finds all cause links for synset to depth depth.
static PointerTargetTree PointerUtils.getEntailmentTree(Synset synset)
          Finds all entailments for synset.
static PointerTargetTree PointerUtils.getEntailmentTree(Synset synset, int depth)
          Finds all entailments for synset to depth depth.
static PointerTargetTree PointerUtils.getExtendedAntonyms(Synset synset)
          Returns the words that mean the opposite of synset and the immediate synonyms of those words.
static PointerTargetTree PointerUtils.getExtendedAntonyms(Synset synset, int depth)
          Finds all antonyms of synset, and all synonyms of those antonyms to depth depth.
static PointerTargetTree PointerUtils.getHypernymTree(Synset synset)
          Returns all of the ancestors of synset.
static PointerTargetTree PointerUtils.getHypernymTree(Synset synset, int depth)
          Returns all of the ancestors of synset to depth depth.
static PointerTargetTree PointerUtils.getHyponymTree(Synset synset)
          Returns all of the children of synset.
static PointerTargetTree PointerUtils.getHyponymTree(Synset synset, int depth)
          Returns all of the children of synset to depth depth.
static PointerTargetTree PointerUtils.getIndirectAntonyms(Synset synset)
          Returns the immediate antonyms of all words that mean the same as synset.
static PointerTargetTree PointerUtils.getIndirectAntonyms(Synset synset, int depth)
          Returns the antonyms of all words that mean the same as synset to depth depth.
static PointerTargetTree PointerUtils.getInheritedHolonyms(Synset synset)
          Returns holonyms of synset and of all its ancestors.
static PointerTargetTree PointerUtils.getInheritedHolonyms(Synset synset, int pointerDepth, int ancestorDepth)
          Returns holonyms of each synset, to depth pointerDepth, starting at synset and going for all of synset's ancestors to depth ancestorDepth.
static PointerTargetTree PointerUtils.getInheritedMemberHolonyms(Synset synset)
          Returns member holonyms of synset and of all its ancestors.
static PointerTargetTree PointerUtils.getInheritedMemberHolonyms(Synset synset, int pointerDepth, int ancestorDepth)
          Returns member holonyms of each synset, to depth pointerDepth, starting at synset and going for all of synset's ancestors to depth ancestorDepth.
static PointerTargetTree PointerUtils.getInheritedMemberMeronyms(Synset synset)
          Returns member meronyms of synset and of its ancestors.
static PointerTargetTree PointerUtils.getInheritedMemberMeronyms(Synset synset, int pointerDepth, int ancestorDepth)
          Returns member meronyms of each synset, to depth pointerDepth, starting at synset and going for all of synset's ancestors to depth ancestorDepth.
static PointerTargetTree PointerUtils.getInheritedMeronyms(Synset synset)
          Returns meronyms of synset and of all its ancestors.
static PointerTargetTree PointerUtils.getInheritedMeronyms(Synset synset, int pointerDepth, int ancestorDepth)
          Returns meronyms of each synset, to depth pointerDepth starting at synset and going for all of synset's ancestors to depth ancestorDepth.
static PointerTargetTree PointerUtils.getInheritedPartHolonyms(Synset synset)
          Returns part holonyms of synset and of all its ancestors.
static PointerTargetTree PointerUtils.getInheritedPartHolonyms(Synset synset, int pointerDepth, int ancestorDepth)
          Returns part holonyms of each synset, to depth pointerDepth, starting at synset and going for all of synset's ancestors to depth ancestorDepth.
static PointerTargetTree PointerUtils.getInheritedPartMeronyms(Synset synset)
          Returns part meronyms of synset and of all its ancestors.
static PointerTargetTree PointerUtils.getInheritedPartMeronyms(Synset synset, int pointerDepth, int ancestorDepth)
          Returns part meronyms of each synset, to depth pointerDepth, starting at synset and going for all of synset's ancestors to depth ancestorDepth.
static PointerTargetTree PointerUtils.getInheritedSubstanceHolonyms(Synset synset)
          Returns substance holonyms of synset and of all its ancestors.
static PointerTargetTree PointerUtils.getInheritedSubstanceHolonyms(Synset synset, int pointerDepth, int ancestorDepth)
          Returns substance holonyms of each synset, to depth pointerDepth, starting at synset and going for all of synset's ancestors to depth ancestorDepth.
static PointerTargetTree PointerUtils.getInheritedSubstanceMeronyms(Synset synset)
          Returns substance meronyms of synset and of its ancestors.
static PointerTargetTree PointerUtils.getInheritedSubstanceMeronyms(Synset synset, int pointerDepth, int ancestorDepth)
          Returns substance meronyms of each synset, to depth pointerDepth, starting at synset and going for all of synset's ancestors to depth ancestorDepth.
static PointerTargetTree PointerUtils.getSynonymTree(Synset synset, int depth)
          Returns all the synonyms of synset to depth depth.
static PointerTargetTree PointerUtils.makeInheritedTree(PointerTargetTree tree, PointerType[] searchTypes, PointerType labelType, int pointerDepth, int ancestorDepth, boolean allowRedundancies)
          Turn an existing tree into an inheritance tree.
static PointerTargetTree PointerUtils.makeInheritedTree(Synset synset, PointerType searchType)
          Creates a hypernym tree starting at synset, and add to each node a nested list pointer targets of type searchType, starting at the node's pointer target.
static PointerTargetTree PointerUtils.makeInheritedTree(Synset synset, PointerType[] searchTypes)
          Creates a hypernym tree starting at synset, and add to each node a nested list pointer targets of the types specified in searchTypes, starting at the node's pointer target.
static PointerTargetTree PointerUtils.makeInheritedTree(Synset synset, PointerType[] searchTypes, PointerType labelType, int pointerDepth, int ancestorDepth)
          Creates a hypernym tree starting at synset, and add to each node a nested list pointer targets of the types specified in searchTypes, starting at the node's pointer target.
static PointerTargetTree PointerUtils.makeInheritedTree(Synset synset, PointerType[] searchTypes, PointerType labelType, int pointerDepth, int ancestorDepth, boolean allowRedundancies)
          Creates a hypernym tree starting at synset, and add to each node a nested list pointer targets of the types specified in searchTypes, starting at the node's pointer target.
static PointerTargetTree PointerUtils.makeInheritedTree(Synset synset, PointerType searchType, PointerType labelType, int pointerDepth, int ancestorDepth)
          Creates a hypernym tree starting at synset, and add to each node a nested list pointer targets of type searchType, starting at the node's pointer target.
static PointerTargetTree PointerUtils.makeInheritedTree(Synset synset, PointerType searchType, PointerType labelType, int pointerDepth, int ancestorDepth, boolean allowRedundancies)
          Creates a hypernym tree starting at synset, and add to each node a nested list pointer targets of type searchType, starting at the node's pointer target.
 

Methods in net.sf.extjwnl.data with parameters of type PointerTargetTree
static PointerTargetTree PointerUtils.makeInheritedTree(PointerTargetTree tree, PointerType[] searchTypes, PointerType labelType, int pointerDepth, int ancestorDepth, boolean allowRedundancies)
          Turn an existing tree into an inheritance tree.
 



Copyright © 2011. All Rights Reserved.