Uses of Interface
org.dbunit.util.search.ISearchCallback
Packages that use ISearchCallback
-
Uses of ISearchCallback in org.dbunit.database.search
Classes in org.dbunit.database.search that implement ISearchCallbackModifier and TypeClassDescriptionclassSuper-class for the ISearchCallback that implements thegetEdges()method using the database meta-data.classISearchCallback implementation that get the nodes using direct foreign key dependency, i.e, if table A has a FK for a table B, then getNodes(B) will return A.classISearchCallback 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.classExtension of the ImportedAndExportedKeysSearchCallback, where each new edge is added to a PrimaryKeyFilter.classISearchCallback 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.classExtension 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 ISearchCallbackModifier and TypeClassDescriptionclassclassclassSuper-class for ISearchCallback implementations that needs to filter which nodes should be included or excluded from the search.
This class implements thesearchNode()based on its internal mode, which could beALLOW_MODE,DENY_MODEorNO_MODE:NO_MODEis the default mode and meanssearchNode()always return trueALLOW_MODEis set whensetAllowedNodes()is called and it meanssearchNode()will return true only if the node is contained on the Set (or array) passed tosetAllowedNodes()DENY_MODEis set whensetDeniedNodes()is called and it meanssearchNode()will return true only if the node is not contained on the Set (or array) passed tosetDeniedNodes()Methods in org.dbunit.util.search with parameters of type ISearchCallbackModifier and TypeMethodDescriptionDepthFirstSearch.search(Object[] nodesFrom, ISearchCallback callback) Alternative option to search() that takes an array of nodes as input (instead of a Set)DepthFirstSearch.search(Set nodesFrom, ISearchCallback callback) ISearchAlgorithm.search(Set nodesFrom, ISearchCallback callback) Search all nodes that originates from a set of nodes.