Package org.gephi.datalab.api
Class SearchReplaceController.SearchResult
- java.lang.Object
-
- org.gephi.datalab.api.SearchReplaceController.SearchResult
-
- Enclosing interface:
- SearchReplaceController
public static class SearchReplaceController.SearchResult extends Object
Class that wraps the result of a search contaning the search options used for this result and the node or edge, row, column and start-end index of the value where ocurrence was found.
-
-
Constructor Summary
Constructors Constructor Description SearchResult(SearchReplaceController.SearchOptions searchOptions, Node foundNode, Edge foundEdge, int foundRowIndex, int foundColumnIndex, int start, int end)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description int
getEnd()
int
getFoundColumnIndex()
Edge
getFoundEdge()
Node
getFoundNode()
int
getFoundRowIndex()
SearchReplaceController.SearchOptions
getSearchOptions()
int
getStart()
void
setEnd(int end)
void
setFoundColumnIndex(int foundColumnIndex)
void
setFoundEdge(Edge foundEdge)
void
setFoundNode(Node foundNode)
void
setFoundRowIndex(int foundRowIndex)
void
setSearchOptions(SearchReplaceController.SearchOptions searchOptions)
void
setStart(int start)
-
-
-
Constructor Detail
-
SearchResult
public SearchResult(SearchReplaceController.SearchOptions searchOptions, Node foundNode, Edge foundEdge, int foundRowIndex, int foundColumnIndex, int start, int end)
-
-
Method Detail
-
getEnd
public int getEnd()
-
setEnd
public void setEnd(int end)
-
getFoundColumnIndex
public int getFoundColumnIndex()
-
setFoundColumnIndex
public void setFoundColumnIndex(int foundColumnIndex)
-
getFoundEdge
public Edge getFoundEdge()
-
setFoundEdge
public void setFoundEdge(Edge foundEdge)
-
getFoundNode
public Node getFoundNode()
-
setFoundNode
public void setFoundNode(Node foundNode)
-
getFoundRowIndex
public int getFoundRowIndex()
-
setFoundRowIndex
public void setFoundRowIndex(int foundRowIndex)
-
getSearchOptions
public SearchReplaceController.SearchOptions getSearchOptions()
-
setSearchOptions
public void setSearchOptions(SearchReplaceController.SearchOptions searchOptions)
-
getStart
public int getStart()
-
setStart
public void setStart(int start)
-
-