SYMBOL INDEX (905 symbols across 173 files) FILE: src/main/java/com/github/pagehelper/AutoDialect.java type AutoDialect (line 38) | public interface AutoDialect { method extractDialectKey (line 48) | K extractDialectKey(MappedStatement ms, DataSource dataSource, Propert... method extractDialect (line 59) | AbstractHelperDialect extractDialect(K dialectKey, MappedStatement ms,... FILE: src/main/java/com/github/pagehelper/BoundSqlInterceptor.java type BoundSqlInterceptor (line 33) | public interface BoundSqlInterceptor { method boundSql (line 44) | BoundSql boundSql(Type type, BoundSql boundSql, CacheKey cacheKey, Cha... type Type (line 46) | enum Type { type Chain (line 64) | interface Chain { method doBoundSql (line 68) | BoundSql doBoundSql(Type type, BoundSql boundSql, CacheKey cacheKey); FILE: src/main/java/com/github/pagehelper/BoundSqlInterceptorChain.java class BoundSqlInterceptorChain (line 32) | public class BoundSqlInterceptorChain implements BoundSqlInterceptor.Cha... method BoundSqlInterceptorChain (line 39) | public BoundSqlInterceptorChain(BoundSqlInterceptor.Chain original, Li... method BoundSqlInterceptorChain (line 43) | private BoundSqlInterceptorChain(BoundSqlInterceptor.Chain original, L... method doBoundSql (line 49) | @Override method _doBoundSql (line 58) | private BoundSql _doBoundSql(BoundSqlInterceptor.Type type, BoundSql b... FILE: src/main/java/com/github/pagehelper/Constant.java type Constant (line 30) | public interface Constant { FILE: src/main/java/com/github/pagehelper/CountMsIdGen.java type CountMsIdGen (line 39) | public interface CountMsIdGen { method genCountMsId (line 55) | String genCountMsId(MappedStatement ms, Object parameter, FILE: src/main/java/com/github/pagehelper/Dialect.java type Dialect (line 43) | public interface Dialect { method skip (line 52) | boolean skip(MappedStatement ms, Object parameterObject, RowBounds row... method isAsyncCount (line 59) | default boolean isAsyncCount() { method asyncCountTask (line 70) | default Future asyncCountTask(Callable task) { method beforeCount (line 82) | boolean beforeCount(MappedStatement ms, Object parameterObject, RowBou... method getCountSql (line 94) | String getCountSql(MappedStatement ms, BoundSql boundSql, Object param... method afterCount (line 104) | boolean afterCount(long count, Object parameterObject, RowBounds rowBo... method processParameterObject (line 115) | Object processParameterObject(MappedStatement ms, Object parameterObje... method beforePage (line 125) | boolean beforePage(MappedStatement ms, Object parameterObject, RowBoun... method getPageSql (line 137) | String getPageSql(MappedStatement ms, BoundSql boundSql, Object parame... method afterPage (line 147) | Object afterPage(List pageList, Object parameterObject, RowBounds rowB... method afterAll (line 152) | void afterAll(); method setProperties (line 159) | void setProperties(Properties properties); FILE: src/main/java/com/github/pagehelper/IPage.java type IPage (line 30) | public interface IPage { method getPageNum (line 32) | Integer getPageNum(); method getPageSize (line 34) | Integer getPageSize(); method getOrderBy (line 36) | String getOrderBy(); FILE: src/main/java/com/github/pagehelper/ISelect.java type ISelect (line 33) | public interface ISelect { method doSelect (line 38) | void doSelect(); FILE: src/main/java/com/github/pagehelper/Page.java class Page (line 43) | public class Page extends ArrayList implements Closeable { method Page (line 122) | public Page() { method Page (line 126) | public Page(int pageNum, int pageSize) { method Page (line 130) | public Page(int pageNum, int pageSize, boolean count) { method Page (line 134) | private Page(int pageNum, int pageSize, boolean count, Boolean reasona... method Page (line 152) | public Page(int[] rowBounds, boolean count) { method getStackTrace (line 167) | public String getStackTrace() { method getResult (line 171) | public List getResult() { method getPages (line 175) | public int getPages() { method setPages (line 179) | public Page setPages(int pages) { method getEndRow (line 184) | public long getEndRow() { method setEndRow (line 188) | public Page setEndRow(long endRow) { method getPageNum (line 193) | public int getPageNum() { method setPageNum (line 197) | public Page setPageNum(int pageNum) { method getPageSize (line 203) | public int getPageSize() { method setPageSize (line 207) | public Page setPageSize(int pageSize) { method getStartRow (line 212) | public long getStartRow() { method setStartRow (line 216) | public Page setStartRow(long startRow) { method getTotal (line 221) | public long getTotal() { method setTotal (line 225) | public void setTotal(long total) { method getReasonable (line 245) | public Boolean getReasonable() { method setReasonable (line 249) | public Page setReasonable(Boolean reasonable) { method getPageSizeZero (line 262) | public Boolean getPageSizeZero() { method setPageSizeZero (line 266) | public Page setPageSizeZero(Boolean pageSizeZero) { method getOrderBy (line 273) | public String getOrderBy() { method setOrderBy (line 282) | public Page setOrderBy(String orderBy) { method setUnsafeOrderBy (line 298) | public Page setUnsafeOrderBy(String orderBy) { method isOrderByOnly (line 303) | public boolean isOrderByOnly() { method setOrderByOnly (line 307) | public void setOrderByOnly(boolean orderByOnly) { method getDialectClass (line 311) | public String getDialectClass() { method setDialectClass (line 315) | public void setDialectClass(String dialectClass) { method getKeepOrderBy (line 319) | public Boolean getKeepOrderBy() { method setKeepOrderBy (line 323) | public Page setKeepOrderBy(Boolean keepOrderBy) { method getKeepSubSelectOrderBy (line 328) | public Boolean getKeepSubSelectOrderBy() { method setKeepSubSelectOrderBy (line 332) | public void setKeepSubSelectOrderBy(Boolean keepSubSelectOrderBy) { method getAsyncCount (line 336) | public Boolean getAsyncCount() { method setAsyncCount (line 340) | public void setAsyncCount(Boolean asyncCount) { method using (line 350) | public Page using(String dialect) { method calculateStartAndEndRow (line 358) | private void calculateStartAndEndRow() { method isCount (line 363) | public boolean isCount() { method setCount (line 367) | public Page setCount(boolean count) { method pageNum (line 378) | public Page pageNum(int pageNum) { method pageSize (line 390) | public Page pageSize(int pageSize) { method count (line 402) | public Page count(Boolean count) { method reasonable (line 413) | public Page reasonable(Boolean reasonable) { method pageSizeZero (line 424) | public Page pageSizeZero(Boolean pageSizeZero) { method boundSqlInterceptor (line 435) | public Page boundSqlInterceptor(BoundSqlInterceptor boundSqlInterce... method countColumn (line 446) | public Page countColumn(String columnName) { method keepOrderBy (line 457) | public Page keepOrderBy(boolean keepOrderBy) { method keepOrderBy (line 462) | public boolean keepOrderBy() { method keepSubSelectOrderBy (line 472) | public Page keepSubSelectOrderBy(boolean keepSubSelectOrderBy) { method keepSubSelectOrderBy (line 477) | public boolean keepSubSelectOrderBy() { method asyncCount (line 487) | public Page asyncCount(boolean asyncCount) { method enableAsyncCount (line 497) | public Page enableAsyncCount() { method disableAsyncCount (line 506) | public Page disableAsyncCount() { method asyncCount (line 511) | public boolean asyncCount() { method toPageInfo (line 515) | public PageInfo toPageInfo() { method toPageInfo (line 526) | public PageInfo toPageInfo(Function function) { method toPageSerializable (line 542) | public PageSerializable toPageSerializable() { method toPageSerializable (line 553) | public PageSerializable toPageSerializable(Function funct... method doSelectPage (line 563) | public Page doSelectPage(ISelect select) { method doSelectPageInfo (line 568) | public PageInfo doSelectPageInfo(ISelect select) { method doSelectPageSerializable (line 573) | public PageSerializable doSelectPageSerializable(ISelect select) { method doCount (line 578) | public long doCount(ISelect select) { method getCountColumn (line 585) | public String getCountColumn() { method setCountColumn (line 589) | public void setCountColumn(String countColumn) { method getBoundSqlInterceptor (line 596) | public BoundSqlInterceptor getBoundSqlInterceptor() { method setBoundSqlInterceptor (line 600) | public void setBoundSqlInterceptor(BoundSqlInterceptor boundSqlInterce... method getChain (line 604) | BoundSqlInterceptor.Chain getChain() { method setChain (line 608) | void setChain(BoundSqlInterceptor.Chain chain) { method toString (line 612) | @Override method close (line 627) | @Override type Function (line 635) | public interface Function { method apply (line 643) | T apply(E t); FILE: src/main/java/com/github/pagehelper/PageException.java class PageException (line 30) | public class PageException extends RuntimeException { method PageException (line 31) | public PageException() { method PageException (line 35) | public PageException(String message) { method PageException (line 39) | public PageException(String message, Throwable cause) { method PageException (line 43) | public PageException(Throwable cause) { FILE: src/main/java/com/github/pagehelper/PageHelper.java class PageHelper (line 55) | public class PageHelper extends PageMethod implements Dialect, BoundSqlI... method skip (line 61) | @Override method isAsyncCount (line 80) | @Override method asyncCountTask (line 85) | @Override method beforeCount (line 104) | @Override method getCountSql (line 109) | @Override method afterCount (line 114) | @Override method processParameterObject (line 119) | @Override method beforePage (line 124) | @Override method getPageSql (line 129) | @Override method getPageSql (line 134) | public String getPageSql(String sql, Page page, RowBounds rowBounds, C... method afterPage (line 138) | @Override method afterAll (line 148) | @Override method doBoundSql (line 159) | @Override method setProperties (line 181) | @Override FILE: src/main/java/com/github/pagehelper/PageInfo.java class PageInfo (line 42) | @SuppressWarnings({"rawtypes", "unchecked"}) method PageInfo (line 116) | public PageInfo() { method PageInfo (line 124) | public PageInfo(List list) { method PageInfo (line 134) | public PageInfo(List list, int navigatePages) { method of (line 166) | public static PageInfo of(List list) { method of (line 177) | public static PageInfo of(long total, List list) { method of (line 185) | public static PageInfo of(List list, int navigateP... method emptyPageInfo (line 194) | public static PageInfo emptyPageInfo() { method calcByNavigatePages (line 198) | public void calcByNavigatePages(int navigatePages) { method calcNavigatepageNums (line 211) | private void calcNavigatepageNums() { method calcPage (line 247) | private void calcPage() { method judgePageBoudary (line 263) | private void judgePageBoudary() { method convert (line 277) | public PageInfo convert(Page.Function function) { method hasContent (line 306) | public boolean hasContent() { method getPageNum (line 310) | public int getPageNum() { method setPageNum (line 314) | public void setPageNum(int pageNum) { method getPageSize (line 318) | public int getPageSize() { method setPageSize (line 322) | public void setPageSize(int pageSize) { method getSize (line 326) | public int getSize() { method setSize (line 330) | public void setSize(int size) { method getStartRow (line 334) | public long getStartRow() { method setStartRow (line 338) | public void setStartRow(long startRow) { method getEndRow (line 342) | public long getEndRow() { method setEndRow (line 346) | public void setEndRow(long endRow) { method getPages (line 350) | public int getPages() { method setPages (line 354) | public void setPages(int pages) { method getPrePage (line 358) | public int getPrePage() { method setPrePage (line 362) | public void setPrePage(int prePage) { method getNextPage (line 366) | public int getNextPage() { method setNextPage (line 370) | public void setNextPage(int nextPage) { method isIsFirstPage (line 374) | public boolean isIsFirstPage() { method setIsFirstPage (line 378) | public void setIsFirstPage(boolean isFirstPage) { method isIsLastPage (line 382) | public boolean isIsLastPage() { method setIsLastPage (line 386) | public void setIsLastPage(boolean isLastPage) { method isHasPreviousPage (line 390) | public boolean isHasPreviousPage() { method setHasPreviousPage (line 394) | public void setHasPreviousPage(boolean hasPreviousPage) { method isHasNextPage (line 398) | public boolean isHasNextPage() { method setHasNextPage (line 402) | public void setHasNextPage(boolean hasNextPage) { method getNavigatePages (line 406) | public int getNavigatePages() { method setNavigatePages (line 410) | public void setNavigatePages(int navigatePages) { method getNavigatepageNums (line 414) | public int[] getNavigatepageNums() { method setNavigatepageNums (line 418) | public void setNavigatepageNums(int[] navigatepageNums) { method getNavigateFirstPage (line 422) | public int getNavigateFirstPage() { method getNavigateLastPage (line 426) | public int getNavigateLastPage() { method setNavigateFirstPage (line 430) | public void setNavigateFirstPage(int navigateFirstPage) { method setNavigateLastPage (line 434) | public void setNavigateLastPage(int navigateLastPage) { method toString (line 438) | @Override FILE: src/main/java/com/github/pagehelper/PageInterceptor.java class PageInterceptor (line 68) | @SuppressWarnings({"rawtypes", "unchecked"}) method PageInterceptor (line 84) | public PageInterceptor() { method isDebug (line 101) | public static boolean isDebug() { method debugStackTraceLog (line 108) | protected void debugStackTraceLog() { method intercept (line 115) | @Override method asyncCount (line 183) | private Future asyncCount(MappedStatement ms, BoundSql boundSql,... method checkDialectExists (line 220) | private void checkDialectExists() { method count (line 230) | private Long count(Executor executor, MappedStatement ms, Object param... method plugin (line 256) | @Override method setProperties (line 261) | @Override FILE: src/main/java/com/github/pagehelper/PageParam.java class PageParam (line 30) | public class PageParam implements IPage { method PageParam (line 35) | public PageParam() { method PageParam (line 38) | public PageParam(Integer pageNum, Integer pageSize) { method PageParam (line 43) | public PageParam(Integer pageNum, Integer pageSize, String orderBy) { method setPageNum (line 49) | public void setPageNum(Integer pageNum) { method setPageSize (line 53) | public void setPageSize(Integer pageSize) { method setOrderBy (line 57) | public void setOrderBy(String orderBy) { method getPageNum (line 61) | @Override method getPageSize (line 66) | @Override method getOrderBy (line 71) | @Override FILE: src/main/java/com/github/pagehelper/PageProperties.java type PageProperties (line 34) | public interface PageProperties { method setProperties (line 41) | void setProperties(Properties properties); FILE: src/main/java/com/github/pagehelper/PageRowBounds.java class PageRowBounds (line 32) | public class PageRowBounds extends RowBounds { method PageRowBounds (line 36) | public PageRowBounds(int offset, int limit) { method getTotal (line 40) | public Long getTotal() { method setTotal (line 44) | public void setTotal(Long total) { method getCount (line 48) | public Boolean getCount() { method setCount (line 52) | public void setCount(Boolean count) { FILE: src/main/java/com/github/pagehelper/PageSerializable.java class PageSerializable (line 33) | public class PageSerializable implements Serializable { method PageSerializable (line 40) | public PageSerializable() { method PageSerializable (line 43) | @SuppressWarnings("unchecked") method of (line 53) | public static PageSerializable of(List list){ method getTotal (line 57) | public long getTotal() { method setTotal (line 61) | public void setTotal(long total) { method getList (line 65) | public List getList() { method setList (line 69) | public void setList(List list) { method toString (line 73) | @Override FILE: src/main/java/com/github/pagehelper/QueryInterceptor.java class QueryInterceptor (line 45) | @Intercepts( method intercept (line 53) | @Override method plugin (line 78) | @Override method setProperties (line 83) | @Override FILE: src/main/java/com/github/pagehelper/cache/Cache.java type Cache (line 32) | public interface Cache { method get (line 34) | V get(K key); method put (line 36) | void put(K key, V value); FILE: src/main/java/com/github/pagehelper/cache/CacheFactory.java class CacheFactory (line 39) | public abstract class CacheFactory { method createCache (line 47) | public static Cache createCache(String sqlCacheClass, Str... FILE: src/main/java/com/github/pagehelper/cache/GuavaCache.java class GuavaCache (line 38) | public class GuavaCache implements Cache { method GuavaCache (line 42) | public GuavaCache(Properties properties, String prefix) { method get (line 65) | @Override method put (line 70) | @Override FILE: src/main/java/com/github/pagehelper/cache/SimpleCache.java class SimpleCache (line 39) | public class SimpleCache implements Cache { method SimpleCache (line 43) | public SimpleCache(Properties properties, String prefix) { method get (line 77) | @Override method put (line 86) | @Override FILE: src/main/java/com/github/pagehelper/dialect/AbstractDialect.java class AbstractDialect (line 45) | public abstract class AbstractDialect implements Dialect { method getCountSql (line 50) | @Override method setProperties (line 55) | @Override FILE: src/main/java/com/github/pagehelper/dialect/AbstractHelperDialect.java class AbstractHelperDialect (line 50) | public abstract class AbstractHelperDialect extends AbstractDialect impl... method getLocalPage (line 58) | public Page getLocalPage() { method skip (line 62) | @Override method beforeCount (line 68) | @Override method getCountSql (line 74) | @Override method afterCount (line 84) | @Override method processParameterObject (line 107) | @Override method processPageParameter (line 171) | public abstract Object processPageParameter(MappedStatement ms, Map imple... method DataSourceAutoDialect (line 45) | public DataSourceAutoDialect() { method getJdbcUrl (line 50) | public abstract String getJdbcUrl(Ds ds); method extractDialectKey (line 52) | @Override method extractDialect (line 60) | @Override FILE: src/main/java/com/github/pagehelper/dialect/auto/DataSourceNegotiationAutoDialect.java class DataSourceNegotiationAutoDialect (line 43) | public class DataSourceNegotiationAutoDialect implements AutoDialect { method extractDialectKey (line 48) | @Override method extractDialect (line 70) | @Override FILE: src/main/java/com/github/pagehelper/dialect/auto/DruidAutoDialect.java class DruidAutoDialect (line 34) | public class DruidAutoDialect extends DataSourceAutoDialect { method getJdbcUrl (line 36) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/AS400Dialect.java class AS400Dialect (line 38) | @SuppressWarnings("rawtypes") method processPageParameter (line 41) | @Override method getPageSql (line 52) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/CirroDataDialect.java class CirroDataDialect (line 38) | public class CirroDataDialect extends AbstractHelperDialect { method processPageParameter (line 39) | @Override method getPageSql (line 51) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/Db2Dialect.java class Db2Dialect (line 38) | public class Db2Dialect extends AbstractHelperDialect { method processPageParameter (line 40) | @Override method getPageSql (line 52) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/FirebirdDialect.java class FirebirdDialect (line 44) | public class FirebirdDialect extends AbstractHelperDialect { method processPageParameter (line 46) | @Override method getPageSql (line 58) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/GaussDBDialect.java class GaussDBDialect (line 46) | public class GaussDBDialect extends AbstractHelperDialect { method processPageParameter (line 48) | @Override method getPageSql (line 71) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/HerdDBDialect.java class HerdDBDialect (line 44) | public class HerdDBDialect extends AbstractHelperDialect { method processPageParameter (line 46) | @Override method getPageSql (line 66) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/HsqldbDialect.java class HsqldbDialect (line 43) | public class HsqldbDialect extends AbstractHelperDialect { method processPageParameter (line 45) | @Override method getPageSql (line 67) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/InformixDialect.java class InformixDialect (line 43) | public class InformixDialect extends AbstractHelperDialect { method processPageParameter (line 45) | @Override method getPageSql (line 68) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/MySqlDialect.java class MySqlDialect (line 43) | public class MySqlDialect extends AbstractHelperDialect { method processPageParameter (line 45) | @Override method getPageSql (line 67) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/Oracle9iDialect.java class Oracle9iDialect (line 43) | public class Oracle9iDialect extends AbstractHelperDialect { method processPageParameter (line 45) | @Override method getPageSql (line 57) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/OracleDialect.java class OracleDialect (line 38) | public class OracleDialect extends AbstractHelperDialect { method processPageParameter (line 40) | @Override method getPageSql (line 52) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/OscarDialect.java class OscarDialect (line 43) | public class OscarDialect extends AbstractHelperDialect { method processPageParameter (line 45) | @Override method getPageSql (line 67) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/PostgreSqlDialect.java class PostgreSqlDialect (line 46) | public class PostgreSqlDialect extends AbstractHelperDialect { method processPageParameter (line 48) | @Override method getPageSql (line 73) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/SqlServer2012Dialect.java class SqlServer2012Dialect (line 37) | public class SqlServer2012Dialect extends SqlServerDialect { method processPageParameter (line 39) | @Override method getPageSql (line 51) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/SqlServerDialect.java class SqlServerDialect (line 49) | public class SqlServerDialect extends AbstractHelperDialect { method getCountSql (line 55) | @Override method processPageParameter (line 71) | @Override method getPageSql (line 76) | @Override method getPageSql (line 101) | @Override method setProperties (line 116) | @Override FILE: src/main/java/com/github/pagehelper/dialect/helper/XuguDialect.java class XuguDialect (line 43) | public class XuguDialect extends AbstractHelperDialect { method processPageParameter (line 45) | @Override method getPageSql (line 67) | @Override FILE: src/main/java/com/github/pagehelper/dialect/replace/RegexWithNolockReplaceSql.java class RegexWithNolockReplaceSql (line 35) | public class RegexWithNolockReplaceSql implements ReplaceSql { method replace (line 40) | @Override method restore (line 45) | @Override FILE: src/main/java/com/github/pagehelper/dialect/replace/SimpleWithNolockReplaceSql.java class SimpleWithNolockReplaceSql (line 35) | public class SimpleWithNolockReplaceSql implements ReplaceSql { method replace (line 40) | @Override method restore (line 45) | @Override FILE: src/main/java/com/github/pagehelper/dialect/rowbounds/Db2RowBoundsDialect.java class Db2RowBoundsDialect (line 36) | public class Db2RowBoundsDialect extends AbstractRowBoundsDialect { method getPageSql (line 38) | @Override FILE: src/main/java/com/github/pagehelper/dialect/rowbounds/GaussDBRowBoundsDialect.java class GaussDBRowBoundsDialect (line 37) | public class GaussDBRowBoundsDialect extends AbstractRowBoundsDialect { method getPageSql (line 42) | @Override FILE: src/main/java/com/github/pagehelper/dialect/rowbounds/HerdDBRowBoundsDialect.java class HerdDBRowBoundsDialect (line 36) | public class HerdDBRowBoundsDialect extends AbstractRowBoundsDialect { method getPageSql (line 38) | @Override FILE: src/main/java/com/github/pagehelper/dialect/rowbounds/HsqldbRowBoundsDialect.java class HsqldbRowBoundsDialect (line 36) | public class HsqldbRowBoundsDialect extends AbstractRowBoundsDialect { method getPageSql (line 38) | @Override FILE: src/main/java/com/github/pagehelper/dialect/rowbounds/InformixRowBoundsDialect.java class InformixRowBoundsDialect (line 36) | public class InformixRowBoundsDialect extends AbstractRowBoundsDialect { method getPageSql (line 38) | @Override FILE: src/main/java/com/github/pagehelper/dialect/rowbounds/MySqlRowBoundsDialect.java class MySqlRowBoundsDialect (line 36) | public class MySqlRowBoundsDialect extends AbstractRowBoundsDialect { method getPageSql (line 38) | @Override FILE: src/main/java/com/github/pagehelper/dialect/rowbounds/OracleRowBoundsDialect.java class OracleRowBoundsDialect (line 36) | public class OracleRowBoundsDialect extends AbstractRowBoundsDialect { method getPageSql (line 38) | @Override FILE: src/main/java/com/github/pagehelper/dialect/rowbounds/PostgreSqlRowBoundsDialect.java class PostgreSqlRowBoundsDialect (line 37) | public class PostgreSqlRowBoundsDialect extends AbstractRowBoundsDialect { method getPageSql (line 42) | @Override FILE: src/main/java/com/github/pagehelper/dialect/rowbounds/SqlServer2012RowBoundsDialect.java class SqlServer2012RowBoundsDialect (line 35) | public class SqlServer2012RowBoundsDialect extends SqlServerRowBoundsDia... method getPageSql (line 37) | @Override FILE: src/main/java/com/github/pagehelper/dialect/rowbounds/SqlServerRowBoundsDialect.java class SqlServerRowBoundsDialect (line 47) | public class SqlServerRowBoundsDialect extends AbstractRowBoundsDialect { method getCountSql (line 51) | @Override method getPageSql (line 60) | @Override method setProperties (line 73) | @Override FILE: src/main/java/com/github/pagehelper/dialect/rowbounds/XuguRowBoundsDialect.java class XuguRowBoundsDialect (line 36) | public class XuguRowBoundsDialect extends AbstractRowBoundsDialect { method getPageSql (line 38) | @Override FILE: src/main/java/com/github/pagehelper/page/PageAutoDialect.java class PageAutoDialect (line 49) | public class PageAutoDialect { method registerDialectAlias (line 54) | public static void registerDialectAlias(String alias, Class Page getLocalPage() { method clearPage (line 63) | public static void clearPage() { method count (line 73) | public static long count(ISelect select) { method startPage (line 85) | public static Page startPage(Object params) { method startPage (line 102) | public static Page startPage(int pageNum, int pageSize) { method startPage (line 113) | public static Page startPage(int pageNum, int pageSize, boolean... method startPage (line 124) | public static Page startPage(int pageNum, int pageSize, String ... method startPage (line 139) | public static Page startPage(int pageNum, int pageSize, boolean... method offsetPage (line 158) | public static Page offsetPage(int offset, int limit) { method offsetPage (line 169) | public static Page offsetPage(int offset, int limit, boolean co... method orderBy (line 185) | public static void orderBy(String orderBy) { method setStaticProperties (line 205) | protected static void setStaticProperties(Properties properties) { FILE: src/main/java/com/github/pagehelper/page/PageParams.java class PageParams (line 42) | public class PageParams { method getPage (line 87) | public Page getPage(Object parameterObject, RowBounds rowBounds) { method setProperties (line 131) | public void setProperties(Properties properties) { method isOffsetAsPageNum (line 163) | public boolean isOffsetAsPageNum() { method isRowBoundsWithCount (line 167) | public boolean isRowBoundsWithCount() { method isPageSizeZero (line 171) | public boolean isPageSizeZero() { method isReasonable (line 175) | public boolean isReasonable() { method isSupportMethodsArguments (line 179) | public boolean isSupportMethodsArguments() { method getCountColumn (line 183) | public String getCountColumn() { method isAsyncCount (line 187) | public boolean isAsyncCount() { FILE: src/main/java/com/github/pagehelper/parser/CountSqlParser.java type CountSqlParser (line 33) | public interface CountSqlParser { method addAggregateFunctions (line 123) | static void addAggregateFunctions(String functions) { method getSmartCountSql (line 137) | default String getSmartCountSql(String sql) { method getSmartCountSql (line 148) | String getSmartCountSql(String sql, String countColumn); FILE: src/main/java/com/github/pagehelper/parser/OrderBySqlParser.java type OrderBySqlParser (line 27) | public interface OrderBySqlParser { method converToOrderBySql (line 28) | String converToOrderBySql(String sql, String orderBy); FILE: src/main/java/com/github/pagehelper/parser/SqlParser.java type SqlParser (line 38) | public interface SqlParser { method parse (line 55) | Statement parse(String statementReader) throws JSQLParserException, Pa... FILE: src/main/java/com/github/pagehelper/parser/SqlParserUtil.java class SqlParserUtil (line 9) | public class SqlParserUtil { method parse (line 26) | public static Statement parse(String statementReader) { FILE: src/main/java/com/github/pagehelper/parser/SqlServerSqlParser.java type SqlServerSqlParser (line 30) | public interface SqlServerSqlParser { method convertToPageSql (line 32) | String convertToPageSql(String sql, Integer offset, Integer limit); FILE: src/main/java/com/github/pagehelper/parser/defaults/DefaultCountSqlParser.java class DefaultCountSqlParser (line 46) | public class DefaultCountSqlParser implements CountSqlParser { method getSmartCountSql (line 65) | @Override method getSimpleCountSql (line 111) | public String getSimpleCountSql(final String sql) { method getSimpleCountSql (line 121) | public String getSimpleCountSql(final String sql, String name) { method sqlToCount (line 136) | public Select sqlToCount(Select select, String name) { method isSimpleCount (line 164) | public boolean isSimpleCount(PlainSelect select) { method processSelect (line 224) | public void processSelect(Select select) { method processPlainSelect (line 255) | public void processPlainSelect(PlainSelect plainSelect) { method processWithItemsList (line 277) | public void processWithItemsList(List withItemsList) { method processFromItem (line 292) | public void processFromItem(FromItem fromItem) { method keepOrderBy (line 310) | protected boolean keepOrderBy() { method keepSubSelectOrderBy (line 317) | protected boolean keepSubSelectOrderBy() { method orderByHashParameters (line 327) | public boolean orderByHashParameters(List orderByEleme... FILE: src/main/java/com/github/pagehelper/parser/defaults/DefaultOrderBySqlParser.java class DefaultOrderBySqlParser (line 43) | public class DefaultOrderBySqlParser implements OrderBySqlParser { method converToOrderBySql (line 53) | @Override method extraOrderBy (line 79) | public static List extraOrderBy(Select select) { FILE: src/main/java/com/github/pagehelper/parser/defaults/DefaultSqlServerSqlParser.java class DefaultSqlServerSqlParser (line 56) | public class DefaultSqlServerSqlParser implements SqlServerSqlParser { method convertToPageSql (line 89) | public String convertToPageSql(String sql) { method convertToPageSql (line 101) | public String convertToPageSql(String sql, Integer offset, Integer lim... method getPageSelect (line 131) | protected Select getPageSelect(Select select) { method wrapSetOperationList (line 198) | protected Select wrapSetOperationList(SetOperationList setOperationLis... method getSelectItems (line 228) | protected List> getSelectItems(PlainSelect plainSelect) { method addRowNumber (line 273) | protected SelectItem addRowNumber(PlainSelect plainSelect, List list) { method cloneOrderByElement (line 380) | protected OrderByElement cloneOrderByElement(OrderByElement orig, Stri... method cloneOrderByElement (line 391) | protected OrderByElement cloneOrderByElement(OrderByElement orig, Expr... method getOrderByElements (line 407) | protected List getOrderByElements(PlainSelect plainSel... FILE: src/main/java/com/github/pagehelper/util/ClassUtil.java class ClassUtil (line 34) | public class ClassUtil { method newInstance (line 44) | @SuppressWarnings("unchecked") method newInstance (line 70) | @SuppressWarnings("unchecked") method newInstance (line 80) | public static T newInstance(Class cls, Properties properties) { method getServletRequestClass (line 92) | public static Class getServletRequestClass() throws ClassNotFoundEx... FILE: src/main/java/com/github/pagehelper/util/ExecutorUtil.java class ExecutorUtil (line 47) | public abstract class ExecutorUtil { method getAdditionalParameter (line 74) | public static Map getAdditionalParameter(BoundSql boun... method getProviderMethodArgumentNames (line 88) | public static String[] getProviderMethodArgumentNames(ProviderSqlSourc... method getExistedMappedStatement (line 103) | public static MappedStatement getExistedMappedStatement(Configuration ... method executeManualCount (line 124) | public static Long executeManualCount(Executor executor, MappedStateme... method executeAutoCount (line 150) | public static Long executeAutoCount(Dialect dialect, Executor executor... method pageQuery (line 192) | public static List pageQuery(Dialect dialect, Executor executor... FILE: src/main/java/com/github/pagehelper/util/MSUtils.java class MSUtils (line 39) | public class MSUtils { method newCountMappedStatement (line 49) | public static MappedStatement newCountMappedStatement(MappedStatement ... FILE: src/main/java/com/github/pagehelper/util/MetaObjectUtil.java class MetaObjectUtil (line 35) | public class MetaObjectUtil { method forObject (line 61) | public static MetaObject forObject(Object object) { FILE: src/main/java/com/github/pagehelper/util/MetaObjectWithReflectCache.java class MetaObjectWithReflectCache (line 41) | public class MetaObjectWithReflectCache { method forObject (line 46) | public static MetaObject forObject(Object object) { FILE: src/main/java/com/github/pagehelper/util/PageObjectUtil.java class PageObjectUtil (line 41) | public abstract class PageObjectUtil { method getPageFromObject (line 70) | public static Page getPageFromObject(Object params, boolean req... method getParamValue (line 159) | protected static Object getParamValue(MetaObject paramsObject, String ... method setParams (line 178) | public static void setParams(String params) { FILE: src/main/java/com/github/pagehelper/util/SqlSafeUtil.java class SqlSafeUtil (line 32) | public class SqlSafeUtil { method check (line 53) | public static boolean check(String value) { FILE: src/main/java/com/github/pagehelper/util/StackTraceUtil.java class StackTraceUtil (line 30) | public class StackTraceUtil { method current (line 35) | public static String current() { FILE: src/main/java/com/github/pagehelper/util/StringUtil.java class StringUtil (line 31) | public class StringUtil { method isEmpty (line 33) | public static boolean isEmpty(String str) { method isNotEmpty (line 40) | public static boolean isNotEmpty(String str) { FILE: src/test/java/com/github/pagehelper/mapper/ProviderMethod.java class ProviderMethod (line 35) | public class ProviderMethod { method selectSimple (line 37) | public String selectSimple(String str) { method select (line 41) | @SuppressWarnings("unchecked") method selectUser (line 53) | public String selectUser(User user) { FILE: src/test/java/com/github/pagehelper/mapper/UserMapper.java type UserMapper (line 38) | @SuppressWarnings("rawtypes") method selectByOrder (line 41) | @Select("select * from user order by ${order}") method selectSimple (line 45) | @SelectProvider(type = ProviderMethod.class, method = "selectSimple") method selectByProvider (line 49) | @SelectProvider(type = ProviderMethod.class, method = "select") method selectByUserProvider (line 52) | @SelectProvider(type = ProviderMethod.class, method = "selectUser") method selectBySelect (line 55) | @Select("Select * from user") method selectByOrder2 (line 58) | List selectByOrder2(@Param("order") String order); method selectAll (line 60) | List selectAll(); method selectCollectionMap (line 63) | List selectCollectionMap(); method selectGreterThanId (line 65) | List selectGreterThanId(int id); method selectGreterThanIdAndNotEquelName (line 67) | List selectGreterThanIdAndNotEquelName(@Param("id") int id, @Par... method selectAll (line 69) | List selectAll(RowBounds rowBounds); method selectAllOrderby (line 71) | List selectAllOrderby(); method selectAllOrderByParams (line 73) | List selectAllOrderByParams(@Param("order1") String order1, @Par... method selectAllOrderByMap (line 76) | List selectAllOrderByMap(Map orders); method selectAllOrderByList (line 78) | List selectAllOrderByList(List params); method selectAllOrderByArray (line 80) | List selectAllOrderByArray(Integer[] params); method selectIf (line 83) | List selectIf(@Param("id") Integer id); method selectIf3 (line 85) | List selectIf3(User user); method selectIf2 (line 87) | List selectIf2(@Param("id1") Integer id1, @Param("id2") Integer ... method selectIf2List (line 89) | List selectIf2List(@Param("id1") List id1, @Param("id2"... method selectIf2ListAndOrder (line 91) | List selectIf2ListAndOrder(@Param("id1") List id1, @Par... method selectChoose (line 94) | List selectChoose(@Param("id1") Integer id1, @Param("id2") Integ... method selectLike (line 96) | List selectLike(User user); method selectUnion (line 99) | List selectUnion(); method selectLeftjoin (line 101) | List selectLeftjoin(); method selectWith (line 103) | List selectWith(); method selectColumns (line 106) | List selectColumns(@Param("columns") String... columns); method selectMULId (line 108) | List selectMULId(int mul); method selectGroupBy (line 111) | List selectGroupBy(); method selectByWhereMap (line 114) | List selectByWhereMap(Where where); method selectByExample (line 117) | List selectByExample(UserExample example); method selectDistinct (line 119) | List selectDistinct(); method selectExists (line 121) | List selectExists(); method selectByPageNumSize (line 123) | List selectByPageNumSize(@Param("pageNum") int pageNum, @Param("... method selectByPageNumSizeOrderBy (line 125) | List selectByPageNumSizeOrderBy(@Param("pageNum") int pageNum, @... method selectByOrderBy (line 128) | List selectByOrderBy(@Param("orderBy") String orderBy); method selectByQueryModel (line 130) | List selectByQueryModel(UserQueryModel queryModel); method selectByIdList (line 132) | List selectByIdList(@Param("idList") List idList); method selectByIdList2 (line 134) | List selectByIdList2(@Param("idList") List idList); method execute (line 136) | List> execute(@Param("sql") String sql); method selectByCode (line 138) | List selectByCode(Code code); method selectOrderByWithParam (line 143) | List selectOrderByWithParam(@Param("py") String py); FILE: src/test/java/com/github/pagehelper/model/Code.java type Code (line 31) | public enum Code { FILE: src/test/java/com/github/pagehelper/model/User.java class User (line 35) | public class User method getId (line 44) | public int getId() { method setId (line 48) | public void setId(int id) { method toString (line 52) | @Override method getName (line 62) | public String getName() { method setName (line 66) | public void setName(String name) { method getPy (line 70) | public String getPy() { method setPy (line 74) | public void setPy(String py) { method getUsers (line 78) | public List getUsers() { method setUsers (line 82) | public void setUsers(List users) { FILE: src/test/java/com/github/pagehelper/model/UserCode.java class UserCode (line 30) | public class UserCode implements Serializable { method getId (line 38) | public int getId() { method setId (line 42) | public void setId(int id) { method getName (line 46) | public String getName() { method setName (line 50) | public UserCode setName(String name) { method getPy (line 55) | public Code getPy() { method setPy (line 59) | public void setPy(Code py) { method getUsers (line 63) | public List getUsers() { method setUsers (line 67) | public void setUsers(List users) { FILE: src/test/java/com/github/pagehelper/model/UserExample.java class UserExample (line 30) | public class UserExample { method UserExample (line 37) | public UserExample() { method or (line 41) | public void or(Criteria criteria) { method or (line 45) | public Criteria or() { method createCriteria (line 51) | public Criteria createCriteria() { method createCriteriaInternal (line 59) | protected Criteria createCriteriaInternal() { method clear (line 64) | public void clear() { class GeneratedCriteria (line 70) | protected abstract static class GeneratedCriteria { method GeneratedCriteria (line 73) | protected GeneratedCriteria() { method addCriterion (line 78) | protected void addCriterion(String condition) { method addCriterion (line 85) | protected void addCriterion(String condition, Object value, String p... method addCriterion (line 92) | protected void addCriterion(String condition, Object value1, Object ... method andIdIsNull (line 99) | public Criteria andIdIsNull() { method andIdIsNotNull (line 104) | public Criteria andIdIsNotNull() { method andIdEqualTo (line 109) | public Criteria andIdEqualTo(Integer value) { method andIdNotEqualTo (line 114) | public Criteria andIdNotEqualTo(Integer value) { method andIdGreaterThan (line 119) | public Criteria andIdGreaterThan(Integer value) { method andIdGreaterThanOrEqualTo (line 124) | public Criteria andIdGreaterThanOrEqualTo(Integer value) { method andIdLessThan (line 129) | public Criteria andIdLessThan(Integer value) { method andIdLessThanOrEqualTo (line 134) | public Criteria andIdLessThanOrEqualTo(Integer value) { method andIdIn (line 139) | public Criteria andIdIn(List values) { method andIdNotIn (line 144) | public Criteria andIdNotIn(List values) { method andIdBetween (line 149) | public Criteria andIdBetween(Integer value1, Integer value2) { method andIdNotBetween (line 154) | public Criteria andIdNotBetween(Integer value1, Integer value2) { method andUsernameIsNull (line 159) | public Criteria andUsernameIsNull() { method andUsernameIsNotNull (line 164) | public Criteria andUsernameIsNotNull() { method andUsernameEqualTo (line 169) | public Criteria andUsernameEqualTo(String value) { method andUsernameNotEqualTo (line 174) | public Criteria andUsernameNotEqualTo(String value) { method andUsernameGreaterThan (line 179) | public Criteria andUsernameGreaterThan(String value) { method andUsernameGreaterThanOrEqualTo (line 184) | public Criteria andUsernameGreaterThanOrEqualTo(String value) { method andUsernameLessThan (line 189) | public Criteria andUsernameLessThan(String value) { method andUsernameLessThanOrEqualTo (line 194) | public Criteria andUsernameLessThanOrEqualTo(String value) { method andUsernameLike (line 199) | public Criteria andUsernameLike(String value) { method andUsernameNotLike (line 204) | public Criteria andUsernameNotLike(String value) { method andUsernameIn (line 209) | public Criteria andUsernameIn(List values) { method andUsernameNotIn (line 214) | public Criteria andUsernameNotIn(List values) { method andUsernameBetween (line 219) | public Criteria andUsernameBetween(String value1, String value2) { method andUsernameNotBetween (line 224) | public Criteria andUsernameNotBetween(String value1, String value2) { method andUsercodeIsNull (line 229) | public Criteria andUsercodeIsNull() { method andUsercodeIsNotNull (line 234) | public Criteria andUsercodeIsNotNull() { method andUsercodeEqualTo (line 239) | public Criteria andUsercodeEqualTo(String value) { method andUsercodeNotEqualTo (line 244) | public Criteria andUsercodeNotEqualTo(String value) { method andUsercodeGreaterThan (line 249) | public Criteria andUsercodeGreaterThan(String value) { method andUsercodeGreaterThanOrEqualTo (line 254) | public Criteria andUsercodeGreaterThanOrEqualTo(String value) { method andUsercodeLessThan (line 259) | public Criteria andUsercodeLessThan(String value) { method andUsercodeLessThanOrEqualTo (line 264) | public Criteria andUsercodeLessThanOrEqualTo(String value) { method andUsercodeLike (line 269) | public Criteria andUsercodeLike(String value) { method andUsercodeNotLike (line 274) | public Criteria andUsercodeNotLike(String value) { method andUsercodeIn (line 279) | public Criteria andUsercodeIn(List values) { method andUsercodeNotIn (line 284) | public Criteria andUsercodeNotIn(List values) { method andUsercodeBetween (line 289) | public Criteria andUsercodeBetween(String value1, String value2) { method andUsercodeNotBetween (line 294) | public Criteria andUsercodeNotBetween(String value1, String value2) { method getAllCriteria (line 299) | public List getAllCriteria() { method getCriteria (line 303) | public List getCriteria() { method isValid (line 307) | public boolean isValid() { class Criteria (line 312) | public static class Criteria extends GeneratedCriteria { method Criteria (line 314) | protected Criteria() { class Criterion (line 319) | public static class Criterion { method Criterion (line 336) | protected Criterion(String condition) { method Criterion (line 343) | protected Criterion(String condition, Object value, String typeHandl... method Criterion (line 355) | protected Criterion(String condition, Object value) { method Criterion (line 359) | protected Criterion(String condition, Object value, Object secondVal... method Criterion (line 368) | protected Criterion(String condition, Object value, Object secondVal... method getCondition (line 372) | public String getCondition() { method getSecondValue (line 376) | public Object getSecondValue() { method getTypeHandler (line 380) | public String getTypeHandler() { method getValue (line 384) | public Object getValue() { method isBetweenValue (line 388) | public boolean isBetweenValue() { method isListValue (line 392) | public boolean isListValue() { method isNoValue (line 396) | public boolean isNoValue() { method isSingleValue (line 400) | public boolean isSingleValue() { method getOrderByClause (line 405) | public String getOrderByClause() { method setOrderByClause (line 409) | public void setOrderByClause(String orderByClause) { method getOredCriteria (line 413) | public List getOredCriteria() { method isDistinct (line 417) | public boolean isDistinct() { method setDistinct (line 421) | public void setDistinct(boolean distinct) { FILE: src/test/java/com/github/pagehelper/model/UserQueryModel.java class UserQueryModel (line 31) | public class UserQueryModel { method getOrderBy (line 39) | public String getOrderBy() { method setOrderBy (line 43) | public void setOrderBy(String orderBy) { method getPageNum (line 47) | public Integer getPageNum() { method setPageNum (line 51) | public void setPageNum(Integer pageNum) { method getPageSize (line 55) | public Integer getPageSize() { method setPageSize (line 59) | public void setPageSize(Integer pageSize) { FILE: src/test/java/com/github/pagehelper/rowbounds/RowBoundsHelper.java class RowBoundsHelper (line 37) | public class RowBoundsHelper { method getSqlSession (line 72) | public static SqlSession getSqlSession() { FILE: src/test/java/com/github/pagehelper/rowbounds/test/PageRowBoundsTest.java class PageRowBoundsTest (line 40) | public class PageRowBoundsTest { method testMapperWithPageRowBounds (line 49) | @Test method testNamespaceWithPageRowBounds (line 95) | @Test method testNamespaceWithRowBounds2 (line 132) | @Test method testWithRowboundsAndCountTrue (line 163) | @Test class IdBean (line 182) | class IdBean { method getId (line 185) | public Integer getId() { method setId (line 189) | public void setId(Integer id) { FILE: src/test/java/com/github/pagehelper/rowbounds/test/RowBoundsTest.java class RowBoundsTest (line 40) | public class RowBoundsTest { method testMapperWithRowBounds (line 49) | @Test method testNamespaceWithRowBounds (line 89) | @Test method testNamespaceWithRowBounds2 (line 120) | @Test method testWithRowboundsAndCountTrue (line 147) | @Test class IdBean (line 165) | class IdBean { method getId (line 168) | public Integer getId() { method setId (line 172) | public void setId(Integer id) { FILE: src/test/java/com/github/pagehelper/sql/DefaultOrderBySqlParserTest.java class DefaultOrderBySqlParserTest (line 32) | public class DefaultOrderBySqlParserTest { method testOrderBy (line 35) | @Test FILE: src/test/java/com/github/pagehelper/sql/SqlServerTest.java class SqlServerTest (line 39) | public class SqlServerTest { method testSqlTestWithlock (line 43) | @Test method testSqlTest (line 50) | @Test method testSqlAlias (line 57) | @Test method testSqlOrderByAlias (line 64) | @Test method testSqlDistinct (line 71) | @Test method testSqlTableAll (line 78) | @Test method testSqlAs (line 85) | @Test method testSelectParameter (line 92) | @Test method testSqlWith (line 100) | @Test method testSqlLeftJoin (line 114) | @Test method testSqlUnion (line 149) | @Test method testSqlUnion2 (line 158) | @Test method testSqlOrderByFunctionAlias (line 170) | @Test method testSqlOrderByUnknown (line 177) | @Test method testSqlOrderByTable (line 184) | @Test method testSqlStar (line 191) | @Test method testSql377 (line 204) | @Test method testSql386 (line 211) | @Test method testSql354 (line 237) | @Test method testSql374 (line 244) | @Test method testSql345 (line 251) | @Test method testSql306 (line 264) | @Test method testSql66 (line 276) | @Test method testSql398 (line 298) | @Test method testSqlServerSquareBrackets (line 328) | @Test method testSqlServer768 (line 337) | @Test FILE: src/test/java/com/github/pagehelper/sql/SqlTest.java class SqlTest (line 39) | public class SqlTest { method testSqlParser (line 42) | @Test method testSqlParser11 (line 89) | @Test method testSqlParser2 (line 110) | @Test method testSqlParser3 (line 117) | @Test method testSqlParser4 (line 136) | @Test method testWithNolock (line 143) | @Test method testSql375 (line 156) | @Test method testSql350 (line 161) | @Test method testSql555 (line 168) | @Test method testSql606 (line 174) | @Test method testSql201 (line 184) | @Test method testSql545 (line 193) | @Test method testKeepOrderBy (line 199) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/ArgumentsMapTest.java class ArgumentsMapTest (line 38) | public class ArgumentsMapTest { method testArgumentsMap (line 43) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/ArgumentsObjTest.java class ArgumentsObjTest (line 39) | public class ArgumentsObjTest { method testArgumentsObj (line 44) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/AsyncCountTest.java class AsyncCountTest (line 41) | @Ignore method getJdbcUrl (line 55) | @Override method getSqlSession (line 67) | public static SqlSession getSqlSession() { method testAsyncCount (line 78) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/CloseableTest.java class CloseableTest (line 38) | public class CloseableTest { method testCloseable (line 40) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/CollectionMapTest.java class CollectionMapTest (line 39) | public class CollectionMapTest { method test (line 41) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/CountColumnTest.java class CountColumnTest (line 39) | public class CountColumnTest { method testMapperWithStartPage (line 41) | @Test method testCountColumnInject (line 66) | @Test(expected = Exception.class) FILE: src/test/java/com/github/pagehelper/test/basic/EnumTest.java class EnumTest (line 38) | public class EnumTest { method testCloseable (line 40) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/IPageTest.java class IPageTest (line 40) | public class IPageTest { method testIPage (line 42) | @Test class UserIPage (line 73) | public static class UserIPage extends UserQueryModel implements IPage { FILE: src/test/java/com/github/pagehelper/test/basic/OffsetTest.java class OffsetTest (line 40) | public class OffsetTest { method testOffset (line 41) | @Test method testPageNum (line 79) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/PageHelperTest.java class PageHelperTest (line 41) | public class PageHelperTest { method shouldGetAllCountries (line 43) | @Test method testMapperWithRowBounds (line 61) | @Test method testNamespaceWithStartPage (line 113) | @Test method testNamespaceWithRowBounds (line 159) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/PageInfoTest.java class PageInfoTest (line 40) | public class PageInfoTest { method testPageSize10 (line 45) | @Test method testPageSize50 (line 110) | @Test method testNavigatePages (line 186) | @Test method testPageInfoOfTotal (line 229) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/RemoveOrderTest.java class RemoveOrderTest (line 41) | public class RemoveOrderTest { method simpleOrderTest (line 43) | @Test method paramsOrderTest (line 59) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/TestDistinct.java class TestDistinct (line 39) | public class TestDistinct { method test (line 41) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/TestExecute.java class TestExecute (line 38) | public class TestExecute { method test (line 40) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/TestISelect.java class TestISelect (line 43) | public class TestISelect { method testGroupBy2 (line 44) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/TestIntMax.java class TestIntMax (line 39) | public class TestIntMax { method testCountCache (line 44) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/TestLike.java class TestLike (line 39) | public class TestLike { method testMapperWithStartPage (line 44) | @Test method testMapperWithStartPage_OrderBy (line 72) | @Test method testMapperWithStartPage_OrderBy_issues_641 (line 93) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/TestNamespaceMap.java class TestNamespaceMap (line 40) | public class TestNamespaceMap { method testMapperWithStartPage (line 45) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/annotations/TestAnnotations.java class TestAnnotations (line 39) | public class TestAnnotations { method testMapperWithStartPage (line 44) | @Test method testMapperWithStartPage_OrderBy (line 70) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/cache/CacheTest.java class CacheTest (line 41) | public class CacheTest { method testMapperWithStartPage (line 46) | @Test method testThreads (line 79) | @Test class CacheThread (line 105) | private class CacheThread implements Runnable { method CacheThread (line 106) | private CacheThread() { method run (line 109) | public void run() { FILE: src/test/java/com/github/pagehelper/test/basic/cache/SecondCacheTest.java class SecondCacheTest (line 38) | public class SecondCacheTest { method test1 (line 40) | @Test method test2 (line 70) | @Test method test3 (line 84) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/count/TestGroupBy.java class TestGroupBy (line 38) | public class TestGroupBy { method testGroupBy (line 40) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/count/TestOrderBy.java class TestOrderBy (line 23) | public class TestOrderBy { method testOrderByWithParameters (line 31) | @Test method testOrderByWithoutParameters (line 52) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/count/TestSelectItems.java class TestSelectItems (line 40) | public class TestSelectItems { method testSelectColumns (line 45) | @Test method testSelectColumn2 (line 77) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/dynamic/CacheTest.java class CacheTest (line 43) | public class CacheTest { method testThreads (line 48) | @Test class CacheThread (line 74) | private class CacheThread implements Runnable { method CacheThread (line 75) | private CacheThread() { method run (line 78) | public void run() { FILE: src/test/java/com/github/pagehelper/test/basic/dynamic/TestDynamicChoose.java class TestDynamicChoose (line 39) | public class TestDynamicChoose { method testMapperWithStartPage (line 44) | @Test method testMapperWithStartPage_OrderBy (line 70) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/dynamic/TestDynamicForeach.java class TestDynamicForeach (line 40) | public class TestDynamicForeach { method testMapperWithStartPage (line 45) | @Test method testMapperWithStartPage2 (line 67) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/dynamic/TestDynamicIf.java class TestDynamicIf (line 41) | public class TestDynamicIf { method testCountCache (line 46) | @Test method testCountCache2 (line 72) | @Test method testMapper (line 98) | @SuppressWarnings({"rawtypes", "unchecked"}) FILE: src/test/java/com/github/pagehelper/test/basic/dynamic/TestDynamicIf2.java class TestDynamicIf2 (line 39) | public class TestDynamicIf2 { method testMapperWithStartPage (line 44) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/dynamic/TestDynamicIfOrder.java class TestDynamicIfOrder (line 44) | public class TestDynamicIfOrder { method testMapperWithStartPage (line 49) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/dynamic/TestDynamicIfTwoList.java class TestDynamicIfTwoList (line 41) | public class TestDynamicIfTwoList { method testMapperWithStartPage (line 46) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/dynamic/TestDynamicWhere.java class TestDynamicWhere (line 41) | public class TestDynamicWhere { method testMapperWithStartPage (line 43) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/dynamic/Where.java class Where (line 32) | public class Where { method Where (line 35) | public Where(Map map) { method getMap (line 39) | public Map getMap() { method setMap (line 43) | public void setMap(Map map) { FILE: src/test/java/com/github/pagehelper/test/basic/example/TestExample.java class TestExample (line 41) | public class TestExample { method testNull (line 43) | @Test method testGreaterThan (line 58) | @Test method testInList (line 75) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/parameter/TestParameterArray.java class TestParameterArray (line 39) | public class TestParameterArray { method testMapperWithStartPage (line 44) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/parameter/TestParameterList.java class TestParameterList (line 40) | public class TestParameterList { method testMapperWithStartPage (line 45) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/parameter/TestParameterMap.java class TestParameterMap (line 41) | public class TestParameterMap { method testMapperWithStartPage (line 46) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/parameter/TestParameterNone.java class TestParameterNone (line 39) | public class TestParameterNone { method testMapperWithStartPage (line 44) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/parameter/TestParameterOne.java class TestParameterOne (line 39) | public class TestParameterOne { method testMapperWithStartPage (line 44) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/provider/SqlCache.java class SqlCache (line 27) | public class SqlCache { method set (line 31) | public static void set(String str) { method get (line 35) | public static String get() { method remove (line 39) | public static void remove() { FILE: src/test/java/com/github/pagehelper/test/basic/provider/SqlCacheInterceptor.java class SqlCacheInterceptor (line 37) | @Intercepts({ method intercept (line 43) | @Override method plugin (line 55) | @Override method setProperties (line 60) | @Override FILE: src/test/java/com/github/pagehelper/test/basic/provider/TestBoundSqlInterceptor.java class TestBoundSqlInterceptor (line 33) | public class TestBoundSqlInterceptor implements BoundSqlInterceptor { method boundSql (line 36) | @Override FILE: src/test/java/com/github/pagehelper/test/basic/provider/TestProvider.java class TestProvider (line 41) | public class TestProvider { method testSelectSimple (line 43) | @Test method testProvider (line 58) | @Test method testUserProvider (line 80) | @Test method testUserSelect (line 102) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/provider/TestProviderInteceptor.java class TestProviderInteceptor (line 42) | public class TestProviderInteceptor { method testInterceptor (line 44) | @Test method testConcurrentExecution (line 74) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/sql/TestExists.java class TestExists (line 39) | public class TestExists { method testExists (line 44) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/sql/TestLeftjoin.java class TestLeftjoin (line 39) | public class TestLeftjoin { method testLeftjoin (line 44) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/sql/TestUnion.java class TestUnion (line 39) | public class TestUnion { method testUnion (line 44) | @Test FILE: src/test/java/com/github/pagehelper/test/basic/sql/TestWith.java class TestWith (line 40) | public class TestWith { method testUnion (line 45) | @Test FILE: src/test/java/com/github/pagehelper/test/features/autodialect/AutoDialectTest.java class AutoDialectTest (line 40) | public class AutoDialectTest { method test (line 42) | @Test FILE: src/test/java/com/github/pagehelper/test/features/autodialect/DataSourceNegotiationAutoDialectTest.java class DataSourceNegotiationAutoDialectTest (line 41) | public class DataSourceNegotiationAutoDialectTest { method getHikari (line 49) | private HikariDataSource getHikari() { method getDriud (line 57) | private DruidDataSource getDriud() { method getTomcatJdbc (line 65) | private org.apache.tomcat.jdbc.pool.DataSource getTomcatJdbc() { method getC3P0 (line 73) | private ComboPooledDataSource getC3P0() { method getDbcp (line 81) | private BasicDataSource getDbcp() { method getDefault (line 89) | private UnpooledDataSource getDefault() { method testNegotiation (line 97) | @Test method testDruid (line 133) | @Test FILE: src/test/java/com/github/pagehelper/test/features/autodialect/SimpleAutoDialect.java class SimpleAutoDialect (line 39) | public class SimpleAutoDialect implements AutoDialect { method extractDialectKey (line 41) | @Override method extractDialect (line 50) | @Override FILE: src/test/java/com/github/pagehelper/test/features/dialectclass/UsingDialectClassTest.java class UsingDialectClassTest (line 47) | public class UsingDialectClassTest { method test (line 56) | @Test class Test1Dialect (line 133) | public static class Test1Dialect extends AbstractHelperDialect { method processPageParameter (line 134) | @Override method getPageSql (line 139) | @Override class Test2Dialect (line 145) | public static class Test2Dialect extends AbstractHelperDialect { method processPageParameter (line 146) | @Override method getPageSql (line 151) | @Override FILE: src/test/java/com/github/pagehelper/test/namespace/BasicTest.java class BasicTest (line 41) | public class BasicTest { method testNamespace1 (line 43) | @Test method testNamespace3 (line 62) | @Test method testNamespace2 (line 91) | @Test FILE: src/test/java/com/github/pagehelper/test/pagesize/PageSizeLessThenOrEqualZeroTest.java class PageSizeLessThenOrEqualZeroTest (line 40) | public class PageSizeLessThenOrEqualZeroTest { method testWithStartPage (line 45) | @Test method testWithRowbounds (line 71) | @Test FILE: src/test/java/com/github/pagehelper/test/pagesize/PageSizeZeroTest.java class PageSizeZeroTest (line 43) | public class PageSizeZeroTest { method testWithStartPage (line 48) | @Test method testWithRowbounds (line 74) | @Test FILE: src/test/java/com/github/pagehelper/test/reasonable/PageTest.java class PageTest (line 39) | public class PageTest { method testMapperWithStartPage (line 43) | @Test method testMapperWithStartPageAndReasonableFalse (line 72) | @Test method testMapperWithStartPageAndReasonableTrue (line 107) | @Test method testMapperWithStartPageAndPageSizeZeroFalse (line 142) | @Test method testMapperWithStartPageAndPageSizeZeroTrue (line 169) | @Test FILE: src/test/java/com/github/pagehelper/test/rowbounds/RowBoundsTest.java class RowBoundsTest (line 43) | public class RowBoundsTest { method testMapperWithRowBounds (line 52) | @Test method testNamespaceWithRowBounds (line 96) | @Test method testNamespaceWithRowBounds2 (line 130) | @Test method testNamespaceWithRowBounds3 (line 156) | @Test method testWithRowboundsAndCountTrue (line 197) | @Test class IdBean (line 219) | class IdBean { method getId (line 222) | public Integer getId() { method setId (line 226) | public void setId(Integer id) { FILE: src/test/java/com/github/pagehelper/util/MybatisAutoDialectHelper.java class MybatisAutoDialectHelper (line 42) | public class MybatisAutoDialectHelper { method getSqlSession (line 81) | public static SqlSession getSqlSession() { FILE: src/test/java/com/github/pagehelper/util/MybatisHelper.java class MybatisHelper (line 45) | public class MybatisHelper { method getJdbcUrl (line 79) | @Override method getSqlSession (line 91) | public static SqlSession getSqlSession() { FILE: src/test/java/com/github/pagehelper/util/MybatisInterceptorHelper.java class MybatisInterceptorHelper (line 42) | public class MybatisInterceptorHelper { method getSqlSession (line 81) | public static SqlSession getSqlSession() { FILE: src/test/java/com/github/pagehelper/util/MybatisPageSizeZeroHelper.java class MybatisPageSizeZeroHelper (line 42) | public class MybatisPageSizeZeroHelper { method getSqlSession (line 81) | public static SqlSession getSqlSession() { FILE: src/test/java/com/github/pagehelper/util/MybatisReasonableHelper.java class MybatisReasonableHelper (line 42) | public class MybatisReasonableHelper { method getSqlSession (line 81) | public static SqlSession getSqlSession() { FILE: src/test/java/com/github/pagehelper/util/MybatisRowBoundsHelper.java class MybatisRowBoundsHelper (line 42) | public class MybatisRowBoundsHelper { method getSqlSession (line 81) | public static SqlSession getSqlSession() { FILE: src/test/java/com/github/pagehelper/util/Ognl.java class Ognl (line 28) | public class Ognl { method isNotNull (line 29) | public static boolean isNotNull(Object obj) { FILE: src/test/java/com/github/pagehelper/util/SqlSafeUtilTest.java class SqlSafeUtilTest (line 31) | public class SqlSafeUtilTest { method check (line 33) | @Test method assertSql (line 56) | private void assertSql(boolean injection, String sql) { FILE: src/test/java/com/github/pagehelper/util/TestUtil.java class TestUtil (line 34) | public class TestUtil { method getXmlPath (line 37) | public synchronized static String getXmlPath() throws IOException { FILE: src/test/resources/cirrodata/cirrodata.sql type `user` (line 33) | CREATE TABLE `user` FILE: src/test/resources/derby/derby.sql type user (line 27) | create table user FILE: src/test/resources/h2/h2.sql type user (line 27) | create table user FILE: src/test/resources/hsqldb/hsqldb.sql type user (line 27) | create table user FILE: src/test/resources/mariadb/mariadb.sql type `user` (line 35) | CREATE TABLE `user` FILE: src/test/resources/mysql/mysql.sql type `user` (line 32) | CREATE TABLE `user` FILE: src/test/resources/oracle/oracle.sql type user (line 35) | create table user FILE: src/test/resources/postgresql/postgresql.sql type user (line 32) | CREATE TABLE user FILE: src/test/resources/rowbounds/hsqldb.sql type user (line 27) | create table user FILE: src/test/resources/xugu/mysql.sql type `user` (line 6) | CREATE TABLE `user` (