Uses of Class
com.jbstrap.core.meta.JPADataDescriptor
-
Uses of JPADataDescriptor in com.jbstrap.core.dao.base
Modifier and TypeMethodDescriptionJpaDaoAPI.find
(SQLTransaction transaction, JPADataDescriptor dataDescriptor) Gets the records of the specified entity based DataDescriptorJpaDaoAPI.find
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, int startRow, int endRow, Criteria criteria) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows.JpaDaoAPI.find
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, int startRow, int endRow, Criteria criteria, Order order) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows (ordered).JpaDaoAPI.find
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, int startRow, int endRow, Criteria criteria, Order... orders) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows (ordered).JpaDaoAPI.find
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, int startRow, int endRow, Criteria criteria, List<Order> orders) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows (ordered).JpaDaoAPI.find
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Criteria criteria) Gets the records of the specified entity based DataDescriptor, that meet the specified criteriaJpaDaoAPI.find
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client) Gets the records of the specified entity based DataDescriptorJpaDaoAPI.find
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client, int startRow, int endRow, Criteria criteria) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows.JpaDaoAPI.find
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client, int startRow, int endRow, Criteria criteria, Order order) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows (ordered).JpaDaoAPI.find
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client, int startRow, int endRow, Criteria criteria, Order... orders) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows (ordered).JpaDaoAPI.find
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client, int startRow, int endRow, Criteria criteria, List<Order> orders) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows (ordered).JpaDaoAPI.find
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client, Criteria criteria) Gets the records of the specified entity based DataDescriptor, that meet the specified criteriaJpaDaoAPI.find
(JPADataDescriptor dataDescriptor) Gets the records of the specified entity based DataDescriptorJpaDaoAPI.find
(JPADataDescriptor dataDescriptor, int startRow, int endRow, Criteria criteria) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows.JpaDaoAPI.find
(JPADataDescriptor dataDescriptor, int startRow, int endRow, Criteria criteria, Order order) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows (ordered).JpaDaoAPI.find
(JPADataDescriptor dataDescriptor, int startRow, int endRow, Criteria criteria, Order... orders) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows (ordered).JpaDaoAPI.find
(JPADataDescriptor dataDescriptor, int startRow, int endRow, Criteria criteria, List<Order> orders) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows (ordered).JpaDaoAPI.find
(JPADataDescriptor dataDescriptor, Criteria criteria) Gets the records of the specified entity based DataDescriptor, that meet the specified criteriaJpaDaoAPI.find
(JPADataDescriptor dataDescriptor, Client client) Gets the records of the specified entity based DataDescriptorJpaDaoAPI.find
(JPADataDescriptor dataDescriptor, Client client, int startRow, int endRow, Criteria criteria) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows.JpaDaoAPI.find
(JPADataDescriptor dataDescriptor, Client client, int startRow, int endRow, Criteria criteria, Order order) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows (ordered).JpaDaoAPI.find
(JPADataDescriptor dataDescriptor, Client client, int startRow, int endRow, Criteria criteria, Order... orders) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows (ordered).JpaDaoAPI.find
(JPADataDescriptor dataDescriptor, Client client, int startRow, int endRow, Criteria criteria, List<Order> orders) Gets the records of the specified entity based DataDescriptor, that meet the specified criteria, between the specified starting and ending rows (ordered).JpaDaoAPI.find
(JPADataDescriptor dataDescriptor, Client client, Criteria criteria) Gets the records of the specified entity based DataDescriptor, that meet the specified criteriastatic Record
JpaDaoAPI.findById
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client, Object id) Gets the entity based DataDescriptor specified in the parameter by its primary key (ID)static Record
JpaDaoAPI.findById
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Object id) Gets the entity based DataDescriptor specified in the parameter by its primary key (ID)static Record
JpaDaoAPI.findById
(JPADataDescriptor dataDescriptor, Client client, Object id) Gets the entity based DataDescriptor specified in the parameter by its primary key (ID)static Record
JpaDaoAPI.findById
(JPADataDescriptor dataDescriptor, Object id) Gets the entity based DataDescriptor specified in the parameter by its primary key (ID)static long
JpaDaoAPI.getRowCount
(SQLTransaction transaction, JPADataDescriptor dataDescriptor) Counts and returns the rows of the specified entity based DataDescriptor record.static long
JpaDaoAPI.getRowCount
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Criteria criteria) Counts and returns the rows of the specified entity based DataDescriptor record, that meet the criteria.static long
JpaDaoAPI.getRowCount
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client) Counts and returns the rows of the specified entity based DataDescriptor record.static long
JpaDaoAPI.getRowCount
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client, Criteria criteria) Counts and returns the rows of the specified entity based DataDescriptor record, that meet the criteria.static long
JpaDaoAPI.getRowCount
(JPADataDescriptor dataDescriptor) Counts and returns the rows of the specified entity based DataDescriptor record.static long
JpaDaoAPI.getRowCount
(JPADataDescriptor dataDescriptor, Criteria criteria) Counts and returns the rows of the specified entity based DataDescriptor record, that meet the criteria.static long
JpaDaoAPI.getRowCount
(JPADataDescriptor dataDescriptor, Client client) Counts and returns the rows of the specified entity based DataDescriptor record.static long
JpaDaoAPI.getRowCount
(JPADataDescriptor dataDescriptor, Client client, Criteria criteria) Counts and returns the rows of the specified entity based DataDescriptor record, that meet the criteria.static Object
JpaDaoAPI.getSeqNextVal
(JPADataDescriptor dataDescriptor) Gets the next sequence value from the specified DataDescriptor based entity.JpaDaoAPI.remove
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Record record) Removes the record from the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.remove
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Record... records) Removes the records from the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.remove
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client, Record record) Removes the record from the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.remove
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client, Record... records) Removes the records from the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.remove
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client, List<Record> records) Removes the records from the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.remove
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, List<Record> records) Removes the records from the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.remove
(JPADataDescriptor dataDescriptor, Record record) Removes the record from the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.remove
(JPADataDescriptor dataDescriptor, Record... records) Removes the records from the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.remove
(JPADataDescriptor dataDescriptor, Client client, Record record) Removes the record from the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.remove
(JPADataDescriptor dataDescriptor, Client client, Record... records) Removes the records from the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.remove
(JPADataDescriptor dataDescriptor, Client client, List<Record> records) Removes the records from the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.remove
(JPADataDescriptor dataDescriptor, List<Record> records) Removes the records from the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.save
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Record record) Saves the record to the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.save
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Record... records) Saves the records to the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.save
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client, Record record) Saves the record to the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.save
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client, Record... records) Saves the records to the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.save
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, Client client, List<Record> records) Saves the records to the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.save
(SQLTransaction transaction, JPADataDescriptor dataDescriptor, List<Record> records) Saves the records to the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.save
(JPADataDescriptor dataDescriptor, Record record) Saves the record to the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.save
(JPADataDescriptor dataDescriptor, Record... records) Saves the records to the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.save
(JPADataDescriptor dataDescriptor, Client client, Record record) Saves the record to the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.save
(JPADataDescriptor dataDescriptor, Client client, Record... records) Saves the records to the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.save
(JPADataDescriptor dataDescriptor, Client client, List<Record> records) Saves the records to the specified entity, that is defined by a DataDescriptor.JpaDaoAPI.save
(JPADataDescriptor dataDescriptor, List<Record> records) Saves the records to the specified entity, that is defined by a DataDescriptor.