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

Packages that use FDCheckState
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 FDCheckState in de.fesenmeyer.dbnormalizer.core
 

Fields in de.fesenmeyer.dbnormalizer.core declared as FDCheckState
private  FDCheckState FD.fdCheckState
          The check state of this FD.
 

Methods in de.fesenmeyer.dbnormalizer.core that return FDCheckState
 FDCheckState FD.getFdCheckState()
          Gets the check state of this FD.
static FDCheckState FDCheckState.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static FDCheckState[] FDCheckState.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in de.fesenmeyer.dbnormalizer.core with parameters of type FDCheckState
 void FD.setFdCheckState(FDCheckState fdCheckState)
          Sets the check state of this FD
 

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

Methods in de.fesenmeyer.dbnormalizer.core.algorithms that return FDCheckState
 FDCheckState FDChecker.checkFD(String qualifiedTableName, FD fd)
           Checks if the FD specified by argument fd is satisfied in the table specified by argument qualifiedTableName.