|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use ISearchCallback | |
---|---|
org.dbunit.database.search | |
org.dbunit.util.search |
Uses of ISearchCallback in org.dbunit.database.search |
---|
Classes in org.dbunit.database.search that implement ISearchCallback | |
---|---|
class |
AbstractMetaDataBasedSearchCallback
Super-class for the ISearchCallback that implements the getEdges() method using the database meta-data. |
class |
ImportedAndExportedKeysSearchCallback
ISearchCallback implementation that get the nodes using both direct and reverse foreign key dependency, i.e, if table C has a FK for a table A and table A has a FK for a table B, then getNodes(A) will return B and C. |
class |
ImportedAndExportedKeysSearchCallbackFilteredByPKs
Extension of the ImportedAndExportedKeysSearchCallback, where each new edge is added to a PrimaryKeyFilter. |
class |
ImportedKeysSearchCallback
ISearchCallback implementation that get the nodes using direct foreign key dependency, i.e, if table A has a FK for a table B, then getNodes(A) will return B. |
class |
ImportedKeysSearchCallbackFilteredByPKs
Extension of the ImportedKeysSearchCallback, where each new edge is added to a PrimaryKeyFilter. |
Uses of ISearchCallback in org.dbunit.util.search |
---|
Classes in org.dbunit.util.search that implement ISearchCallback | |
---|---|
class |
AbstractExcludeNodesSearchCallback
|
class |
AbstractIncludeNodesSearchCallback
|
class |
AbstractNodesFilterSearchCallback
Super-class for ISearchCallback implementations that needs to filter which nodes should be included or excluded from the search. This class implements the searchNode() based on its internal
mode, which could be ALLOW_MODE , DENY_MODE or
NO_MODE :
NO_MODE is the default mode and means searchNode()
always return true
ALLOW_MODE is set when setAllowedNodes() is called
and it means searchNode() will return true only if the node is
contained on the Set (or array) passed to setAllowedNodes()
DENY_MODE is set when setDeniedNodes() is called
and it means searchNode() will return true only if the node is
not contained on the Set (or array) passed to setDeniedNodes() |
Methods in org.dbunit.util.search with parameters of type ISearchCallback | |
---|---|
java.util.Set |
DepthFirstSearch.search(java.lang.Object[] nodesFrom,
ISearchCallback callback)
Alternative option to search() that takes an array of nodes as input (instead of a Set) |
java.util.Set |
ISearchAlgorithm.search(java.util.Set nodesFrom,
ISearchCallback callback)
Search all nodes that originates from a set of nodes. |
java.util.Set |
DepthFirstSearch.search(java.util.Set nodesFrom,
ISearchCallback callback)
|
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |