public class CrudExampleImpl extends Object implements CrudExampleInf
Modifier and Type | Method and Description |
---|---|
static CrudExampleImpl |
getInstance() |
List<Map<String,Object>> |
select(Connection conn,
Example example) |
Object[] |
selectArray(Connection conn,
Example example) |
<T> List<T> |
selectList(Connection conn,
Class<T> beanClass,
Example example) |
<T> List<T> |
selectList(Connection conn,
Class<T> beanClass,
long start,
int limit,
Example example) |
<T> List<T> |
selectListForUpdate(Connection conn,
Class<T> beanClass,
Example example) |
<T> T |
selectOne(Connection conn,
Class<T> beanClass,
Example example) |
<T> T |
selectOneForUpdate(Connection conn,
Class<T> beanClass,
Example example) |
<T> Page<T> |
selectPage(Connection conn,
long start,
int limit,
Class<T> beanClass,
Example example) |
public static CrudExampleImpl getInstance()
public <T> Page<T> selectPage(Connection conn, long start, int limit, Class<T> beanClass, Example example)
selectPage
in interface CrudExampleInf
public Object[] selectArray(Connection conn, Example example)
selectArray
in interface CrudExampleInf
public <T> List<T> selectList(Connection conn, Class<T> beanClass, Example example)
selectList
in interface CrudExampleInf
public <T> List<T> selectList(Connection conn, Class<T> beanClass, long start, int limit, Example example)
selectList
in interface CrudExampleInf
public <T> List<T> selectListForUpdate(Connection conn, Class<T> beanClass, Example example)
selectListForUpdate
in interface CrudExampleInf
public <T> T selectOne(Connection conn, Class<T> beanClass, Example example)
selectOne
in interface CrudExampleInf
public <T> T selectOneForUpdate(Connection conn, Class<T> beanClass, Example example)
selectOneForUpdate
in interface CrudExampleInf
public List<Map<String,Object>> select(Connection conn, Example example)
select
in interface CrudExampleInf
Copyright © 2020. All rights reserved.