public static enum DBHelper.ModelType extends java.lang.Enum<DBHelper.ModelType>
Enum Constant and Description |
---|
DDL
DDL Model represents the physical implementation of the model in a database which shows all table structures,
including column name, column data type, column constraints, primary key, foreign key and relationships between tables.
|
LOGICAL
LOGICAL Model type describes the data in as much detail as possible without regard to how they will be physical implemented.Logical model represents the
business requirements, it includes all entities, attributes and relationships.
|
PHYSICAL
PHYSICAL Model represents the physical implementation of the model in a database which shows all table structures,
including column name, column data type, column constraints, primary key, foreign key and relationships between tables.
|
Modifier and Type | Method and Description |
---|---|
static DBHelper.ModelType |
valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.
|
static DBHelper.ModelType[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DBHelper.ModelType PHYSICAL
public static final DBHelper.ModelType LOGICAL
public static final DBHelper.ModelType DDL
public static DBHelper.ModelType[] values()
for (DBHelper.ModelType c : DBHelper.ModelType.values()) System.out.println(c);
public static DBHelper.ModelType valueOf(java.lang.String name)
name
- the name of the enum constant to be returned.java.lang.IllegalArgumentException
- if this enum type has no constant with the specified namejava.lang.NullPointerException
- if the argument is null