Uses of Class
net.didion.jwnl.data.PointerTarget
-
Packages that use PointerTarget Package Description 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.net.didion.jwnl.princeton.data Implementations ofDictionaryElementFactory
for Princeton's release of WordNet. -
-
Uses of PointerTarget in net.didion.jwnl.data
Subclasses of PointerTarget in net.didion.jwnl.data Modifier and Type Class Description class
Adjective
AnAdjective
is aWord
that can have an adjective position.class
Synset
ASynset
, or synonym set, represents a line of a WordNet pos.data
file.class
SynsetProxy
Proxy for aSynset
.class
Verb
AVerb
is a subclass ofWord
that can have 1 or moreVerbFrame
s (use cases of the verb).class
Word
AWord
represents the lexical information related to a specific sense of anIndexWord
.Fields in net.didion.jwnl.data declared as PointerTarget Modifier and Type Field Description private PointerTarget[]
PointerTarget. _pointerTargets
private PointerTarget
Pointer. _source
The source of this poiner.private PointerTarget
Pointer. _target
Cache for the target after it has been resolved.Methods in net.didion.jwnl.data that return PointerTarget Modifier and Type Method Description private PointerTarget[]
PointerTarget. collectTargets(Pointer[] pointers)
Get an array of all the targets ofpointers
.PointerTarget
Pointer. getSource()
Get the source of this pointer.PointerTarget
Pointer. getTarget()
Get the actual target of this pointer.PointerTarget[]
PointerTarget. getTargets()
Get all the pointer targets of this synsetPointerTarget[]
PointerTarget. getTargets(PointerType type)
Get all the targets of the pointers of typetype
.PointerTarget[]
SynsetProxy. getTargets()
PointerTarget[]
SynsetProxy. getTargets(PointerType type)
Constructors in net.didion.jwnl.data with parameters of type PointerTarget Constructor Description Pointer(PointerTarget source, int index, PointerType pointerType, POS targetPOS, long targetOffset, int targetIndex)
-
Uses of PointerTarget in net.didion.jwnl.data.list
Fields in net.didion.jwnl.data.list declared as PointerTarget Modifier and Type Field Description private PointerTarget
PointerTargetNode. _target
The PointerTargetprivate PointerTarget
PointerTargetTreeNodeList.FindTargetOperation. _target
Methods in net.didion.jwnl.data.list that return PointerTarget Modifier and Type Method Description PointerTarget
PointerTargetNode. getPointerTarget()
Methods in net.didion.jwnl.data.list with parameters of type PointerTarget Modifier and Type Method Description void
PointerTargetNodeList. add(PointerTarget target)
void
PointerTargetNodeList. add(PointerTarget target, PointerType type)
void
PointerTargetTreeNodeList. add(PointerTarget target)
void
PointerTargetTreeNodeList. add(PointerTarget target, PointerTargetTreeNodeList childTreeList, PointerTargetTreeNodeList pointerTreeList, PointerType type)
void
PointerTargetTreeNodeList. add(PointerTarget target, PointerTargetTreeNodeList childTreeList, PointerTargetTreeNodeList pointerTreeList, PointerType type, PointerTargetTreeNode parent)
void
PointerTargetTreeNodeList. add(PointerTarget target, PointerTargetTreeNodeList childTreeList, PointerType type)
void
PointerTargetTreeNodeList. add(PointerTarget target, PointerTargetTreeNodeList childTreeList, PointerType type, PointerTargetTreeNode parent)
void
PointerTargetTreeNodeList. add(PointerTarget target, PointerType type)
void
PointerTargetTreeNodeList. add(PointerTarget target, PointerType type, PointerTargetTreeNode parent)
PointerTargetTreeNode[]
PointerTargetTree. findAll(PointerTarget target)
Find all nodes in the tree whose target is targetPointerTargetTreeNode
PointerTargetTree. findFirst(PointerTarget target)
Find the first node in the tree whose target is target -
Uses of PointerTarget in net.didion.jwnl.data.relationship
Methods in net.didion.jwnl.data.relationship that return PointerTarget Modifier and Type Method Description PointerTarget
Relationship. getSourcePointerTarget()
Get the pointer target of the source node.PointerTarget
Relationship. getTargetPointerTarget()
Get the pointer target of the target node. -
Uses of PointerTarget in net.didion.jwnl.princeton.data
Subclasses of PointerTarget in net.didion.jwnl.princeton.data Modifier and Type Class Description (package private) class
MutableVerb
Wrapper for a verb that allows the VerbFrame flags to be set after the Verb is created.
-