|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use DatabaseFieldConfig | |
---|---|
com.j256.ormlite.field | Object field information. |
com.j256.ormlite.misc | Miscellaneous classes. |
com.j256.ormlite.table | Object table information. |
Uses of DatabaseFieldConfig in com.j256.ormlite.field |
---|
Methods in com.j256.ormlite.field that return DatabaseFieldConfig | |
---|---|
static DatabaseFieldConfig |
DatabaseFieldConfig.fromField(DatabaseType databaseType,
String tableName,
Field field)
Create and return a config converted from a Field that may have either a DatabaseField annotation
or the javax.persistence annotations. |
Constructors in com.j256.ormlite.field with parameters of type DatabaseFieldConfig | |
---|---|
FieldType(ConnectionSource connectionSource,
String tableName,
Field field,
DatabaseFieldConfig fieldConfig,
Class<?> parentClass)
You should use FieldType.createFieldType(com.j256.ormlite.support.ConnectionSource, java.lang.String, java.lang.reflect.Field, java.lang.Class>) to instantiate one of these field if you have a Field . |
Uses of DatabaseFieldConfig in com.j256.ormlite.misc |
---|
Methods in com.j256.ormlite.misc that return DatabaseFieldConfig | |
---|---|
static DatabaseFieldConfig |
JavaxPersistence.createFieldConfig(DatabaseType databaseType,
Field field)
Create a field config from the javax.persistence annotations associated with the field argument. |
Uses of DatabaseFieldConfig in com.j256.ormlite.table |
---|
Methods in com.j256.ormlite.table that return types with arguments of type DatabaseFieldConfig | |
---|---|
List<DatabaseFieldConfig> |
DatabaseTableConfig.getFieldConfigs()
|
Method parameters in com.j256.ormlite.table with type arguments of type DatabaseFieldConfig | |
---|---|
void |
DatabaseTableConfig.setFieldConfigs(List<DatabaseFieldConfig> fieldConfigs)
|
Constructor parameters in com.j256.ormlite.table with type arguments of type DatabaseFieldConfig | |
---|---|
DatabaseTableConfig(Class<T> dataClass,
List<DatabaseFieldConfig> fieldConfigs)
Setup a table config associated with the dataClass and field configurations. |
|
DatabaseTableConfig(Class<T> dataClass,
String tableName,
List<DatabaseFieldConfig> fieldConfigs)
Setup a table config associated with the dataClass, table-name, and field configurations. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |