Package | Description |
---|---|
org.apache.empire.data |
This package contains interfaces for data and metadata handling.
|
org.apache.empire.data.bean |
This package contains implmentations of Empire's data and metadata interfaces for JavaBeans of Data Tranfer Objects (DTO's).
|
org.apache.empire.db |
This package contains the core Empire-DB implementation classes.
|
Modifier and Type | Method and Description |
---|---|
static DataMode |
DataMode.valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DataMode[] |
DataMode.values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
Modifier and Type | Method and Description |
---|---|
protected BeanProperty |
BeanClass.addProp(String propname,
DataType dataType,
double size,
DataMode dataMode) |
protected BeanProperty |
BeanClass.addProp(String propname,
DataType dataType,
double size,
DataMode dataMode,
String controlType) |
Constructor and Description |
---|
BeanProperty(String name,
DataType dataType,
double size,
DataMode dataMode,
String controlType)
Constructs a bean property definition
|
Modifier and Type | Field and Description |
---|---|
protected DataMode |
DBTableColumn.dataMode |
Modifier and Type | Method and Description |
---|---|
DBTableColumn |
DBTable.addColumn(String columnName,
DataType type,
double size,
DataMode dataMode)
Creates a new DBTableColumn object and adds it to the column collection.
|
DBTableColumn |
DBTable.addColumn(String columnName,
DataType type,
double size,
DataMode dataMode,
Object defValue)
Creates a new DBTableColumn object and adds it to the column collection.
|
Constructor and Description |
---|
DBTableColumn(DBTable table,
DataType type,
String name,
double size,
DataMode dataMode,
Object defValue)
Constructs a DBTableColumn object set the specified parameters to this object.
|
Copyright © 2008–2018 Apache Software Foundation. All rights reserved.