Uses of Class
org.eclipse.dirigible.database.persistence.model.PersistenceTableModel
-
Uses of PersistenceTableModel in org.eclipse.dirigible.database.persistence
Methods in org.eclipse.dirigible.database.persistence that return PersistenceTableModel Modifier and Type Method Description static PersistenceTableModelPersistenceFactory. createModel(Class<? extends Object> clazz)Creates a new Persistence object.static PersistenceTableModelPersistenceFactory. createModel(Object pojo)Creates a new Persistence object.static PersistenceTableModelPersistenceFactory. createModel(String json)Creates a new Persistence object. -
Uses of PersistenceTableModel in org.eclipse.dirigible.database.persistence.parser
Methods in org.eclipse.dirigible.database.persistence.parser that return PersistenceTableModel Modifier and Type Method Description PersistenceTableModelPersistenceJsonParser. parseModel(String json)Parses the model.PersistenceTableModelPersistenceAnnotationsParser. parsePojo(Class<? extends Object> clazz)Parses the pojo.PersistenceTableModelPersistenceAnnotationsParser. parsePojo(Object pojo)Parses the pojo.Methods in org.eclipse.dirigible.database.persistence.parser with parameters of type PersistenceTableModel Modifier and Type Method Description StringPersistenceJsonParser. serializeModel(PersistenceTableModel persistenceTableModel)Serialize model.static StringSerializer. serializeTableModel(PersistenceTableModel tableModel)Serializes a table model -
Uses of PersistenceTableModel in org.eclipse.dirigible.database.persistence.processors
Methods in org.eclipse.dirigible.database.persistence.processors with parameters of type PersistenceTableModel Modifier and Type Method Description protected abstract StringAbstractPersistenceProcessor. generateScript(Connection connection, PersistenceTableModel tableModel)Generate script.StringAbstractPersistenceProcessor. getPrimaryKey(PersistenceTableModel tableModel)Gets the primary key.protected PersistenceTableColumnModelAbstractPersistenceProcessor. getPrimaryKeyModel(PersistenceTableModel tableModel)Gets the primary key model.protected voidAbstractPersistenceProcessor. setValuePrimaryKey(PersistenceTableModel tableModel, Object id, PreparedStatement preparedStatement)Sets the value primary key.protected voidAbstractPersistenceProcessor. setValuesFromPojo(PersistenceTableModel tableModel, Object pojo, PreparedStatement preparedStatement)Sets the values from pojo. -
Uses of PersistenceTableModel in org.eclipse.dirigible.database.persistence.processors.entity
Methods in org.eclipse.dirigible.database.persistence.processors.entity with parameters of type PersistenceTableModel Modifier and Type Method Description intPersistenceDeleteProcessor. delete(Connection connection, PersistenceTableModel tableModel, Class<T> clazz, Object id)Delete.intPersistenceDeleteProcessor. deleteAll(Connection connection, PersistenceTableModel tableModel, Class<T> clazz)Delete all.TPersistenceQueryProcessor. 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 StringPersistenceDeleteProcessor. generateScript(Connection connection, PersistenceTableModel tableModel)protected StringPersistenceExecuteProcessor. generateScript(Connection connection, PersistenceTableModel tableModel)protected StringPersistenceInsertProcessor. generateScript(Connection connection, PersistenceTableModel tableModel)protected StringPersistenceQueryProcessor. generateScript(Connection connection, PersistenceTableModel tableModel)protected StringPersistenceUpdateProcessor. generateScript(Connection connection, PersistenceTableModel tableModel)protected StringPersistenceDeleteProcessor. generateScriptDelete(Connection connection, PersistenceTableModel tableModel)Generate script delete.protected StringPersistenceDeleteProcessor. generateScriptDeleteAll(Connection connection, PersistenceTableModel tableModel)Generate script delete all.protected StringPersistenceQueryProcessor. generateScriptFind(Connection connection, PersistenceTableModel tableModel)Generate script find.protected StringPersistenceQueryProcessor. generateScriptFindAll(Connection connection, PersistenceTableModel tableModel)Generate script find all.protected StringPersistenceQueryProcessor. generateScriptLock(Connection connection, PersistenceTableModel tableModel)Generate script lock.protected TPersistenceQueryProcessor. get(Connection connection, PersistenceTableModel tableModel, Class<T> clazz, Object id, String sql)Gets the.ObjectPersistenceInsertProcessor. insert(Connection connection, PersistenceTableModel tableModel, T pojo)Insert.TPersistenceQueryProcessor. lock(Connection connection, PersistenceTableModel tableModel, Class<T> clazz, Object id)Lock.List<T>PersistenceQueryProcessor. query(Connection connection, PersistenceTableModel tableModel, Class<T> clazz, String sql, List<Object> values)Query.intPersistenceUpdateProcessor. update(Connection connection, PersistenceTableModel tableModel, T pojo)Update. -
Uses of PersistenceTableModel in org.eclipse.dirigible.database.persistence.processors.identity
Methods in org.eclipse.dirigible.database.persistence.processors.identity with parameters of type PersistenceTableModel Modifier and Type Method Description intPersistenceCreateIdentityProcessor. create(Connection connection, PersistenceTableModel tableModel)Creates the.protected StringPersistenceCreateIdentityProcessor. generateScript(Connection connection, PersistenceTableModel tableModel)protected StringPersistenceNextValueIdentityProcessor. generateScript(Connection connection, PersistenceTableModel tableModel)longPersistenceNextValueIdentityProcessor. nextval(Connection connection, PersistenceTableModel tableModel)Nextval. -
Uses of PersistenceTableModel in org.eclipse.dirigible.database.persistence.processors.sequence
Methods in org.eclipse.dirigible.database.persistence.processors.sequence with parameters of type PersistenceTableModel Modifier and Type Method Description intPersistenceCreateSequenceProcessor. create(Connection connection, PersistenceTableModel tableModel)Creates the.intPersistenceDropSequenceProcessor. drop(Connection connection, PersistenceTableModel tableModel)Drop.protected StringPersistenceCreateSequenceProcessor. generateScript(Connection connection, PersistenceTableModel tableModel)protected StringPersistenceDropSequenceProcessor. generateScript(Connection connection, PersistenceTableModel tableModel)protected StringPersistenceNextValueSequenceProcessor. generateScript(Connection connection, PersistenceTableModel tableModel)longPersistenceNextValueSequenceProcessor. nextval(Connection connection, PersistenceTableModel tableModel)Nextval. -
Uses of PersistenceTableModel in org.eclipse.dirigible.database.persistence.processors.table
Methods in org.eclipse.dirigible.database.persistence.processors.table with parameters of type PersistenceTableModel Modifier and Type Method Description intPersistenceCreateTableProcessor. create(Connection connection, PersistenceTableModel tableModel)Creates the table.intPersistenceDropTableProcessor. drop(Connection connection, PersistenceTableModel tableModel)Drop the table.protected StringPersistenceCreateTableProcessor. generateScript(Connection connection, PersistenceTableModel tableModel)protected StringPersistenceDropTableProcessor. generateScript(Connection connection, PersistenceTableModel tableModel)