Uses of Class
de.fesenmeyer.dbnormalizer.core.CandKey

Packages that use CandKey
de.fesenmeyer.dbnormalizer.core The top-level package of the core logic, which contains the fundamental classes of DBNormalizer. 
de.fesenmeyer.dbnormalizer.core.algorithms Package which provides the several algorithms implemented by DBNormalizer. 
 

Uses of CandKey in de.fesenmeyer.dbnormalizer.core
 

Fields in de.fesenmeyer.dbnormalizer.core with type parameters of type CandKey
private  Set<CandKey> Table.candKeys
          The candidate keys.
 

Methods in de.fesenmeyer.dbnormalizer.core that return types with arguments of type CandKey
 Set<CandKey> Table.getCandKeys()
          Gets this table's candidate keys (if they have already been set).
 

Method parameters in de.fesenmeyer.dbnormalizer.core with type arguments of type CandKey
 void Table.setCandKeys(Set<CandKey> candKeys)
          Sets this table's candidate keys.
 

Uses of CandKey in de.fesenmeyer.dbnormalizer.core.algorithms
 

Method parameters in de.fesenmeyer.dbnormalizer.core.algorithms with type arguments of type CandKey
private static boolean FDAlgorithms.containsKey(Collection<CandKey> candidateKeys, Collection<String> attributes)
          Helper method which determines if a key consisting of the attributes specified by attributes argument is contained in the candidate keys specified by the candidateKeys argument