net.sourceforge.squirrel_sql.plugins.dbdiff.util
Enum AbstractDifference.DiffType
java.lang.Object
java.lang.Enum<AbstractDifference.DiffType>
net.sourceforge.squirrel_sql.plugins.dbdiff.util.AbstractDifference.DiffType
- All Implemented Interfaces:
- Serializable, Comparable<AbstractDifference.DiffType>
- Enclosing class:
- AbstractDifference
public static enum AbstractDifference.DiffType
- extends Enum<AbstractDifference.DiffType>
TABLE_COLUMN_COUNT
public static final AbstractDifference.DiffType TABLE_COLUMN_COUNT
TABLE_PK_NAME
public static final AbstractDifference.DiffType TABLE_PK_NAME
TABLE_PK_COLUMN
public static final AbstractDifference.DiffType TABLE_PK_COLUMN
TABLE_FK_NAME
public static final AbstractDifference.DiffType TABLE_FK_NAME
TABLE_FK_COLUMN
public static final AbstractDifference.DiffType TABLE_FK_COLUMN
TABLE_FK_COUNT
public static final AbstractDifference.DiffType TABLE_FK_COUNT
TABLE_INDEX_NAME
public static final AbstractDifference.DiffType TABLE_INDEX_NAME
TABLE_INDEX_COLUMNS
public static final AbstractDifference.DiffType TABLE_INDEX_COLUMNS
TABLE_INDEX_UNIQUENESS
public static final AbstractDifference.DiffType TABLE_INDEX_UNIQUENESS
COLUMN_TYPE
public static final AbstractDifference.DiffType COLUMN_TYPE
COLUMN_LENGTH
public static final AbstractDifference.DiffType COLUMN_LENGTH
COLUMN_PRECISION
public static final AbstractDifference.DiffType COLUMN_PRECISION
COLUMN_SCALE
public static final AbstractDifference.DiffType COLUMN_SCALE
COLUMN_DEFAULT_VALUE
public static final AbstractDifference.DiffType COLUMN_DEFAULT_VALUE
COLUMN_NULLABILITY
public static final AbstractDifference.DiffType COLUMN_NULLABILITY
COLUMN_COMMENT
public static final AbstractDifference.DiffType COLUMN_COMMENT
values
public static AbstractDifference.DiffType[] values()
- Returns an array containing the constants of this enum type, in
the order they are declared. This method may be used to iterate
over the constants as follows:
for (AbstractDifference.DiffType c : AbstractDifference.DiffType.values())
System.out.println(c);
- Returns:
- an array containing the constants of this enum type, in
the order they are declared
valueOf
public static AbstractDifference.DiffType valueOf(String name)
- Returns the enum constant of this type with the specified name.
The string must match exactly an identifier used to declare an
enum constant in this type. (Extraneous whitespace characters are
not permitted.)
- Parameters:
name - the name of the enum constant to be returned.
- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException - if this enum type has no constant
with the specified name
NullPointerException - if the argument is null
Copyright © 2001-2010. All Rights Reserved.