| Modifier and Type | Method and Description |
|---|---|
static PersistenceTableModel |
PersistenceFactory.createModel(Class<? extends Object> clazz)
Creates a new Persistence object.
|
static PersistenceTableModel |
PersistenceFactory.createModel(Object pojo)
Creates a new Persistence object.
|
static PersistenceTableModel |
PersistenceFactory.createModel(String json)
Creates a new Persistence object.
|
| Modifier and Type | Method and Description |
|---|---|
PersistenceTableModel |
PersistenceJsonParser.parseModel(String json)
Parses the model.
|
PersistenceTableModel |
PersistenceAnnotationsParser.parsePojo(Class<? extends Object> clazz)
Parses the pojo.
|
PersistenceTableModel |
PersistenceAnnotationsParser.parsePojo(Object pojo)
Parses the pojo.
|
| Modifier and Type | Method and Description |
|---|---|
int |
PersistenceDeleteProcessor.delete(Connection connection,
PersistenceTableModel tableModel,
Class<T> clazz,
Object id)
Delete.
|
int |
PersistenceDeleteProcessor.deleteAll(Connection connection,
PersistenceTableModel tableModel,
Class<T> clazz)
Delete all.
|
T |
PersistenceQueryProcessor.find(Connection connection,
PersistenceTableModel tableModel,
Class<T> clazz,
Object id)
Find.
|
List<T> |
PersistenceQueryProcessor.findAll(Connection connection,
PersistenceTableModel tableModel,
Class<T> clazz)
Find all.
|
protected T |
PersistenceQueryProcessor.get(Connection connection,
PersistenceTableModel tableModel,
Class<T> clazz,
Object id,
String sql)
Gets the.
|
Object |
PersistenceInsertProcessor.insert(Connection connection,
PersistenceTableModel tableModel,
T pojo)
Insert.
|
T |
PersistenceQueryProcessor.lock(Connection connection,
PersistenceTableModel tableModel,
Class<T> clazz,
Object id)
Lock.
|
int |
PersistenceUpdateProcessor.update(Connection connection,
PersistenceTableModel tableModel,
T pojo)
Update.
|
| Modifier and Type | Method and Description |
|---|---|
int |
PersistenceCreateIdentityProcessor.create(Connection connection,
PersistenceTableModel tableModel)
Creates the.
|
long |
PersistenceNextValueIdentityProcessor.nextval(Connection connection,
PersistenceTableModel tableModel)
Nextval.
|
| Modifier and Type | Method and Description |
|---|---|
int |
PersistenceCreateSequenceProcessor.create(Connection connection,
PersistenceTableModel tableModel)
Creates the.
|
int |
PersistenceDropSequenceProcessor.drop(Connection connection,
PersistenceTableModel tableModel)
Drop.
|
long |
PersistenceNextValueSequenceProcessor.nextval(Connection connection,
PersistenceTableModel tableModel)
Nextval.
|
| Modifier and Type | Method and Description |
|---|---|
int |
PersistenceCreateTableProcessor.create(Connection connection,
PersistenceTableModel tableModel)
Creates the table.
|
int |
PersistenceDropTableProcessor.drop(Connection connection,
PersistenceTableModel tableModel)
Drop the table.
|
Copyright © 2010–2018 Eclipse Foundation. All rights reserved.