|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |
java.lang.Objectjava.lang.Enum<FDCheckState>
de.fesenmeyer.dbnormalizer.core.FDCheckState
public enum FDCheckState
Enumeration describing the state of a FD concerning its satisfaction in the associated table.
Enum Constant Summary | |
---|---|
NO_DATA
The associated table contains no data, so it can not be said whether it satisfies the FD or not. |
|
NOT_SATISFIED
The associated table does not satisfy the FD. |
|
SATISFIED
The associated table satisfies the FD. |
|
UNCHECKED
The FD has not yet been checked. |
Method Summary | |
---|---|
static FDCheckState |
valueOf(String name)
Returns the enum constant of this type with the specified name. |
static FDCheckState[] |
values()
Returns an array containing the constants of this enum type, in the order they are declared. |
Methods inherited from class java.lang.Enum |
---|
clone, compareTo, equals, finalize, getDeclaringClass, hashCode, name, ordinal, toString, valueOf |
Methods inherited from class java.lang.Object |
---|
getClass, notify, notifyAll, wait, wait, wait |
Enum Constant Detail |
---|
public static final FDCheckState UNCHECKED
public static final FDCheckState NO_DATA
public static final FDCheckState SATISFIED
public static final FDCheckState NOT_SATISFIED
Method Detail |
---|
public static FDCheckState[] values()
for (FDCheckState c : FDCheckState.values()) System.out.println(c);
public static FDCheckState valueOf(String name)
name
- the name of the enum constant to be returned.
IllegalArgumentException
- if this enum type has no constant
with the specified name
NullPointerException
- if the argument is null
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | ENUM CONSTANTS | FIELD | METHOD | DETAIL: ENUM CONSTANTS | FIELD | METHOD |