Uses of Class
net.didion.jwnl.data.list.PointerTargetNodeList

Packages that use PointerTargetNodeList
net.didion.jwnl.data Classes for extracting and containing data from the dictionary. 
net.didion.jwnl.data.list Lists and associated classes that hold the results of relationship operations. 
net.didion.jwnl.data.relationship Tools for finding pointer relationships between words. 
 

Uses of PointerTargetNodeList in net.didion.jwnl.data
 

Methods in net.didion.jwnl.data that return PointerTargetNodeList
 PointerTargetNodeList PointerUtils.getAlsoSees(Synset synset)
          Find what words are related to synset
 PointerTargetNodeList PointerUtils.getAntonyms(Synset synset)
          Get the words that mean the opposite of synset
 PointerTargetNodeList PointerUtils.getAttributes(Synset synset)
          Get the attributes of synset
 PointerTargetNodeList PointerUtils.getCauses(Synset synset)
          Find direct cause links of synset
 PointerTargetNodeList PointerUtils.getCoordinateTerms(Synset synset)
          Get synset's siblings (the hyponyms of its hypernyms)
 PointerTargetNodeList PointerUtils.getDerived(Synset synset)
          Find derrived links of synset
 PointerTargetNodeList PointerUtils.getDirectHypernyms(Synset synset)
          Get the immediate parents of synset
 PointerTargetNodeList PointerUtils.getDirectHyponyms(Synset synset)
          Get the immediate children of synset
 PointerTargetNodeList PointerUtils.getEntailedBy(Synset synset)
          Find direct entailed bys of synset
 PointerTargetNodeList PointerUtils.getEntailments(Synset synset)
          Find direct entailments of synset
 PointerTargetNodeList PointerUtils.getHolonyms(Synset synset)
          Get holonyms of synset
 PointerTargetNodeList PointerUtils.getMemberHolonyms(Synset synset)
          Get member holonyms of synset
 PointerTargetNodeList PointerUtils.getMemberMeronyms(Synset synset)
          Get member meronyms of synset
 PointerTargetNodeList PointerUtils.getMeronyms(Synset synset)
          Get meronyms of synset.
 PointerTargetNodeList PointerUtils.getPartHolonyms(Synset synset)
          Get part holonyms of synset
 PointerTargetNodeList PointerUtils.getParticipleOf(Synset synset)
          Find participle of links of synset
 PointerTargetNodeList PointerUtils.getPartMeronyms(Synset synset)
          Get part meronyms of synset
 PointerTargetNodeList PointerUtils.getSubstanceHolonyms(Synset synset)
          Get substance holonyms of synset
 PointerTargetNodeList PointerUtils.getSubstanceMeronyms(Synset synset)
          Get substance meronyms of synset
 PointerTargetNodeList PointerUtils.getSynonyms(Synset synset)
          Get the synonyms for synset.
 PointerTargetNodeList PointerUtils.getVerbGroup(Synset synset)
          Get the group that this verb belongs to.
 

Methods in net.didion.jwnl.data with parameters of type PointerTargetNodeList
 PointerTargetTreeNodeList PointerUtils.makePointerTargetTreeList(PointerTargetNodeList list, PointerType[] searchTypes, PointerType labelType, int depth, boolean allowRedundancies)
          Make a nested list of pointer targets to depth depth, starting at each synset in list.
 PointerTargetTreeNodeList PointerUtils.makePointerTargetTreeList(PointerTargetNodeList list, PointerType searchType, PointerType labelType, int depth, boolean allowRedundancies)
          Make a nested list of pointer targets to depth depth, starting at each synset in list.
 

Uses of PointerTargetNodeList in net.didion.jwnl.data.list
 

Subclasses of PointerTargetNodeList in net.didion.jwnl.data.list
 class PointerTargetTreeNodeList
          A list of PointerTargetTreeNodes.
 

Methods in net.didion.jwnl.data.list that return PointerTargetNodeList
 PointerTargetNodeList[] PointerTargetTree.reverse()
          Reverse this tree.
 PointerTargetNodeList PointerTargetNodeList.reverse()
          Reverse the contents of this list.
 

Methods in net.didion.jwnl.data.list with parameters of type PointerTargetNodeList
 java.util.List PointerTargetTreeNode.toList(PointerTargetNodeList list)
          Convert this node into a list of PointerTargetList's, each representing a unique brance through the tree
 

Uses of PointerTargetNodeList in net.didion.jwnl.data.relationship
 

Methods in net.didion.jwnl.data.relationship that return PointerTargetNodeList
 PointerTargetNodeList Relationship.getNodeList()
          Get the list that contains the nodes of this relationship.
 

Constructors in net.didion.jwnl.data.relationship with parameters of type PointerTargetNodeList
AsymmetricRelationship(PointerType type, PointerTargetNodeList nodes, int commonParentIndex, Synset sourceSynset, Synset targetSynset)
           
SymmetricRelationship(PointerType type, PointerTargetNodeList nodes, Synset sourceSynset, Synset targetSynset)