|
||||||||||
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.fromDatabaseField(DatabaseType databaseType,
String tableName,
Field field,
DatabaseField databaseField)
|
static DatabaseFieldConfig |
DatabaseFieldConfig.fromDatabaseFieldAnnotations(DatabaseType databaseType,
String tableName,
Field field,
DatabaseFieldSimple simpleAnno,
DatabaseFieldId idAnno,
DatabaseFieldForeign foreignAnno,
DatabaseFieldIndex indexAnno,
DatabaseFieldOther otherAnno)
|
static DatabaseFieldConfig |
DatabaseFieldConfig.fromField(DatabaseType databaseType,
String tableName,
Field field)
Create and return a config converted from a Field that may have one of the following annotations:
DatabaseField , DatabaseFieldSimple , ForeignCollectionField , or javax.persistence... |
static DatabaseFieldConfig |
DatabaseFieldConfigLoader.fromReader(BufferedReader reader)
Load a configuration in from a text file. |
Methods in com.j256.ormlite.field with parameters of type DatabaseFieldConfig | |
---|---|
static void |
DatabaseFieldConfigLoader.write(BufferedWriter writer,
DatabaseFieldConfig config,
String tableName)
Write the configuration to a buffered writer. |
static void |
DatabaseFieldConfigLoader.writeConfig(BufferedWriter writer,
DatabaseFieldConfig config,
String tableName)
Print the config to the writer. |
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 |