SYMBOL INDEX (2724 symbols across 228 files) FILE: DaoCore/src/main/java/org/greenrobot/greendao/AbstractDao.java class AbstractDao (line 62) | public abstract class AbstractDao { method AbstractDao (line 76) | public AbstractDao(DaoConfig config) { method AbstractDao (line 80) | @SuppressWarnings("unchecked") method getSession (line 96) | public AbstractDaoSession getSession() { method getStatements (line 100) | TableStatements getStatements() { method getTablename (line 104) | public String getTablename() { method getProperties (line 108) | public Property[] getProperties() { method getPkProperty (line 112) | public Property getPkProperty() { method getAllColumns (line 116) | public String[] getAllColumns() { method getPkColumns (line 120) | public String[] getPkColumns() { method getNonPkColumns (line 124) | public String[] getNonPkColumns() { method load (line 134) | public T load(K key) { method loadByRowId (line 151) | public T loadByRowId(long rowId) { method loadUniqueAndCloseCursor (line 157) | protected T loadUniqueAndCloseCursor(Cursor cursor) { method loadUnique (line 165) | protected T loadUnique(Cursor cursor) { method loadAll (line 176) | public List loadAll() { method detach (line 182) | public boolean detach(T entity) { method detachAll (line 195) | public void detachAll() { method loadAllAndCloseCursor (line 201) | protected List loadAllAndCloseCursor(Cursor cursor) { method insertInTx (line 214) | public void insertInTx(Iterable entities) { method insertInTx (line 223) | public void insertInTx(T... entities) { method insertInTx (line 235) | public void insertInTx(Iterable entities, boolean setPrimaryKey) { method insertOrReplaceInTx (line 248) | public void insertOrReplaceInTx(Iterable entities, boolean setPrima... method insertOrReplaceInTx (line 258) | public void insertOrReplaceInTx(Iterable entities) { method insertOrReplaceInTx (line 267) | public void insertOrReplaceInTx(T... entities) { method executeInsertInTx (line 271) | private void executeInsertInTx(DatabaseStatement stmt, Iterable ent... method insert (line 318) | public long insert(T entity) { method insertWithoutSettingPk (line 330) | public long insertWithoutSettingPk(T entity) { method insertOrReplace (line 339) | public long insertOrReplace(T entity) { method executeInsert (line 343) | private long executeInsert(T entity, DatabaseStatement stmt, boolean s... method insertInsideTx (line 363) | private long insertInsideTx(T entity, DatabaseStatement stmt) { method updateKeyAfterInsertAndAttach (line 376) | protected void updateKeyAfterInsertAndAttach(T entity, long rowId, boo... method save (line 393) | public void save(T entity) { method saveInTx (line 406) | public void saveInTx(T... entities) { method saveInTx (line 415) | public void saveInTx(Iterable entities) { method loadAllFromCursor (line 452) | protected List loadAllFromCursor(Cursor cursor) { method loadAllUnlockOnWindowBounds (line 495) | private void loadAllUnlockOnWindowBounds(Cursor cursor, CursorWindow w... method moveToNextUnlocked (line 518) | private CursorWindow moveToNextUnlocked(Cursor cursor) { method loadCurrent (line 532) | final protected T loadCurrent(Cursor cursor, int offset, boolean lock) { method loadCurrentOther (line 585) | final protected O loadCurrentOther(AbstractDao dao, Cursor c... method queryRaw (line 590) | public List queryRaw(String where, String... selectionArg) { method queryRawCreate (line 599) | public Query queryRawCreate(String where, Object... selectionArg) { method queryRawCreateListArgs (line 608) | public Query queryRawCreateListArgs(String where, Collection entities, Iterable keys) { method deleteInTx (line 714) | public void deleteInTx(Iterable entities) { method deleteInTx (line 723) | public void deleteInTx(T... entities) { method deleteByKeyInTx (line 732) | public void deleteByKeyInTx(Iterable keys) { method deleteByKeyInTx (line 741) | public void deleteByKeyInTx(K... keys) { method refresh (line 746) | public void refresh(T entity) { method update (line 767) | public void update(T entity) { method queryBuilder (line 792) | public QueryBuilder queryBuilder() { method updateInsideSynchronized (line 796) | protected void updateInsideSynchronized(T entity, DatabaseStatement st... method updateInsideSynchronized (line 812) | protected void updateInsideSynchronized(T entity, SQLiteStatement stmt... method attachEntity (line 834) | protected final void attachEntity(K key, T entity, boolean lock) { method attachEntity (line 851) | protected void attachEntity(T entity) { method updateInTx (line 859) | public void updateInTx(Iterable entities) { method updateInTx (line 911) | public void updateInTx(T... entities) { method assertSinglePk (line 915) | protected void assertSinglePk() { method count (line 921) | public long count() { method getKeyVerified (line 926) | protected K getKeyVerified(T entity) { method rxPlain (line 945) | @Experimental method rx (line 959) | @Experimental method getDatabase (line 968) | public Database getDatabase() { method readEntity (line 973) | abstract protected T readEntity(Cursor cursor, int offset); method readKey (line 977) | abstract protected K readKey(Cursor cursor, int offset); method readEntity (line 980) | abstract protected void readEntity(Cursor cursor, T entity, int offset); method bindValues (line 983) | abstract protected void bindValues(DatabaseStatement stmt, T entity); method bindValues (line 989) | protected abstract void bindValues(SQLiteStatement stmt, T entity); method updateKeyAfterInsert (line 995) | abstract protected K updateKeyAfterInsert(T entity, long rowId); method getKey (line 1001) | abstract protected K getKey(T entity); method hasKey (line 1007) | abstract protected boolean hasKey(T entity); method isEntityUpdateable (line 1010) | abstract protected boolean isEntityUpdateable(); FILE: DaoCore/src/main/java/org/greenrobot/greendao/AbstractDaoMaster.java class AbstractDaoMaster (line 31) | public abstract class AbstractDaoMaster { method AbstractDaoMaster (line 36) | public AbstractDaoMaster(Database db, int schemaVersion) { method registerDaoClass (line 43) | protected void registerDaoClass(Class> dao... method getSchemaVersion (line 48) | public int getSchemaVersion() { method getDatabase (line 53) | public Database getDatabase() { method newSession (line 57) | public abstract AbstractDaoSession newSession(); method newSession (line 59) | public abstract AbstractDaoSession newSession(IdentityScopeType type); FILE: DaoCore/src/main/java/org/greenrobot/greendao/AbstractDaoSession.java class AbstractDaoSession (line 52) | public class AbstractDaoSession { method AbstractDaoSession (line 59) | public AbstractDaoSession(Database db) { method registerDao (line 64) | protected void registerDao(Class entityClass, AbstractDao... method insert (line 69) | public long insert(T entity) { method insertOrReplace (line 76) | public long insertOrReplace(T entity) { method refresh (line 83) | public void refresh(T entity) { method update (line 90) | public void update(T entity) { method delete (line 97) | public void delete(T entity) { method deleteAll (line 104) | public void deleteAll(Class entityClass) { method load (line 111) | public T load(Class entityClass, K key) { method loadAll (line 118) | public List loadAll(Class entityClass) { method queryRaw (line 125) | public List queryRaw(Class entityClass, String where, Str... method queryBuilder (line 132) | public QueryBuilder queryBuilder(Class entityClass) { method getDao (line 138) | public AbstractDao getDao(Class entityClass) { method runInTx (line 149) | public void runInTx(Runnable runnable) { method callInTx (line 163) | public V callInTx(Callable callable) throws Exception { method callInTxNoException (line 178) | public V callInTxNoException(Callable callable) { method getDatabase (line 195) | public Database getDatabase() { method getAllDaos (line 200) | public Collection> getAllDaos() { method startAsyncSession (line 207) | public AsyncSession startAsyncSession() { method rxTxPlain (line 217) | @Experimental method rxTx (line 231) | @Experimental FILE: DaoCore/src/main/java/org/greenrobot/greendao/DaoException.java class DaoException (line 26) | public class DaoException extends SQLException { method DaoException (line 30) | public DaoException() { method DaoException (line 33) | public DaoException(String error) { method DaoException (line 37) | public DaoException(String error, Throwable cause) { method DaoException (line 42) | public DaoException(Throwable th) { method safeInitCause (line 46) | protected void safeInitCause(Throwable cause) { FILE: DaoCore/src/main/java/org/greenrobot/greendao/DaoLog.java class DaoLog (line 27) | public class DaoLog { method isLoggable (line 37) | public static boolean isLoggable(int level) { method getStackTraceString (line 41) | public static String getStackTraceString(Throwable th) { method println (line 45) | public static int println(int level, String msg) { method v (line 49) | public static int v(String msg) { method v (line 53) | public static int v(String msg, Throwable th) { method d (line 57) | public static int d(String msg) { method d (line 61) | public static int d(String msg, Throwable th) { method i (line 65) | public static int i(String msg) { method i (line 69) | public static int i(String msg, Throwable th) { method w (line 73) | public static int w(String msg) { method w (line 77) | public static int w(String msg, Throwable th) { method w (line 81) | public static int w(Throwable th) { method e (line 85) | public static int e(String msg) { method e (line 89) | public static int e(String msg, Throwable th) { FILE: DaoCore/src/main/java/org/greenrobot/greendao/DbUtils.java class DbUtils (line 33) | public class DbUtils { method vacuum (line 35) | public static void vacuum(Database db) { method executeSqlScript (line 44) | public static int executeSqlScript(Context context, Database db, Strin... method executeSqlScript (line 56) | public static int executeSqlScript(Context context, Database db, Strin... method executeSqlStatementsInTx (line 71) | public static int executeSqlStatementsInTx(Database db, String[] state... method executeSqlStatements (line 82) | public static int executeSqlStatements(Database db, String[] statement... method copyAllBytes (line 99) | public static int copyAllBytes(InputStream in, OutputStream out) throw... method readAllBytes (line 113) | public static byte[] readAllBytes(InputStream in) throws IOException { method readAsset (line 119) | public static byte[] readAsset(Context context, String filename) throw... method logTableDump (line 128) | public static void logTableDump(SQLiteDatabase db, String tablename) { FILE: DaoCore/src/main/java/org/greenrobot/greendao/InternalQueryDaoAccess.java class InternalQueryDaoAccess (line 25) | public final class InternalQueryDaoAccess { method InternalQueryDaoAccess (line 28) | public InternalQueryDaoAccess(AbstractDao abstractDao) { method loadCurrent (line 32) | public T loadCurrent(Cursor cursor, int offset, boolean lock) { method loadAllAndCloseCursor (line 36) | public List loadAllAndCloseCursor(Cursor cursor) { method loadUniqueAndCloseCursor (line 40) | public T loadUniqueAndCloseCursor(Cursor cursor) { method getStatements (line 44) | public TableStatements getStatements() { method getStatements (line 48) | public static TableStatements getStatements(AbstractDao da... FILE: DaoCore/src/main/java/org/greenrobot/greendao/InternalUnitTestDaoAccess.java class InternalUnitTestDaoAccess (line 27) | public class InternalUnitTestDaoAccess { method InternalUnitTestDaoAccess (line 30) | public InternalUnitTestDaoAccess(Database db, Class>... method getKey (line 38) | public K getKey(T entity) { method getProperties (line 42) | public Property[] getProperties() { method isEntityUpdateable (line 46) | public boolean isEntityUpdateable() { method readEntity (line 50) | public T readEntity(Cursor cursor, int offset) { method readKey (line 54) | public K readKey(Cursor cursor, int offset) { method getDao (line 58) | public AbstractDao getDao() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/Property.java class Property (line 30) | public class Property { method Property (line 37) | public Property(int ordinal, Class type, String name, boolean prima... method eq (line 46) | public WhereCondition eq(Object value) { method notEq (line 51) | public WhereCondition notEq(Object value) { method like (line 56) | public WhereCondition like(String value) { method between (line 61) | public WhereCondition between(Object value1, Object value2) { method in (line 67) | public WhereCondition in(Object... inValues) { method in (line 74) | public WhereCondition in(Collection inValues) { method notIn (line 79) | public WhereCondition notIn(Object... notInValues) { method notIn (line 86) | public WhereCondition notIn(Collection notInValues) { method gt (line 91) | public WhereCondition gt(Object value) { method lt (line 96) | public WhereCondition lt(Object value) { method ge (line 101) | public WhereCondition ge(Object value) { method le (line 106) | public WhereCondition le(Object value) { method isNull (line 111) | public WhereCondition isNull() { method isNotNull (line 116) | public WhereCondition isNotNull() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/async/AsyncDaoException.java class AsyncDaoException (line 26) | public class AsyncDaoException extends DaoException { method AsyncDaoException (line 32) | public AsyncDaoException(AsyncOperation failedOperation, Throwable cau... method getFailedOperation (line 37) | public AsyncOperation getFailedOperation() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/async/AsyncOperation.java class AsyncOperation (line 30) | public class AsyncOperation { type OperationType (line 31) | public enum OperationType { method AsyncOperation (line 66) | @SuppressWarnings("unchecked") method getThrowable (line 77) | public Throwable getThrowable() { method setThrowable (line 81) | public void setThrowable(Throwable throwable) { method getType (line 85) | public OperationType getType() { method getParameter (line 89) | public Object getParameter() { method getResult (line 100) | public synchronized Object getResult() { method isMergeTx (line 111) | public boolean isMergeTx() { method getDatabase (line 115) | Database getDatabase() { method isMergeableWith (line 123) | boolean isMergeableWith(AsyncOperation other) { method getTimeStarted (line 127) | public long getTimeStarted() { method getTimeCompleted (line 131) | public long getTimeCompleted() { method getDuration (line 135) | public long getDuration() { method isFailed (line 143) | public boolean isFailed() { method isCompleted (line 147) | public boolean isCompleted() { method waitForCompletion (line 157) | public synchronized Object waitForCompletion() { method waitForCompletion (line 174) | public synchronized boolean waitForCompletion(int maxMillis) { method setCompleted (line 186) | synchronized void setCompleted() { method isCompletedSucessfully (line 191) | public boolean isCompletedSucessfully() { method getMergedOperationsCount (line 199) | public int getMergedOperationsCount() { method getSequenceNumber (line 207) | public int getSequenceNumber() { method reset (line 212) | void reset() { method getCreatorStacktrace (line 225) | public Exception getCreatorStacktrace() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/async/AsyncOperationExecutor.java class AsyncOperationExecutor (line 34) | class AsyncOperationExecutor implements Runnable, Handler.Callback { method AsyncOperationExecutor (line 51) | AsyncOperationExecutor() { method enqueue (line 57) | public void enqueue(AsyncOperation operation) { method getMaxOperationCountToMerge (line 69) | public int getMaxOperationCountToMerge() { method setMaxOperationCountToMerge (line 73) | public void setMaxOperationCountToMerge(int maxOperationCountToMerge) { method getWaitForMergeMillis (line 77) | public int getWaitForMergeMillis() { method setWaitForMergeMillis (line 81) | public void setWaitForMergeMillis(int waitForMergeMillis) { method getListener (line 85) | public AsyncOperationListener getListener() { method setListener (line 89) | public void setListener(AsyncOperationListener listener) { method getListenerMainThread (line 93) | public AsyncOperationListener getListenerMainThread() { method setListenerMainThread (line 97) | public void setListenerMainThread(AsyncOperationListener listenerMainT... method isCompleted (line 101) | public synchronized boolean isCompleted() { method waitForCompletion (line 109) | public synchronized void waitForCompletion() { method waitForCompletion (line 125) | public synchronized boolean waitForCompletion(int maxMillis) { method run (line 136) | @Override method mergeTxAndExecute (line 179) | private void mergeTxAndExecute(AsyncOperation operation1, AsyncOperati... method handleOperationCompleted (line 236) | private void handleOperationCompleted(AsyncOperation operation) { method executeOperationAndPostCompleted (line 258) | private void executeOperationAndPostCompleted(AsyncOperation operation) { method executeOperation (line 263) | @SuppressWarnings({"unchecked", "rawtypes"}) method executeTransactionRunnable (line 344) | private void executeTransactionRunnable(AsyncOperation operation) { method executeTransactionCallable (line 355) | @SuppressWarnings("unchecked") method handleMessage (line 367) | @Override FILE: DaoCore/src/main/java/org/greenrobot/greendao/async/AsyncOperationListener.java type AsyncOperationListener (line 19) | public interface AsyncOperationListener { method onAsyncOperationCompleted (line 24) | void onAsyncOperationCompleted(AsyncOperation operation); FILE: DaoCore/src/main/java/org/greenrobot/greendao/async/AsyncSession.java class AsyncSession (line 39) | public class AsyncSession { method AsyncSession (line 44) | public AsyncSession(AbstractDaoSession daoSession) { method getMaxOperationCountToMerge (line 49) | public int getMaxOperationCountToMerge() { method setMaxOperationCountToMerge (line 53) | public void setMaxOperationCountToMerge(int maxOperationCountToMerge) { method getWaitForMergeMillis (line 57) | public int getWaitForMergeMillis() { method setWaitForMergeMillis (line 61) | public void setWaitForMergeMillis(int waitForMergeMillis) { method getListener (line 65) | public AsyncOperationListener getListener() { method setListener (line 69) | public void setListener(AsyncOperationListener listener) { method getListenerMainThread (line 73) | public AsyncOperationListener getListenerMainThread() { method setListenerMainThread (line 77) | public void setListenerMainThread(AsyncOperationListener listenerMainT... method isCompleted (line 81) | public boolean isCompleted() { method waitForCompletion (line 89) | public void waitForCompletion() { method waitForCompletion (line 99) | public boolean waitForCompletion(int maxMillis) { method insert (line 104) | public AsyncOperation insert(Object entity) { method insert (line 109) | public AsyncOperation insert(Object entity, int flags) { method insertInTx (line 114) | public AsyncOperation insertInTx(Class entityClass, E... entiti... method insertInTx (line 119) | public AsyncOperation insertInTx(Class entityClass, int flags, ... method insertInTx (line 124) | public AsyncOperation insertInTx(Class entityClass, Iterable... method insertInTx (line 129) | public AsyncOperation insertInTx(Class entityClass, Iterable... method insertOrReplace (line 134) | public AsyncOperation insertOrReplace(Object entity) { method insertOrReplace (line 139) | public AsyncOperation insertOrReplace(Object entity, int flags) { method insertOrReplaceInTx (line 144) | public AsyncOperation insertOrReplaceInTx(Class entityClass, E.... method insertOrReplaceInTx (line 149) | public AsyncOperation insertOrReplaceInTx(Class entityClass, in... method insertOrReplaceInTx (line 154) | public AsyncOperation insertOrReplaceInTx(Class entityClass, It... method insertOrReplaceInTx (line 159) | public AsyncOperation insertOrReplaceInTx(Class entityClass, It... method update (line 164) | public AsyncOperation update(Object entity) { method update (line 169) | public AsyncOperation update(Object entity, int flags) { method updateInTx (line 174) | public AsyncOperation updateInTx(Class entityClass, E... entiti... method updateInTx (line 179) | public AsyncOperation updateInTx(Class entityClass, int flags, ... method updateInTx (line 184) | public AsyncOperation updateInTx(Class entityClass, Iterable... method updateInTx (line 189) | public AsyncOperation updateInTx(Class entityClass, Iterable... method delete (line 194) | public AsyncOperation delete(Object entity) { method delete (line 199) | public AsyncOperation delete(Object entity, int flags) { method deleteByKey (line 204) | public AsyncOperation deleteByKey(Object key) { method deleteByKey (line 209) | public AsyncOperation deleteByKey(Object key, int flags) { method deleteInTx (line 214) | public AsyncOperation deleteInTx(Class entityClass, E... entiti... method deleteInTx (line 219) | public AsyncOperation deleteInTx(Class entityClass, int flags, ... method deleteInTx (line 224) | public AsyncOperation deleteInTx(Class entityClass, Iterable... method deleteInTx (line 229) | public AsyncOperation deleteInTx(Class entityClass, Iterable... method deleteAll (line 234) | public AsyncOperation deleteAll(Class entityClass) { method deleteAll (line 239) | public AsyncOperation deleteAll(Class entityClass, int flags) { method runInTx (line 244) | public AsyncOperation runInTx(Runnable runnable) { method runInTx (line 249) | public AsyncOperation runInTx(Runnable runnable, int flags) { method callInTx (line 254) | public AsyncOperation callInTx(Callable callable) { method callInTx (line 259) | public AsyncOperation callInTx(Callable callable, int flags) { method queryList (line 264) | public AsyncOperation queryList(Query query) { method queryList (line 269) | public AsyncOperation queryList(Query query, int flags) { method queryUnique (line 274) | public AsyncOperation queryUnique(Query query) { method queryUnique (line 279) | public AsyncOperation queryUnique(Query query, int flags) { method load (line 284) | public AsyncOperation load(Class entityClass, Object key) { method load (line 289) | public AsyncOperation load(Class entityClass, Object key, int flags) { method loadAll (line 294) | public AsyncOperation loadAll(Class entityClass) { method loadAll (line 299) | public AsyncOperation loadAll(Class entityClass, int flags) { method count (line 304) | public AsyncOperation count(Class entityClass) { method count (line 309) | public AsyncOperation count(Class entityClass, int flags) { method refresh (line 314) | public AsyncOperation refresh(Object entity) { method refresh (line 319) | public AsyncOperation refresh(Object entity, int flags) { method enqueueDatabaseOperation (line 323) | private AsyncOperation enqueueDatabaseOperation(OperationType type, Ob... method enqueueEntityOperation (line 330) | private AsyncOperation enqueueEntityOperation(OperationType type, Obje... method enqueEntityOperation (line 334) | private AsyncOperation enqueEntityOperation(OperationType type, Cl... method getSessionFlags (line 342) | public int getSessionFlags() { method setSessionFlags (line 347) | public void setSessionFlags(int sessionFlags) { FILE: DaoCore/src/main/java/org/greenrobot/greendao/database/Database.java type Database (line 24) | public interface Database { method rawQuery (line 25) | Cursor rawQuery(String sql, String[] selectionArgs); method execSQL (line 27) | void execSQL(String sql) throws SQLException; method beginTransaction (line 29) | void beginTransaction(); method endTransaction (line 31) | void endTransaction(); method inTransaction (line 33) | boolean inTransaction(); method setTransactionSuccessful (line 35) | void setTransactionSuccessful(); method execSQL (line 37) | void execSQL(String sql, Object[] bindArgs) throws SQLException; method compileStatement (line 39) | DatabaseStatement compileStatement(String sql); method isDbLockedByCurrentThread (line 41) | boolean isDbLockedByCurrentThread(); method isOpen (line 43) | boolean isOpen(); method close (line 45) | void close(); method getRawDatabase (line 47) | Object getRawDatabase(); FILE: DaoCore/src/main/java/org/greenrobot/greendao/database/DatabaseOpenHelper.java class DatabaseOpenHelper (line 33) | public abstract class DatabaseOpenHelper extends SQLiteOpenHelper { method DatabaseOpenHelper (line 42) | public DatabaseOpenHelper(Context context, String name, int version) { method DatabaseOpenHelper (line 46) | public DatabaseOpenHelper(Context context, String name, CursorFactory ... method DatabaseOpenHelper (line 53) | @SuppressLint("NewApi") method setLoadSQLCipherNativeLibs (line 64) | public void setLoadSQLCipherNativeLibs(boolean loadSQLCipherNativeLibs) { method getWritableDb (line 72) | public Database getWritableDb() { method getReadableDb (line 80) | public Database getReadableDb() { method wrap (line 84) | protected Database wrap(SQLiteDatabase sqLiteDatabase) { method onCreate (line 91) | @Override method onCreate (line 99) | public void onCreate(Database db) { method onUpgrade (line 106) | @Override method onUpgrade (line 114) | public void onUpgrade(Database db, int oldVersion, int newVersion) { method onOpen (line 121) | @Override method onOpen (line 129) | public void onOpen(Database db) { type EncryptedHelper (line 133) | interface EncryptedHelper { method getEncryptedReadableDb (line 134) | Database getEncryptedReadableDb(String password); method getEncryptedReadableDb (line 135) | Database getEncryptedReadableDb(char[] password); method getEncryptedWritableDb (line 136) | Database getEncryptedWritableDb(String password); method getEncryptedWritableDb (line 137) | Database getEncryptedWritableDb(char[] password); method checkEncryptedHelper (line 140) | private EncryptedHelper checkEncryptedHelper() { method getEncryptedWritableDb (line 173) | public Database getEncryptedWritableDb(String password) { method getEncryptedWritableDb (line 184) | public Database getEncryptedWritableDb(char[] password) { method getEncryptedReadableDb (line 195) | public Database getEncryptedReadableDb(String password) { method getEncryptedReadableDb (line 206) | public Database getEncryptedReadableDb(char[] password) { FILE: DaoCore/src/main/java/org/greenrobot/greendao/database/DatabaseStatement.java type DatabaseStatement (line 19) | public interface DatabaseStatement { method execute (line 20) | void execute(); method simpleQueryForLong (line 22) | long simpleQueryForLong(); method bindNull (line 24) | void bindNull(int index); method executeInsert (line 26) | long executeInsert(); method bindString (line 28) | void bindString(int index, String value); method bindBlob (line 30) | void bindBlob(int index, byte[] value); method bindLong (line 32) | void bindLong(int index, long value); method clearBindings (line 34) | void clearBindings(); method bindDouble (line 36) | void bindDouble(int index, double value); method close (line 38) | void close(); method getRawStatement (line 40) | Object getRawStatement(); FILE: DaoCore/src/main/java/org/greenrobot/greendao/database/EncryptedDatabase.java class EncryptedDatabase (line 23) | public class EncryptedDatabase implements Database { method EncryptedDatabase (line 26) | public EncryptedDatabase(SQLiteDatabase delegate) { method rawQuery (line 30) | @Override method execSQL (line 35) | @Override method beginTransaction (line 40) | @Override method endTransaction (line 45) | @Override method inTransaction (line 50) | @Override method setTransactionSuccessful (line 55) | @Override method execSQL (line 60) | @Override method compileStatement (line 65) | @Override method isDbLockedByCurrentThread (line 70) | @Override method isOpen (line 75) | @Override method close (line 80) | @Override method getRawDatabase (line 85) | @Override method getSQLiteDatabase (line 90) | public SQLiteDatabase getSQLiteDatabase() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/database/EncryptedDatabaseStatement.java class EncryptedDatabaseStatement (line 22) | public class EncryptedDatabaseStatement implements DatabaseStatement { method EncryptedDatabaseStatement (line 25) | public EncryptedDatabaseStatement(SQLiteStatement delegate) { method execute (line 29) | @Override method simpleQueryForLong (line 34) | @Override method bindNull (line 39) | @Override method executeInsert (line 44) | @Override method bindString (line 49) | @Override method bindBlob (line 54) | @Override method bindLong (line 59) | @Override method clearBindings (line 64) | @Override method bindDouble (line 69) | @Override method close (line 74) | @Override method getRawStatement (line 79) | @Override FILE: DaoCore/src/main/java/org/greenrobot/greendao/database/SqlCipherEncryptedHelper.java class SqlCipherEncryptedHelper (line 8) | class SqlCipherEncryptedHelper extends SQLiteOpenHelper implements Datab... method SqlCipherEncryptedHelper (line 12) | public SqlCipherEncryptedHelper(DatabaseOpenHelper delegate, Context c... method wrap (line 20) | private Database wrap(SQLiteDatabase sqLiteDatabase) { method onCreate (line 24) | @Override method onUpgrade (line 29) | @Override method onOpen (line 34) | @Override method getEncryptedReadableDb (line 39) | @Override method getEncryptedReadableDb (line 44) | @Override method getEncryptedWritableDb (line 49) | @Override method getEncryptedWritableDb (line 54) | @Override FILE: DaoCore/src/main/java/org/greenrobot/greendao/database/StandardDatabase.java class StandardDatabase (line 23) | public class StandardDatabase implements Database { method StandardDatabase (line 26) | public StandardDatabase(SQLiteDatabase delegate) { method rawQuery (line 30) | @Override method execSQL (line 35) | @Override method beginTransaction (line 40) | @Override method endTransaction (line 45) | @Override method inTransaction (line 50) | @Override method setTransactionSuccessful (line 55) | @Override method execSQL (line 60) | @Override method compileStatement (line 65) | @Override method isDbLockedByCurrentThread (line 70) | @Override method isOpen (line 75) | @Override method close (line 80) | @Override method getRawDatabase (line 85) | @Override method getSQLiteDatabase (line 90) | public SQLiteDatabase getSQLiteDatabase() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/database/StandardDatabaseStatement.java class StandardDatabaseStatement (line 21) | public class StandardDatabaseStatement implements DatabaseStatement { method StandardDatabaseStatement (line 24) | public StandardDatabaseStatement(SQLiteStatement delegate) { method execute (line 28) | @Override method simpleQueryForLong (line 33) | @Override method bindNull (line 38) | @Override method executeInsert (line 43) | @Override method bindString (line 48) | @Override method bindBlob (line 53) | @Override method bindLong (line 58) | @Override method clearBindings (line 63) | @Override method bindDouble (line 68) | @Override method close (line 73) | @Override method getRawStatement (line 78) | @Override FILE: DaoCore/src/main/java/org/greenrobot/greendao/identityscope/IdentityScope.java type IdentityScope (line 29) | public interface IdentityScope { method get (line 31) | T get(K key); method put (line 33) | void put(K key, T entity); method getNoLock (line 35) | T getNoLock(K key); method putNoLock (line 37) | void putNoLock(K key, T entity); method detach (line 39) | boolean detach(K key, T entity); method remove (line 41) | void remove(K key); method remove (line 43) | void remove(Iterable key); method clear (line 45) | void clear(); method lock (line 47) | void lock(); method unlock (line 49) | void unlock(); method reserveRoom (line 51) | void reserveRoom(int count); FILE: DaoCore/src/main/java/org/greenrobot/greendao/identityscope/IdentityScopeLong.java class IdentityScopeLong (line 31) | public class IdentityScopeLong implements IdentityScope { method IdentityScopeLong (line 35) | public IdentityScopeLong() { method get (line 40) | @Override method getNoLock (line 45) | @Override method get2 (line 50) | public T get2(long key) { method get2NoLock (line 65) | public T get2NoLock(long key) { method put (line 74) | @Override method putNoLock (line 79) | @Override method put2 (line 84) | public void put2(long key, T entity) { method put2NoLock (line 93) | public void put2NoLock(long key, T entity) { method detach (line 97) | @Override method remove (line 112) | @Override method remove (line 122) | @Override method clear (line 134) | @Override method lock (line 144) | @Override method unlock (line 149) | @Override method reserveRoom (line 154) | @Override FILE: DaoCore/src/main/java/org/greenrobot/greendao/identityscope/IdentityScopeObject.java class IdentityScopeObject (line 30) | public class IdentityScopeObject implements IdentityScope { method IdentityScopeObject (line 34) | public IdentityScopeObject() { method get (line 39) | @Override method getNoLock (line 55) | @Override method put (line 65) | @Override method putNoLock (line 75) | @Override method detach (line 80) | @Override method remove (line 95) | @Override method remove (line 105) | @Override method clear (line 117) | @Override method lock (line 127) | @Override method unlock (line 132) | @Override method reserveRoom (line 137) | @Override FILE: DaoCore/src/main/java/org/greenrobot/greendao/identityscope/IdentityScopeType.java type IdentityScopeType (line 18) | public enum IdentityScopeType { FILE: DaoCore/src/main/java/org/greenrobot/greendao/internal/DaoConfig.java class DaoConfig (line 36) | public final class DaoConfig implements Cloneable { method DaoConfig (line 53) | public DaoConfig(Database db, Class> daoCl... method reflectProperties (line 98) | private static Property[] reflectProperties(Class getIdentityScope() { method clearIdentityScope (line 151) | public void clearIdentityScope() { method setIdentityScope (line 158) | public void setIdentityScope(IdentityScope identityScope) { method initIdentityScope (line 162) | @SuppressWarnings("rawtypes") FILE: DaoCore/src/main/java/org/greenrobot/greendao/internal/FastCursor.java class FastCursor (line 28) | final public class FastCursor implements Cursor { method FastCursor (line 34) | public FastCursor(CursorWindow window) { method getCount (line 39) | @Override method getPosition (line 44) | @Override method move (line 49) | @Override method moveToPosition (line 54) | @Override method moveToFirst (line 64) | @Override method moveToLast (line 70) | @Override method moveToNext (line 80) | @Override method moveToPrevious (line 90) | @Override method isFirst (line 100) | @Override method isLast (line 105) | @Override method isBeforeFirst (line 110) | @Override method isAfterLast (line 115) | @Override method getColumnIndex (line 120) | @Override method getColumnIndexOrThrow (line 125) | @Override method getColumnName (line 130) | @Override method getColumnNames (line 135) | @Override method getColumnCount (line 140) | @Override method getBlob (line 145) | @Override method getString (line 150) | @Override method copyStringToBuffer (line 155) | @Override method getShort (line 160) | @Override method getInt (line 165) | @Override method getLong (line 170) | @Override method getFloat (line 175) | @Override method getDouble (line 180) | @Override method isNull (line 185) | @SuppressWarnings("deprecation") method deactivate (line 191) | @Override method requery (line 196) | @Override method close (line 201) | @Override method isClosed (line 206) | @Override method registerContentObserver (line 211) | @Override method unregisterContentObserver (line 216) | @Override method registerDataSetObserver (line 221) | @Override method unregisterDataSetObserver (line 226) | @Override method setNotificationUri (line 231) | @Override method getWantsAllOnMoveCalls (line 236) | @Override method getExtras (line 241) | @Override method respond (line 246) | @Override method getType (line 252) | public int getType(int columnIndex) { method getNotificationUri (line 257) | public Uri getNotificationUri() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/internal/LongHashMap.java class LongHashMap (line 30) | public final class LongHashMap { class Entry (line 31) | final static class Entry { method Entry (line 36) | Entry(long key, T value, Entry next) { method LongHashMap (line 48) | public LongHashMap() { method LongHashMap (line 52) | @SuppressWarnings("unchecked") method containsKey (line 59) | public boolean containsKey(long key) { method get (line 70) | public T get(long key) { method put (line 80) | public T put(long key, T value) { method remove (line 98) | public T remove(long key) { method clear (line 119) | public void clear() { method size (line 124) | public int size() { method setCapacity (line 128) | public void setCapacity(int newCapacity) { method reserveRoom (line 150) | public void reserveRoom(int entryCount) { method logStats (line 154) | public void logStats() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/internal/SqlUtils.java class SqlUtils (line 22) | public class SqlUtils { method appendProperty (line 25) | public static StringBuilder appendProperty(StringBuilder builder, Stri... method appendColumn (line 33) | public static StringBuilder appendColumn(StringBuilder builder, String... method appendColumn (line 38) | public static StringBuilder appendColumn(StringBuilder builder, String... method appendColumns (line 43) | public static StringBuilder appendColumns(StringBuilder builder, Strin... method appendColumns (line 54) | public static StringBuilder appendColumns(StringBuilder builder, Strin... method appendPlaceholders (line 65) | public static StringBuilder appendPlaceholders(StringBuilder builder, ... method appendColumnsEqualPlaceholders (line 76) | public static StringBuilder appendColumnsEqualPlaceholders(StringBuild... method appendColumnsEqValue (line 86) | public static StringBuilder appendColumnsEqValue(StringBuilder builder... method createSqlInsert (line 96) | public static String createSqlInsert(String insertInto, String tablena... method createSqlSelect (line 107) | public static String createSqlSelect(String tablename, String tableAli... method createSqlSelectCountStar (line 119) | public static String createSqlSelectCountStar(String tablename, String... method createSqlDelete (line 129) | public static String createSqlDelete(String tablename, String[] column... method createSqlUpdate (line 140) | public static String createSqlUpdate(String tablename, String[] update... method createSqlCount (line 150) | public static String createSqlCount(String tablename) { method escapeBlobArgument (line 154) | public static String escapeBlobArgument(byte[] bytes) { method toHex (line 158) | public static String toHex(byte[] bytes) { FILE: DaoCore/src/main/java/org/greenrobot/greendao/internal/TableStatements.java class TableStatements (line 25) | public class TableStatements { method TableStatements (line 42) | public TableStatements(Database db, String tablename, String[] allColu... method getInsertStatement (line 49) | public DatabaseStatement getInsertStatement() { method getInsertOrReplaceStatement (line 65) | public DatabaseStatement getInsertOrReplaceStatement() { method getDeleteStatement (line 81) | public DatabaseStatement getDeleteStatement() { method getUpdateStatement (line 97) | public DatabaseStatement getUpdateStatement() { method getCountStatement (line 113) | public DatabaseStatement getCountStatement() { method getSelectAll (line 122) | public String getSelectAll() { method getSelectKeys (line 130) | public String getSelectKeys() { method getSelectByKey (line 138) | public String getSelectByKey() { method getSelectByRowId (line 148) | public String getSelectByRowId() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/query/AbstractQuery.java class AbstractQuery (line 35) | abstract class AbstractQuery { method toStringArray (line 42) | protected static String[] toStringArray(Object[] values) { method AbstractQuery (line 56) | protected AbstractQuery(AbstractDao dao, String sql, String[] pa... method setParameter (line 71) | public AbstractQuery setParameter(int index, Object parameter) { method setParameter (line 84) | public AbstractQuery setParameter(int index, Date parameter) { method setParameter (line 92) | public AbstractQuery setParameter(int index, Boolean parameter) { method checkThread (line 97) | protected void checkThread() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/query/AbstractQueryData.java class AbstractQueryData (line 27) | abstract class AbstractQueryData> { method AbstractQueryData (line 33) | AbstractQueryData(AbstractDao dao, String sql, String[] initialV... method forCurrentThread (line 44) | Q forCurrentThread(Q query) { method forCurrentThread (line 56) | Q forCurrentThread() { method createQuery (line 75) | abstract protected Q createQuery(); method gc (line 77) | void gc() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/query/AbstractQueryWithLimit.java class AbstractQueryWithLimit (line 27) | abstract class AbstractQueryWithLimit extends AbstractQuery { method AbstractQueryWithLimit (line 31) | protected AbstractQueryWithLimit(AbstractDao dao, String sql, St... method setParameter (line 42) | public AbstractQueryWithLimit setParameter(int index, Object parame... method setLimit (line 54) | public void setLimit(int limit) { method setOffset (line 67) | public void setOffset(int offset) { FILE: DaoCore/src/main/java/org/greenrobot/greendao/query/CloseableListIterator.java type CloseableListIterator (line 29) | public interface CloseableListIterator extends ListIterator, Close... FILE: DaoCore/src/main/java/org/greenrobot/greendao/query/CountQuery.java class CountQuery (line 25) | public class CountQuery extends AbstractQuery { class QueryData (line 27) | private final static class QueryData extends AbstractQueryData dao, String sql, String[] initi... method createQuery (line 33) | @Override method create (line 39) | static CountQuery create(AbstractDao dao, String sql, ... method CountQuery (line 46) | private CountQuery(QueryData queryData, AbstractDao dao, Stri... method forCurrentThread (line 51) | public CountQuery forCurrentThread() { method count (line 56) | public long count() { method setParameter (line 74) | @Override method setParameter (line 79) | @Override method setParameter (line 84) | @Override FILE: DaoCore/src/main/java/org/greenrobot/greendao/query/CursorQuery.java class CursorQuery (line 31) | public class CursorQuery extends AbstractQueryWithLimit { class QueryData (line 32) | private final static class QueryData extends AbstractQueryData CursorQuery internalCreate(AbstractDao d... method create (line 54) | static CursorQuery create(AbstractDao dao, String sql,... method CursorQuery (line 63) | private CursorQuery(QueryData queryData, AbstractDao dao, Str... method forCurrentThread (line 69) | public CursorQuery forCurrentThread() { method query (line 74) | public Cursor query() { method setParameter (line 80) | @Override method setParameter (line 85) | @Override method setParameter (line 90) | @Override FILE: DaoCore/src/main/java/org/greenrobot/greendao/query/DeleteQuery.java class DeleteQuery (line 30) | public class DeleteQuery extends AbstractQuery { class QueryData (line 31) | private final static class QueryData extends AbstractQueryData dao, String sql, String[] initi... method createQuery (line 37) | @Override method create (line 43) | static DeleteQuery create(AbstractDao dao, String sql,... method DeleteQuery (line 50) | private DeleteQuery(QueryData queryData, AbstractDao dao, Str... method forCurrentThread (line 55) | public DeleteQuery forCurrentThread() { method executeDeleteWithoutDetachingEntities (line 65) | public void executeDeleteWithoutDetachingEntities() { method setParameter (line 84) | @Override method setParameter (line 89) | @Override method setParameter (line 94) | @Override FILE: DaoCore/src/main/java/org/greenrobot/greendao/query/Join.java class Join (line 25) | public class Join { method Join (line 35) | public Join(String sourceTablePrefix, Property sourceJoinProperty, method where (line 51) | public Join where(WhereCondition cond, WhereCondition... con... method whereOr (line 60) | public Join whereOr(WhereCondition cond1, WhereCondition con... method or (line 70) | public WhereCondition or(WhereCondition cond1, WhereCondition cond2, W... method and (line 79) | public WhereCondition and(WhereCondition cond1, WhereCondition cond2, ... method getTablePrefix (line 88) | public String getTablePrefix() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/query/LazyList.java class LazyList (line 45) | public class LazyList implements List, Closeable { class LazyIterator (line 46) | protected class LazyIterator implements CloseableListIterator { method LazyIterator (line 50) | public LazyIterator(int startLocation, boolean closeWhenDone) { method add (line 55) | @Override method hasPrevious (line 60) | @Override method nextIndex (line 66) | @Override method previous (line 71) | @Override method previousIndex (line 85) | @Override method set (line 90) | @Override method hasNext (line 95) | @Override method next (line 100) | @Override method remove (line 113) | @Override method close (line 118) | @Override method LazyList (line 132) | LazyList(InternalQueryDaoAccess daoAccess, Cursor cursor, boolean c... method loadRemaining (line 152) | public void loadRemaining() { method checkCached (line 160) | protected void checkCached() { method peek (line 167) | public E peek(int location) { method close (line 175) | @Override method isClosed (line 181) | public boolean isClosed() { method getLoadedCount (line 185) | public int getLoadedCount() { method isLoadedCompletely (line 189) | public boolean isLoadedCompletely() { method add (line 193) | @Override method add (line 198) | @Override method addAll (line 203) | @Override method addAll (line 208) | @Override method clear (line 213) | @Override method contains (line 218) | @Override method containsAll (line 224) | @Override method get (line 230) | @Override method loadEntity (line 263) | protected E loadEntity(int location) { method indexOf (line 275) | @Override method isEmpty (line 281) | @Override method iterator (line 286) | @Override method lastIndexOf (line 291) | @Override method listIterator (line 297) | @Override method listIteratorAutoClose (line 303) | public CloseableListIterator listIteratorAutoClose() { method listIterator (line 307) | @Override method remove (line 312) | @Override method remove (line 317) | @Override method removeAll (line 322) | @Override method retainAll (line 327) | @Override method set (line 332) | @Override method size (line 337) | @Override method subList (line 342) | @Override method toArray (line 351) | @Override method toArray (line 357) | @Override FILE: DaoCore/src/main/java/org/greenrobot/greendao/query/Query.java class Query (line 37) | public class Query extends AbstractQueryWithLimit { class QueryData (line 38) | private final static class QueryData extends AbstractQueryData dao, String sql, String[] initialValues... method createQuery (line 48) | @Override method internalCreate (line 56) | public static Query internalCreate(AbstractDao dao, St... method create (line 60) | static Query create(AbstractDao dao, String sql, Objec... method Query (line 72) | private Query(QueryData queryData, AbstractDao dao, String sq... method forCurrentThread (line 81) | public Query forCurrentThread() { method list (line 86) | public List list() { method listLazy (line 97) | public LazyList listLazy() { method listLazyUncached (line 107) | public LazyList listLazyUncached() { method listIterator (line 117) | public CloseableListIterator listIterator() { method unique (line 127) | public T unique() { method uniqueOrThrow (line 139) | public T uniqueOrThrow() { method setParameter (line 147) | @Override method setParameter (line 152) | @Override method setParameter (line 157) | @Override method __internalRxPlain (line 169) | @Internal method __InternalRx (line 184) | @Internal FILE: DaoCore/src/main/java/org/greenrobot/greendao/query/QueryBuilder.java class QueryBuilder (line 48) | public class QueryBuilder { method internalCreate (line 72) | public static QueryBuilder internalCreate(AbstractDao ... method QueryBuilder (line 76) | protected QueryBuilder(AbstractDao dao) { method QueryBuilder (line 80) | protected QueryBuilder(AbstractDao dao, String tablePrefix) { method checkOrderBuilder (line 89) | private void checkOrderBuilder() { method distinct (line 98) | public QueryBuilder distinct() { method preferLocalizedStringOrder (line 110) | public QueryBuilder preferLocalizedStringOrder() { method stringOrderCollation (line 124) | public QueryBuilder stringOrderCollation(String stringOrderCollatio... method where (line 134) | public QueryBuilder where(WhereCondition cond, WhereCondition... co... method whereOr (line 143) | public QueryBuilder whereOr(WhereCondition cond1, WhereCondition co... method or (line 153) | public WhereCondition or(WhereCondition cond1, WhereCondition cond2, W... method and (line 162) | public WhereCondition and(WhereCondition cond1, WhereCondition cond2, ... method join (line 170) | public Join join(Class destinationEntityClass, Property d... method join (line 178) | public Join join(Property sourceProperty, Class destinati... method join (line 188) | public Join join(Property sourceProperty, Class destinati... method join (line 199) | public Join join(Join sourceJoin, Property sourcePrope... method addJoin (line 205) | private Join addJoin(String sourceTablePrefix, Property sour... method orderAsc (line 215) | public QueryBuilder orderAsc(Property... properties) { method orderDesc (line 221) | public QueryBuilder orderDesc(Property... properties) { method orderAscOrDesc (line 226) | private void orderAscOrDesc(String ascOrDescWithLeadingSpace, Property... method orderCustom (line 238) | public QueryBuilder orderCustom(Property property, String customOrd... method orderRaw (line 249) | public QueryBuilder orderRaw(String rawOrder) { method append (line 255) | protected StringBuilder append(StringBuilder builder, Property propert... method limit (line 263) | public QueryBuilder limit(int limit) { method offset (line 272) | public QueryBuilder offset(int offset) { method build (line 281) | public Query build() { method buildCursor (line 296) | public CursorQuery buildCursor() { method createSelectBuilder (line 307) | private StringBuilder createSelectBuilder() { method checkAddLimit (line 319) | private int checkAddLimit(StringBuilder builder) { method checkAddOffset (line 329) | private int checkAddOffset(StringBuilder builder) { method buildDelete (line 346) | public DeleteQuery buildDelete() { method buildCount (line 371) | public CountQuery buildCount() { method checkLog (line 383) | private void checkLog(String sql) { method appendJoinsAndWheres (line 392) | private void appendJoinsAndWheres(StringBuilder builder, String tableP... method list (line 424) | public List list() { method rx (line 431) | @Experimental method rxPlain (line 439) | @Experimental method listLazy (line 449) | public LazyList listLazy() { method listLazyUncached (line 458) | public LazyList listLazyUncached() { method listIterator (line 467) | public CloseableListIterator listIterator() { method unique (line 476) | public T unique() { method uniqueOrThrow (line 486) | public T uniqueOrThrow() { method count (line 495) | public long count() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/query/WhereCollector.java class WhereCollector (line 27) | class WhereCollector { method WhereCollector (line 33) | WhereCollector(AbstractDao dao, String tablePrefix) { method add (line 39) | void add(WhereCondition cond, WhereCondition... condMore) { method combineWhereConditions (line 48) | WhereCondition combineWhereConditions(String combineOp, WhereCondition... method addCondition (line 65) | void addCondition(StringBuilder builder, List values, WhereCon... method checkCondition (line 71) | void checkCondition(WhereCondition whereCondition) { method checkProperty (line 77) | void checkProperty(Property property) { method appendWhereClause (line 93) | void appendWhereClause(StringBuilder builder, String tablePrefixOrNull... method isEmpty (line 105) | boolean isEmpty() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/query/WhereCondition.java type WhereCondition (line 29) | public interface WhereCondition { method appendTo (line 31) | void appendTo(StringBuilder builder, String tableAlias); method appendValuesTo (line 33) | void appendValuesTo(List values); class AbstractCondition (line 35) | abstract class AbstractCondition implements WhereCondition { method AbstractCondition (line 41) | public AbstractCondition() { method AbstractCondition (line 47) | public AbstractCondition(Object value) { method AbstractCondition (line 53) | public AbstractCondition(Object[] values) { method appendValuesTo (line 59) | @Override class PropertyCondition (line 71) | class PropertyCondition extends AbstractCondition { method checkValueForType (line 73) | private static Object checkValueForType(Property property, Object va... method checkValuesForType (line 110) | private static Object[] checkValuesForType(Property property, Object... method PropertyCondition (line 120) | public PropertyCondition(Property property, String op) { method PropertyCondition (line 125) | public PropertyCondition(Property property, String op, Object value) { method PropertyCondition (line 131) | public PropertyCondition(Property property, String op, Object[] valu... method appendTo (line 137) | @Override class StringCondition (line 143) | class StringCondition extends AbstractCondition { method StringCondition (line 147) | public StringCondition(String string) { method StringCondition (line 151) | public StringCondition(String string, Object value) { method StringCondition (line 156) | public StringCondition(String string, Object... values) { method appendTo (line 161) | @Override FILE: DaoCore/src/main/java/org/greenrobot/greendao/rx/RxBase.java class RxBase (line 30) | @Internal method RxBase (line 38) | RxBase() { method RxBase (line 46) | @Experimental method getScheduler (line 54) | @Experimental method wrap (line 59) | protected Observable wrap(Callable callable) { method wrap (line 63) | protected Observable wrap(Observable observable) { FILE: DaoCore/src/main/java/org/greenrobot/greendao/rx/RxDao.java class RxDao (line 42) | @Experimental method RxDao (line 50) | @Experimental method RxDao (line 59) | @Experimental method loadAll (line 68) | @Experimental method load (line 81) | @Experimental method refresh (line 95) | @Experimental method insert (line 110) | @Experimental method insertInTx (line 125) | @Experimental method insertInTx (line 140) | @Experimental method insertOrReplace (line 155) | @Experimental method insertOrReplaceInTx (line 170) | @Experimental method insertOrReplaceInTx (line 185) | @Experimental method save (line 200) | @Experimental method saveInTx (line 215) | @Experimental method saveInTx (line 230) | @Experimental method update (line 245) | @Experimental method updateInTx (line 260) | @Experimental method updateInTx (line 275) | @Experimental method delete (line 290) | @Experimental method deleteByKey (line 304) | @Experimental method deleteAll (line 318) | @Experimental method deleteInTx (line 332) | @Experimental method deleteInTx (line 346) | @Experimental method deleteByKeyInTx (line 360) | @Experimental method deleteByKeyInTx (line 374) | @Experimental method count (line 388) | @Experimental method getDao (line 401) | @Experimental FILE: DaoCore/src/main/java/org/greenrobot/greendao/rx/RxQuery.java class RxQuery (line 35) | @Experimental method RxQuery (line 40) | public RxQuery(Query query) { method RxQuery (line 44) | public RxQuery(Query query, Scheduler scheduler) { method list (line 52) | @Experimental method unique (line 65) | @Experimental method oneByOne (line 82) | public Observable oneByOne() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/rx/RxTransaction.java class RxTransaction (line 30) | @Experimental method RxTransaction (line 34) | public RxTransaction(AbstractDaoSession daoSession) { method RxTransaction (line 38) | public RxTransaction(AbstractDaoSession daoSession, Scheduler schedule... method run (line 46) | @Experimental method call (line 60) | @Experimental method getDaoSession (line 73) | @Experimental FILE: DaoCore/src/main/java/org/greenrobot/greendao/rx/RxUtils.java class RxUtils (line 26) | @Internal method fromCallable (line 29) | @Internal FILE: DaoCore/src/main/java/org/greenrobot/greendao/test/AbstractDaoSessionTest.java class AbstractDaoSessionTest (line 35) | public abstract class AbstractDaoSessionTest daoMasterClass) { method AbstractDaoSessionTest (line 46) | public AbstractDaoSessionTest(Class daoMasterClass, boolean inMemor... method setUp (line 51) | @SuppressWarnings("unchecked") FILE: DaoCore/src/main/java/org/greenrobot/greendao/test/AbstractDaoTest.java class AbstractDaoTest (line 41) | public abstract class AbstractDaoTest, T, K>... method AbstractDaoTest (line 49) | public AbstractDaoTest(Class daoClass) { method AbstractDaoTest (line 53) | public AbstractDaoTest(Class daoClass, boolean inMemory) { method setIdentityScopeBeforeSetUp (line 58) | public void setIdentityScopeBeforeSetUp(IdentityScope identitySc... method setUp (line 62) | @SuppressWarnings("unchecked") method setUpTableForDao (line 75) | protected void setUpTableForDao() throws Exception { method clearIdentityScopeIfAny (line 84) | protected void clearIdentityScopeIfAny() { method logTableDump (line 93) | protected void logTableDump() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/test/AbstractDaoTestLongPk.java class AbstractDaoTestLongPk (line 29) | public abstract class AbstractDaoTestLongPk daoClass) { method createRandomPk (line 36) | protected Long createRandomPk() { method testAssignPk (line 40) | public void testAssignPk() { FILE: DaoCore/src/main/java/org/greenrobot/greendao/test/AbstractDaoTestSinglePk.java class AbstractDaoTestSinglePk (line 40) | public abstract class AbstractDaoTestSinglePk daoClass) { method setUp (line 50) | @Override method testInsertAndLoad (line 67) | public void testInsertAndLoad() { method testInsertInTx (line 77) | public void testInsertInTx() { method testCount (line 87) | public void testCount() { method testInsertTwice (line 96) | public void testInsertTwice() { method testInsertOrReplaceTwice (line 108) | public void testInsertOrReplaceTwice() { method testInsertOrReplaceInTx (line 117) | public void testInsertOrReplaceInTx() { method testDelete (line 133) | public void testDelete() { method testDeleteAll (line 143) | public void testDeleteAll() { method testDeleteInTx (line 159) | public void testDeleteInTx() { method testDeleteByKeyInTx (line 180) | public void testDeleteByKeyInTx() { method testRowId (line 200) | public void testRowId() { method testLoadAll (line 208) | public void testLoadAll() { method testQuery (line 220) | public void testQuery() { method testUpdate (line 232) | public void testUpdate() { method testReadWithOffset (line 240) | public void testReadWithOffset() { method testLoadPkWithOffset (line 254) | public void testLoadPkWithOffset() { method testLoadPk (line 258) | public void testLoadPk() { method testSave (line 262) | public void testSave() { method testSaveInTx (line 275) | public void testSaveInTx() { method runLoadPkTest (line 294) | protected void runLoadPkTest(int offset) { method queryWithDummyColumnsInFront (line 308) | protected Cursor queryWithDummyColumnsInFront(int dummyCount, String v... method checkKeyIsNullable (line 340) | protected boolean checkKeyIsNullable() { method nextPk (line 349) | protected K nextPk() { method createEntityWithRandomPk (line 359) | protected T createEntityWithRandomPk() { method createRandomPk (line 364) | protected abstract K createRandomPk(); method createEntity (line 370) | protected abstract T createEntity(K key); FILE: DaoCore/src/main/java/org/greenrobot/greendao/test/AbstractDaoTestStringPk.java class AbstractDaoTestStringPk (line 30) | public abstract class AbstractDaoTestStringPk daoClass) { method createRandomPk (line 37) | @Override FILE: DaoCore/src/main/java/org/greenrobot/greendao/test/DbTest.java class DbTest (line 41) | public abstract class DbTest extends AndroidTestCase { method DbTest (line 51) | public DbTest() { method DbTest (line 55) | public DbTest(boolean inMemory) { method setUp (line 60) | @Override method createApplication (line 67) | public T createApplication(Class appClass) { method terminateApplication (line 81) | public void terminateApplication() { method getApplication (line 88) | public T getApplication() { method createDatabase (line 94) | protected Database createDatabase() { method tearDown (line 106) | @Override method logTableDump (line 119) | protected void logTableDump(String tablename) { FILE: DaoGenerator/src-test/org/greenrobot/greendao/generator/SimpleDaoGeneratorTest.java class SimpleDaoGeneratorTest (line 29) | public class SimpleDaoGeneratorTest { method testMinimalSchema (line 31) | @Test method testDbName (line 54) | @Test method testInterfacesError (line 63) | @Test(expected = RuntimeException.class) FILE: DaoGenerator/src/org/greenrobot/greendao/generator/ContentProvider.java class ContentProvider (line 23) | @SuppressWarnings("unused") method ContentProvider (line 33) | public ContentProvider(Schema schema, List entities) { method getAuthority (line 38) | public String getAuthority() { method setAuthority (line 42) | public void setAuthority(String authority) { method getBasePath (line 46) | public String getBasePath() { method setBasePath (line 50) | public void setBasePath(String basePath) { method getClassName (line 54) | public String getClassName() { method setClassName (line 58) | public void setClassName(String className) { method getJavaPackage (line 62) | public String getJavaPackage() { method setJavaPackage (line 66) | public void setJavaPackage(String javaPackage) { method isReadOnly (line 70) | public boolean isReadOnly() { method readOnly (line 74) | public void readOnly() { method getEntities (line 78) | public List getEntities() { method init2ndPass (line 82) | public void init2ndPass() { FILE: DaoGenerator/src/org/greenrobot/greendao/generator/DaoGenerator.java class DaoGenerator (line 40) | public class DaoGenerator { method DaoGenerator (line 53) | public DaoGenerator() throws IOException { method getConfiguration (line 71) | private Configuration getConfiguration(String probingTemplate) throws ... method compilePattern (line 96) | private Pattern compilePattern(String sectionName) { method generateAll (line 103) | public void generateAll(Schema schema, String outDir) throws Exception { method generateAll (line 108) | public void generateAll(Schema schema, String outDir, String outDirEnt... method toFileForceExists (line 152) | protected File toFileForceExists(String filename) throws IOException { method generate (line 161) | private void generate(Template template, File outDirFile, String javaP... method generate (line 166) | private void generate(Template template, File outDirFile, String javaP... method checkKeepSections (line 199) | private void checkKeepSections(File file, Map root) { method toJavaFilename (line 226) | protected File toJavaFilename(File outDirFile, String javaPackage, Str... FILE: DaoGenerator/src/org/greenrobot/greendao/generator/DaoUtil.java class DaoUtil (line 29) | public class DaoUtil { method dbName (line 30) | public static String dbName(String javaName) { method getClassnameFromFullyQualified (line 43) | public static String getClassnameFromFullyQualified(String clazz) { method capFirst (line 52) | public static String capFirst(String string) { method getPackageFromFullyQualified (line 56) | public static String getPackageFromFullyQualified(String clazz) { method readAllBytes (line 65) | public static byte[] readAllBytes(InputStream in) throws IOException { method readAllBytes (line 71) | public static byte[] readAllBytes(File file) throws IOException { method readAllBytes (line 80) | public static byte[] readAllBytes(String filename) throws IOException { method copyAllBytes (line 94) | public static int copyAllBytes(InputStream in, OutputStream out) throw... method checkConvertToJavaDoc (line 108) | public static String checkConvertToJavaDoc(String javaDoc, String inde... FILE: DaoGenerator/src/org/greenrobot/greendao/generator/Entity.java class Entity (line 42) | @SuppressWarnings("unused") method Entity (line 82) | Entity(Schema schema, String className) { method addBooleanProperty (line 101) | public PropertyBuilder addBooleanProperty(String propertyName) { method addByteProperty (line 105) | public PropertyBuilder addByteProperty(String propertyName) { method addShortProperty (line 109) | public PropertyBuilder addShortProperty(String propertyName) { method addIntProperty (line 113) | public PropertyBuilder addIntProperty(String propertyName) { method addLongProperty (line 117) | public PropertyBuilder addLongProperty(String propertyName) { method addFloatProperty (line 121) | public PropertyBuilder addFloatProperty(String propertyName) { method addDoubleProperty (line 125) | public PropertyBuilder addDoubleProperty(String propertyName) { method addByteArrayProperty (line 129) | public PropertyBuilder addByteArrayProperty(String propertyName) { method addStringProperty (line 133) | public PropertyBuilder addStringProperty(String propertyName) { method addDateProperty (line 137) | public PropertyBuilder addDateProperty(String propertyName) { method addProperty (line 141) | public PropertyBuilder addProperty(PropertyType propertyType, String p... method addIdProperty (line 151) | public PropertyBuilder addIdProperty() { method addToMany (line 158) | public ToMany addToMany(Entity target, Property targetProperty) { method addToMany (line 167) | public ToMany addToMany(Entity target, Property targetProperty, String... method addToMany (line 177) | public ToMany addToMany(Property sourceProperty, Entity target, Proper... method addToMany (line 183) | public ToMany addToMany(Property[] sourceProperties, Entity target, Pr... method addToMany (line 194) | public ToManyWithJoinEntity addToMany(Entity target, Entity joinEntity... method addToOne (line 205) | public ToOne addToOne(Entity target, Property fkProperty) { method addToOne (line 217) | public ToOne addToOne(Entity target, Property fkProperty, String name) { method addToOneWithoutProperty (line 223) | public ToOne addToOneWithoutProperty(String name, Entity target, Strin... method addToOneWithoutProperty (line 227) | public ToOne addToOneWithoutProperty(String name, Entity target, Strin... method addIncomingToMany (line 245) | protected void addIncomingToMany(ToMany toMany) { method addContentProvider (line 249) | public ContentProvider addContentProvider() { method addIndex (line 258) | public Entity addIndex(Index index) { method addImport (line 263) | public Entity addImport(String additionalImport) { method useProtobuf (line 269) | Entity useProtobuf() { method isProtobuf (line 274) | public boolean isProtobuf() { method getSchema (line 278) | public Schema getSchema() { method getDbName (line 282) | public String getDbName() { method setTableName (line 286) | @Deprecated method setDbName (line 294) | public void setDbName(String dbName) { method getClassName (line 299) | public String getClassName() { method getProperties (line 303) | public List getProperties() { method getPropertiesColumns (line 307) | public List getPropertiesColumns() { method getJavaPackage (line 311) | public String getJavaPackage() { method setJavaPackage (line 315) | public void setJavaPackage(String javaPackage) { method getJavaPackageDao (line 319) | public String getJavaPackageDao() { method setJavaPackageDao (line 323) | public void setJavaPackageDao(String javaPackageDao) { method getClassNameDao (line 327) | public String getClassNameDao() { method setClassNameDao (line 331) | public void setClassNameDao(String classNameDao) { method getClassNameTest (line 335) | public String getClassNameTest() { method setClassNameTest (line 339) | public void setClassNameTest(String classNameTest) { method getJavaPackageTest (line 343) | public String getJavaPackageTest() { method setJavaPackageTest (line 347) | public void setJavaPackageTest(String javaPackageTest) { method getPropertiesPk (line 352) | public List getPropertiesPk() { method getPropertiesNonPk (line 357) | public List getPropertiesNonPk() { method getPkProperty (line 362) | public Property getPkProperty() { method getIndexes (line 366) | public List getIndexes() { method getPkType (line 371) | public String getPkType() { method isConstructors (line 375) | public boolean isConstructors() { method setConstructors (line 380) | public void setConstructors(boolean constructors) { method isSkipGeneration (line 384) | public boolean isSkipGeneration() { method setSkipGeneration (line 392) | public void setSkipGeneration(boolean skipGeneration) { method setSkipTableCreation (line 396) | @Deprecated method setSkipCreationInDb (line 405) | public void setSkipCreationInDb(boolean skipCreationInDb) { method isSkipCreationInDb (line 409) | public boolean isSkipCreationInDb() { method isSkipGenerationTest (line 413) | public boolean isSkipGenerationTest() { method setSkipGenerationTest (line 417) | public void setSkipGenerationTest(boolean skipGenerationTest) { method getToOneRelations (line 421) | public List getToOneRelations() { method getToManyRelations (line 425) | public List getToManyRelations() { method getIncomingToManyRelations (line 429) | public List getIncomingToManyRelations() { method setActive (line 437) | public void setActive(Boolean active) { method getActive (line 441) | public Boolean getActive() { method getHasKeepSections (line 445) | public Boolean getHasKeepSections() { method getAdditionalImportsEntity (line 449) | public Collection getAdditionalImportsEntity() { method getAdditionalImportsDao (line 453) | public Collection getAdditionalImportsDao() { method setHasKeepSections (line 457) | public void setHasKeepSections(Boolean hasKeepSections) { method getInterfacesToImplement (line 461) | public List getInterfacesToImplement() { method getContentProviders (line 465) | public List getContentProviders() { method implementsInterface (line 469) | public void implementsInterface(String... interfaces) { method implementsSerializable (line 478) | public void implementsSerializable() { method getSuperclass (line 482) | public String getSuperclass() { method setSuperclass (line 486) | public void setSuperclass(String classToExtend) { method getJavaDoc (line 490) | public String getJavaDoc() { method setJavaDoc (line 494) | public void setJavaDoc(String javaDoc) { method getCodeBeforeClass (line 498) | public String getCodeBeforeClass() { method setCodeBeforeClass (line 502) | public void setCodeBeforeClass(String codeBeforeClass) { method init2ndPass (line 506) | void init2ndPass() { method init2ndPassNamesWithDefaults (line 575) | protected void init2ndPassNamesWithDefaults() { method init2ndPassIndexNamesWithDefaults (line 606) | protected void init2ndPassIndexNamesWithDefaults() { method init3rdPass (line 625) | void init3rdPass() { method init3rdPassRelations (line 634) | private void init3rdPassRelations() { method init3rdPassAdditionalImports (line 660) | private void init3rdPassAdditionalImports() { method checkAdditionalImportsEntityTargetEntity (line 708) | private void checkAdditionalImportsEntityTargetEntity(Entity targetEnt... method checkAdditionalImportsDaoTargetEntity (line 717) | private void checkAdditionalImportsDaoTargetEntity(Entity targetEntity) { method validatePropertyExists (line 723) | public void validatePropertyExists(Property property) { method getMultiIndexes (line 729) | public List getMultiIndexes() { method isNonDefaultDbName (line 733) | public boolean isNonDefaultDbName() { method toString (line 737) | @Override FILE: DaoGenerator/src/org/greenrobot/greendao/generator/Index.java class Index (line 21) | @SuppressWarnings("unused") method getName (line 27) | public String getName() { method setName (line 31) | public Index setName(String name) { method makeUnique (line 37) | public Index makeUnique() { method isUnique (line 42) | public boolean isUnique() { method isNonDefaultName (line 46) | public boolean isNonDefaultName() { method setDefaultName (line 51) | void setDefaultName(String name) { FILE: DaoGenerator/src/org/greenrobot/greendao/generator/Property.java class Property (line 22) | @SuppressWarnings("unused") class PropertyBuilder (line 25) | public static class PropertyBuilder { method PropertyBuilder (line 28) | public PropertyBuilder(Schema schema, Entity entity, PropertyType pr... method columnName (line 32) | @Deprecated method dbName (line 40) | public PropertyBuilder dbName(String dbName) { method columnType (line 46) | @Deprecated method dbType (line 54) | public PropertyBuilder dbType(String dbType) { method primaryKey (line 59) | public PropertyBuilder primaryKey() { method primaryKeyAsc (line 64) | public PropertyBuilder primaryKeyAsc() { method primaryKeyDesc (line 70) | public PropertyBuilder primaryKeyDesc() { method autoincrement (line 76) | public PropertyBuilder autoincrement() { method unique (line 85) | public PropertyBuilder unique() { method notNull (line 90) | public PropertyBuilder notNull() { method nonPrimitiveType (line 95) | public PropertyBuilder nonPrimitiveType() { method index (line 103) | public PropertyBuilder index() { method indexAsc (line 110) | public PropertyBuilder indexAsc(String indexNameOrNull, boolean isUn... method indexDesc (line 121) | public PropertyBuilder indexDesc(String indexNameOrNull, boolean isU... method customType (line 132) | public PropertyBuilder customType(String customType, String converte... method codeBeforeField (line 140) | public PropertyBuilder codeBeforeField(String code) { method codeBeforeGetter (line 145) | public PropertyBuilder codeBeforeGetter(String code) { method codeBeforeSetter (line 150) | public PropertyBuilder codeBeforeSetter(String code) { method codeBeforeGetterAndSetter (line 155) | public PropertyBuilder codeBeforeGetterAndSetter(String code) { method javaDocField (line 161) | public PropertyBuilder javaDocField(String javaDoc) { method checkConvertToJavaDoc (line 166) | private String checkConvertToJavaDoc(String javaDoc) { method javaDocGetter (line 170) | public PropertyBuilder javaDocGetter(String javaDoc) { method javaDocSetter (line 175) | public PropertyBuilder javaDocSetter(String javaDoc) { method javaDocGetterAndSetter (line 180) | public PropertyBuilder javaDocGetterAndSetter(String javaDoc) { method getProperty (line 187) | public Property getProperty() { method Property (line 238) | public Property(Schema schema, Entity entity, PropertyType propertyTyp... method getPropertyName (line 245) | public String getPropertyName() { method getPropertyType (line 249) | public PropertyType getPropertyType() { method setPropertyType (line 253) | public void setPropertyType(PropertyType propertyType) { method getDbName (line 257) | public String getDbName() { method isNonDefaultDbName (line 261) | public boolean isNonDefaultDbName() { method getDbType (line 265) | public String getDbType() { method isPrimaryKey (line 269) | public boolean isPrimaryKey() { method isPkAsc (line 273) | public boolean isPkAsc() { method isPkDesc (line 277) | public boolean isPkDesc() { method isAutoincrement (line 281) | public boolean isAutoincrement() { method getConstraints (line 285) | public String getConstraints() { method isUnique (line 289) | public boolean isUnique() { method isNotNull (line 293) | public boolean isNotNull() { method isNonPrimitiveType (line 297) | public boolean isNonPrimitiveType() { method getJavaType (line 301) | public String getJavaType() { method getJavaTypeInEntity (line 305) | public String getJavaTypeInEntity() { method getOrdinal (line 313) | public int getOrdinal() { method setOrdinal (line 317) | void setOrdinal(int ordinal) { method getCustomType (line 321) | public String getCustomType() { method getCustomTypeClassName (line 325) | public String getCustomTypeClassName() { method getConverter (line 329) | public String getConverter() { method getConverterClassName (line 333) | public String getConverterClassName() { method getCodeBeforeField (line 337) | public String getCodeBeforeField() { method getCodeBeforeGetter (line 341) | public String getCodeBeforeGetter() { method getCodeBeforeSetter (line 345) | public String getCodeBeforeSetter() { method getJavaDocField (line 349) | public String getJavaDocField() { method getJavaDocGetter (line 353) | public String getJavaDocGetter() { method getJavaDocSetter (line 357) | public String getJavaDocSetter() { method getDatabaseValueExpression (line 361) | public String getDatabaseValueExpression() { method getDatabaseValueExpressionNotNull (line 365) | public String getDatabaseValueExpressionNotNull() { method getDatabaseValueExpression (line 373) | public String getDatabaseValueExpression(String entityValue) { method getEntityValueExpression (line 396) | public String getEntityValueExpression(String databaseValue) { method getEntity (line 418) | public Entity getEntity() { method getIndex (line 422) | public Index getIndex() { method setIndex (line 426) | public void setIndex(Index index) { method init2ndPass (line 430) | void init2ndPass() { method initConstraint (line 450) | private void initConstraint() { method init3ndPass (line 478) | void init3ndPass() { method toString (line 482) | @Override FILE: DaoGenerator/src/org/greenrobot/greendao/generator/PropertyOrderList.java class PropertyOrderList (line 24) | public class PropertyOrderList { method PropertyOrderList (line 28) | public PropertyOrderList() { method addProperty (line 33) | public void addProperty(Property property) { method addPropertyAsc (line 38) | public void addPropertyAsc(Property property) { method addPropertyDesc (line 43) | public void addPropertyDesc(Property property) { method addOrderRaw (line 48) | @SuppressWarnings("unused") method getProperties (line 54) | public List getProperties() { method getPropertiesOrder (line 58) | public List getPropertiesOrder() { method getCommaSeparatedString (line 62) | public String getCommaSeparatedString(String tablePrefixOrNull) { method isEmpty (line 84) | public boolean isEmpty() { method getOrderSpec (line 88) | public String getOrderSpec() { FILE: DaoGenerator/src/org/greenrobot/greendao/generator/PropertyType.java type PropertyType (line 26) | public enum PropertyType { method PropertyType (line 33) | PropertyType(boolean scalar) { method isScalar (line 38) | public boolean isScalar() { FILE: DaoGenerator/src/org/greenrobot/greendao/generator/Query.java class Query (line 25) | public class Query { method Query (line 32) | public Query(String name) { method addEqualsParam (line 37) | public QueryParam addEqualsParam(Property column) { method addParam (line 41) | public QueryParam addParam(Property column, String operator) { method distinct (line 47) | public void distinct() { FILE: DaoGenerator/src/org/greenrobot/greendao/generator/QueryParam.java class QueryParam (line 22) | public class QueryParam { method QueryParam (line 26) | public QueryParam(Property column, String operator) { method getColumn (line 31) | public Property getColumn() { method getOperator (line 35) | public String getOperator() { FILE: DaoGenerator/src/org/greenrobot/greendao/generator/Schema.java class Schema (line 31) | @SuppressWarnings("unused") method Schema (line 48) | public Schema(String name, int version, String defaultJavaPackage) { method Schema (line 57) | public Schema(int version, String defaultJavaPackage) { method enableKeepSectionsByDefault (line 61) | public void enableKeepSectionsByDefault() { method enableActiveEntitiesByDefault (line 65) | public void enableActiveEntitiesByDefault() { method initTypeMappings (line 69) | private void initTypeMappings() { method addEntity (line 111) | public Entity addEntity(String className) { method addProtobufEntity (line 121) | public Entity addProtobufEntity(String className) { method mapToDbType (line 127) | public String mapToDbType(PropertyType propertyType) { method mapToJavaTypeNullable (line 131) | public String mapToJavaTypeNullable(PropertyType propertyType) { method mapToJavaTypeNotNull (line 135) | public String mapToJavaTypeNotNull(PropertyType propertyType) { method mapType (line 139) | private String mapType(Map map, PropertyType pro... method getVersion (line 147) | public int getVersion() { method getDefaultJavaPackage (line 151) | public String getDefaultJavaPackage() { method getDefaultJavaPackageDao (line 155) | public String getDefaultJavaPackageDao() { method setDefaultJavaPackageDao (line 159) | public void setDefaultJavaPackageDao(String defaultJavaPackageDao) { method getDefaultJavaPackageTest (line 163) | public String getDefaultJavaPackageTest() { method setDefaultJavaPackageTest (line 167) | public void setDefaultJavaPackageTest(String defaultJavaPackageTest) { method getEntities (line 171) | public List getEntities() { method isHasKeepSectionsByDefault (line 175) | public boolean isHasKeepSectionsByDefault() { method isUseActiveEntitiesByDefault (line 179) | public boolean isUseActiveEntitiesByDefault() { method getName (line 183) | public String getName() { method getPrefix (line 187) | public String getPrefix() { method init2ndPass (line 191) | void init2ndPass() { method init3rdPass (line 203) | void init3rdPass() { FILE: DaoGenerator/src/org/greenrobot/greendao/generator/ToMany.java class ToMany (line 24) | @SuppressWarnings("unused") method ToMany (line 29) | public ToMany(Schema schema, Entity sourceEntity, Property[] sourcePro... method getSourceProperties (line 36) | public Property[] getSourceProperties() { method setSourceProperties (line 40) | public void setSourceProperties(Property[] sourceProperties) { method getTargetProperties (line 44) | public Property[] getTargetProperties() { method init2ndPass (line 48) | void init2ndPass() { method init3rdPass (line 78) | void init3rdPass() { FILE: DaoGenerator/src/org/greenrobot/greendao/generator/ToManyBase.java class ToManyBase (line 22) | @SuppressWarnings("unused") method ToManyBase (line 31) | public ToManyBase(Schema schema, Entity sourceEntity, Entity targetEnt... method getSourceEntity (line 38) | public Entity getSourceEntity() { method getTargetEntity (line 42) | public Entity getTargetEntity() { method getName (line 46) | public String getName() { method setName (line 54) | public void setName(String name) { method orderAsc (line 59) | public void orderAsc(Property... properties) { method orderDesc (line 67) | public void orderDesc(Property... properties) { method getOrder (line 74) | public String getOrder() { method getOrderSpec (line 84) | public String getOrderSpec() { method init2ndPass (line 92) | void init2ndPass() { method init3rdPass (line 100) | void init3rdPass() { method toString (line 103) | @Override FILE: DaoGenerator/src/org/greenrobot/greendao/generator/ToManyWithJoinEntity.java class ToManyWithJoinEntity (line 24) | @SuppressWarnings("unused") method ToManyWithJoinEntity (line 30) | public ToManyWithJoinEntity(Schema schema, Entity sourceEntity, Entity... method getJoinEntity (line 38) | public Entity getJoinEntity() { method getSourceProperty (line 42) | public Property getSourceProperty() { method getTargetProperty (line 46) | public Property getTargetProperty() { method init3rdPass (line 50) | void init3rdPass() { FILE: DaoGenerator/src/org/greenrobot/greendao/generator/ToOne.java class ToOne (line 22) | @SuppressWarnings("unused") method ToOne (line 33) | public ToOne(Schema schema, Entity sourceEntity, Entity targetEntity, ... method getSourceEntity (line 43) | public Entity getSourceEntity() { method getTargetEntity (line 47) | public Entity getTargetEntity() { method getFkProperties (line 51) | public Property[] getFkProperties() { method getResolvedKeyJavaType (line 55) | public String[] getResolvedKeyJavaType() { method getResolvedKeyUseEquals (line 59) | public boolean[] getResolvedKeyUseEquals() { method getName (line 63) | public String getName() { method setName (line 71) | public void setName(String name) { method isUseFkProperty (line 75) | public boolean isUseFkProperty() { method init2ndPass (line 79) | void init2ndPass() { method init3ndPass (line 89) | void init3ndPass() { method checkUseEquals (line 111) | protected boolean checkUseEquals(PropertyType propertyType) { method toString (line 129) | @Override FILE: examples/DaoExample/src/androidTest/java/org/greenrobot/greendao/example/NoteTest.java class NoteTest (line 20) | public class NoteTest extends AbstractDaoTestLongPk { method NoteTest (line 22) | public NoteTest() { method createEntity (line 26) | @Override FILE: examples/DaoExample/src/main/java/org/greenrobot/greendao/example/App.java class App (line 8) | public class App extends Application { method onCreate (line 12) | @Override method getDaoSession (line 28) | public DaoSession getDaoSession() { class ExampleOpenHelper (line 32) | public static class ExampleOpenHelper extends DaoMaster.OpenHelper { method ExampleOpenHelper (line 34) | public ExampleOpenHelper(Context context, String name) { method onCreate (line 38) | @Override FILE: examples/DaoExample/src/main/java/org/greenrobot/greendao/example/Note.java class Note (line 13) | @Entity(indexes = { method Note (line 29) | @Generated(hash = 1272611929) method Note (line 33) | public Note(Long id) { method Note (line 37) | @Generated(hash = 1686394253) method getId (line 46) | public Long getId() { method setId (line 50) | public void setId(Long id) { method getText (line 54) | @NotNull method setText (line 60) | public void setText(@NotNull String text) { method getComment (line 64) | public String getComment() { method setComment (line 68) | public void setComment(String comment) { method getDate (line 72) | public java.util.Date getDate() { method setDate (line 76) | public void setDate(java.util.Date date) { method getType (line 80) | public NoteType getType() { method setType (line 84) | public void setType(NoteType type) { FILE: examples/DaoExample/src/main/java/org/greenrobot/greendao/example/NoteActivity.java class NoteActivity (line 36) | public class NoteActivity extends AppCompatActivity { method onCreate (line 45) | @Override method updateNotes (line 61) | private void updateNotes() { method setUpViews (line 66) | protected void setUpViews() { method onAddButtonClick (line 103) | public void onAddButtonClick(View view) { method addNote (line 107) | private void addNote() { method onNoteClick (line 126) | @Override FILE: examples/DaoExample/src/main/java/org/greenrobot/greendao/example/NoteType.java type NoteType (line 3) | public enum NoteType { FILE: examples/DaoExample/src/main/java/org/greenrobot/greendao/example/NoteTypeConverter.java class NoteTypeConverter (line 5) | public class NoteTypeConverter implements PropertyConverter notes) { method getNote (line 50) | public Note getNote(int position) { method onCreateViewHolder (line 54) | @NonNull method onBindViewHolder (line 62) | @Override method getItemCount (line 69) | @Override FILE: examples/RxDaoExample/src/main/java/org/greenrobot/greendao/rxexample/App.java class App (line 8) | public class App extends Application { method onCreate (line 12) | @Override method getDaoSession (line 28) | public DaoSession getDaoSession() { class ExampleOpenHelper (line 32) | public static class ExampleOpenHelper extends DaoMaster.OpenHelper { method ExampleOpenHelper (line 34) | public ExampleOpenHelper(Context context, String name) { method onCreate (line 38) | @Override FILE: examples/RxDaoExample/src/main/java/org/greenrobot/greendao/rxexample/MainActivity.java class MainActivity (line 22) | public class MainActivity extends AppCompatActivity { method onCreate (line 31) | @Override method updateNotes (line 47) | private void updateNotes() { method setUpViews (line 53) | protected void setUpViews() { method onAddButtonClick (line 77) | public void onAddButtonClick(View view) { method addNote (line 81) | private void addNote() { method onNoteClick (line 98) | @Override FILE: examples/RxDaoExample/src/main/java/org/greenrobot/greendao/rxexample/Note.java class Note (line 13) | @Entity(indexes = { method Note (line 29) | @Generated(hash = 1272611929) method Note (line 33) | public Note(Long id) { method Note (line 37) | @Generated(hash = 1686394253) method getId (line 46) | public Long getId() { method setId (line 50) | public void setId(Long id) { method getText (line 54) | @NotNull method setText (line 60) | public void setText(@NotNull String text) { method getComment (line 64) | public String getComment() { method setComment (line 68) | public void setComment(String comment) { method getDate (line 72) | public java.util.Date getDate() { method setDate (line 76) | public void setDate(java.util.Date date) { method getType (line 80) | public NoteType getType() { method setType (line 84) | public void setType(NoteType type) { FILE: examples/RxDaoExample/src/main/java/org/greenrobot/greendao/rxexample/NoteType.java type NoteType (line 3) | public enum NoteType { FILE: examples/RxDaoExample/src/main/java/org/greenrobot/greendao/rxexample/NoteTypeConverter.java class NoteTypeConverter (line 5) | public class NoteTypeConverter implements PropertyConverter notes) { method getNote (line 50) | public Note getNote(int position) { method onCreateViewHolder (line 54) | @NonNull method onBindViewHolder (line 62) | @Override method getItemCount (line 69) | @Override FILE: greendao-api/src/main/java/org/greenrobot/greendao/converter/PropertyConverter.java type PropertyConverter (line 28) | public interface PropertyConverter { method convertToEntityProperty (line 29) | P convertToEntityProperty(D databaseValue); method convertToDatabaseValue (line 31) | D convertToDatabaseValue(P entityProperty); FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest/DaoSessionConcurrentTest.java class DaoSessionConcurrentTest (line 32) | public class DaoSessionConcurrentTest extends AbstractDaoSessionTest getIndexes() { FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest/LongHashMapTest.java class LongHashMapTest (line 26) | public class LongHashMapTest extends TestCase { method LongHashMapTest (line 32) | public LongHashMapTest() { method testLongHashMapSimple (line 36) | public void testLongHashMapSimple() { method testLongHashMapRandom (line 59) | public void testLongHashMapRandom() { FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest/async/AbstractAsyncTest.java class AbstractAsyncTest (line 31) | public abstract class AbstractAsyncTest extends AbstractDaoSessionTest insert(int count) { method getSimpleString (line 53) | protected String getSimpleString(int i) { method getSimpleInteger (line 57) | protected int getSimpleInteger(int i) { method assertIds (line 61) | protected void assertIds(List list, List list2) { method assertIds (line 69) | protected void assertIds(TestEntity entity, TestEntity entity2) { FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest/entity/ToManyEntityTest.java class ToManyEntityTest (line 37) | public class ToManyEntityTest extends AbstractDaoSessionTest createQueryBuilder(int simpleIntW... FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest/query/LazyListTest.java class LazyListTest (line 32) | public class LazyListTest extends TestEntityTestBase { method testSizeAndGetAndPeak (line 34) | public void testSizeAndGetAndPeak() { method testGetAll100 (line 51) | public void testGetAll100() { method testGetAll100Uncached (line 58) | public void testGetAll100Uncached() { method testSublist (line 67) | public void testSublist() { method testSublistUncached (line 73) | public void testSublistUncached() { method testIterator (line 84) | public void testIterator() { method testIteratorUncached (line 91) | public void testIteratorUncached() { method testIterator (line 100) | protected void testIterator(ArrayList list, LazyList insert(int count) { method testSimpleQuery (line 50) | public void testSimpleQuery() { method testOr (line 64) | public void testOr() { method testOr3 (line 79) | public void testOr3() { method testOrNested (line 95) | public void testOrNested() { method testOrNestedNested (line 112) | public void testOrNestedNested() { method testAnd (line 131) | public void testAnd() { method testOrAnd (line 145) | public void testOrAnd() { FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest/query/QueryBuilderOrderTest.java class QueryBuilderOrderTest (line 30) | public class QueryBuilderOrderTest extends TestEntityTestBase { method setUp (line 31) | @Override method testOrderAsc (line 38) | public void testOrderAsc() { method testOrderDesc (line 49) | public void testOrderDesc() { method testOrderUpperLowercase (line 60) | public void testOrderUpperLowercase() { method testOrderUmlauts (line 81) | public void testOrderUmlauts() { method testOrderCustom (line 98) | public void testOrderCustom() { method testOrderCustom_stringOrderCollation (line 112) | public void testOrderCustom_stringOrderCollation() { method testOrderRaw (line 132) | public void testOrderRaw() { method addEntity (line 143) | private TestEntity addEntity(List list, String simpleStrin... FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest/query/QueryBuilderSimpleTest.java class QueryBuilderSimpleTest (line 33) | public class QueryBuilderSimpleTest extends TestEntityTestBase { method setUp (line 34) | @Override method testEqInteger (line 41) | public void testEqInteger() { method testEqString (line 53) | public void testEqString() { method testIn (line 65) | public void testIn() { method testNotIn (line 88) | public void testNotIn() { method testEqStringAndInteger (line 105) | public void testEqStringAndInteger() { method testNotEqString (line 118) | public void testNotEqString() { method testEqDate (line 133) | public void testEqDate() { method testEqBoolean (line 152) | public void testEqBoolean() { method testEqByteArray (line 177) | public void testEqByteArray() { method testIsNullIsNotNull (line 201) | public void testIsNullIsNotNull() { method testBuildTwice (line 218) | public void testBuildTwice() { method testLike (line 232) | public void testLike() { method testDistinct (line 254) | public void testDistinct() { FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest/query/QueryForThreadTest.java class QueryForThreadTest (line 37) | public class QueryForThreadTest extends TestEntityTestBase { method testGetForCurrentThread_SameInstance (line 44) | public void testGetForCurrentThread_SameInstance() { method testGetForCurrentThread_ParametersAreReset (line 49) | public void testGetForCurrentThread_ParametersAreReset() { method testGetForCurrentThread_ManyThreadsDontLeak (line 60) | public void testGetForCurrentThread_ManyThreadsDontLeak() throws Excep... method testBuildQueryDoesntLeak (line 96) | public void testBuildQueryDoesntLeak() { method testGetForCurrentThread_TwoThreads (line 103) | public void testGetForCurrentThread_TwoThreads() throws InterruptedExc... method testThrowOutsideOwnerThread (line 120) | public void testThrowOutsideOwnerThread() throws InterruptedException { method createQueryFromOtherThread (line 172) | private void createQueryFromOtherThread() throws InterruptedException { FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest/query/QueryLimitOffsetTest.java class QueryLimitOffsetTest (line 29) | public class QueryLimitOffsetTest extends TestEntityTestBase { method setUp (line 31) | @Override method testQueryBuilderLimit (line 38) | public void testQueryBuilderLimit() { method testQueryBuilderOffsetAndLimit (line 48) | public void testQueryBuilderOffsetAndLimit() { method testQueryBuilderOffsetAndLimitWithWhere (line 58) | public void testQueryBuilderOffsetAndLimitWithWhere() { method testQueryOffsetAndLimit (line 69) | public void testQueryOffsetAndLimit() { method testQueryBuilderOffsetWithoutLimit (line 84) | public void testQueryBuilderOffsetWithoutLimit() { method testQueryLimitAndSetParameter (line 93) | public void testQueryLimitAndSetParameter() { method testQueryUnsetLimit (line 103) | public void testQueryUnsetLimit() { method testQueryUnsetOffset (line 113) | public void testQueryUnsetOffset() { FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest/query/QuerySpecialNamesTest.java class QuerySpecialNamesTest (line 27) | public class QuerySpecialNamesTest extends AbstractDaoTest entities, Observab... method testDelete (line 287) | public void testDelete() { method testDeleteByKey (line 292) | public void testDeleteByKey() { method testDeleteAll (line 297) | public void testDeleteAll() { method testDeleteInTx (line 303) | public void testDeleteInTx() { method testDeleteInTxList (line 309) | public void testDeleteInTxList() { method testDeleteByKeyInTx (line 320) | public void testDeleteByKeyInTx() { method testDeleteByKeyInTxList (line 326) | public void testDeleteByKeyInTxList() { method assertDeleted (line 337) | private void assertDeleted(Observable observable) { method testCount (line 344) | public void testCount() { method insertEntity (line 352) | protected TestEntity insertEntity(String simpleStringNotNull) { FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest/rx/RxQueryTest.java class RxQueryTest (line 38) | public class RxQueryTest extends AbstractDaoSessionTest insertEntities(int count) { FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest/rx/RxTestHelper.java class RxTestHelper (line 30) | public class RxTestHelper { method awaitTestSubscriber (line 31) | static TestSubscriber awaitTestSubscriber(Observable observa... method insertEntity (line 40) | static TestEntity insertEntity(TestEntityDao dao, String simpleStringN... method createEntity (line 46) | static TestEntity createEntity(String simpleStringNotNull) { FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest/rx/RxTransactionTest.java class RxTransactionTest (line 33) | public class RxTransactionTest extends AbstractDaoSessionTest TestSubscriber assertTxExecuted(Observable observabl... method insertEntity (line 96) | protected TestEntity insertEntity(String simpleStringNotNull) { FILE: tests/DaoTest/src/androidTest/java/org/greenrobot/greendao/daotest2/entity/KeepEntityTest.java class KeepEntityTest (line 26) | public class KeepEntityTest extends AbstractDaoTestLongPk { class Properties (line 24) | public static class Properties { method MinimalEntityDao (line 29) | public MinimalEntityDao(DaoConfig config) { method MinimalEntityDao (line 33) | public MinimalEntityDao(DaoConfig config, DaoSession daoSession) { method createTable (line 38) | public static void createTable(Database db, boolean ifNotExists) { method dropTable (line 45) | public static void dropTable(Database db, boolean ifExists) { method bindValues (line 50) | @Override method bindValues (line 60) | @Override method readKey (line 70) | @Override method readEntity (line 75) | @Override method readEntity (line 83) | @Override method updateKeyAfterInsert (line 88) | @Override method getKey (line 94) | @Override method hasKey (line 103) | @Override method isEntityUpdateable (line 108) | @Override FILE: tests/DaoTest/src/test/java/org/greenrobot/greendao/unittest/MinimalEntityTest.java class MinimalEntityTest (line 19) | @RunWith(RobolectricTestRunner.class) method setUp (line 26) | @Before method testBasics (line 34) | @Test method testQueryForCurrentThread (line 48) | @Test FILE: tests/DaoTest/src/test/java/org/greenrobot/greendao/unittest/OptionalDepedenciesTest.java class OptionalDepedenciesTest (line 28) | public class OptionalDepedenciesTest { method testOptionalDependenciesAbsentRx (line 29) | @Test(expected = ClassNotFoundException.class) method testOptionalDependenciesAbsentSQLCipher (line 34) | @Test(expected = ClassNotFoundException.class) method testMockitoMocks (line 40) | @Test method testMockitoMocksFailForRx (line 61) | @Test(expected = NoClassDefFoundError.class) method testMockitoMocksFailForSQLCipher (line 66) | @Test(expected = NoClassDefFoundError.class) FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/AbcdefEntity.java class AbcdefEntity (line 10) | @Entity method AbcdefEntity (line 27) | @Generated method AbcdefEntity (line 31) | public AbcdefEntity(Long id) { method AbcdefEntity (line 35) | @Generated method getId (line 51) | public Long getId() { method setId (line 55) | public void setId(Long id) { method getA (line 59) | public Integer getA() { method setA (line 63) | public void setA(Integer a) { method getB (line 67) | public Integer getB() { method setB (line 71) | public void setB(Integer b) { method getC (line 75) | public Integer getC() { method setC (line 79) | public void setC(Integer c) { method getD (line 83) | public Integer getD() { method setD (line 87) | public void setD(Integer d) { method getE (line 91) | public Integer getE() { method setE (line 95) | public void setE(Integer e) { method getF (line 99) | public Integer getF() { method setF (line 103) | public void setF(Integer f) { method getG (line 107) | public Integer getG() { method setG (line 111) | public void setG(Integer g) { method getH (line 115) | public Integer getH() { method setH (line 119) | public void setH(Integer h) { method getJ (line 123) | public Integer getJ() { method setJ (line 127) | public void setJ(Integer j) { method getI (line 131) | public Integer getI() { method setI (line 135) | public void setI(Integer i) { method getK (line 139) | public Integer getK() { method setK (line 143) | public void setK(Integer k) { FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/AbcdefEntityDao.java class AbcdefEntityDao (line 16) | public class AbcdefEntityDao extends AbstractDao { class Properties (line 24) | public static class Properties { method AbcdefEntityDao (line 40) | public AbcdefEntityDao(DaoConfig config) { method AbcdefEntityDao (line 44) | public AbcdefEntityDao(DaoConfig config, DaoSession daoSession) { method createTable (line 49) | public static void createTable(Database db, boolean ifNotExists) { method dropTable (line 67) | public static void dropTable(Database db, boolean ifExists) { method bindValues (line 72) | @Override method bindValues (line 137) | @Override method readKey (line 202) | @Override method readEntity (line 207) | @Override method readEntity (line 226) | @Override method updateKeyAfterInsert (line 242) | @Override method getKey (line 248) | @Override method hasKey (line 257) | @Override method isEntityUpdateable (line 262) | @Override FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/AnActiveEntity.java class AnActiveEntity (line 13) | @Entity(active = true) method AnActiveEntity (line 28) | @Generated method AnActiveEntity (line 32) | public AnActiveEntity(Long id) { method AnActiveEntity (line 36) | @Generated method __setDaoSession (line 43) | @Generated method getId (line 49) | public Long getId() { method setId (line 53) | public void setId(Long id) { method getText (line 57) | public String getText() { method setText (line 61) | public void setText(String text) { method delete (line 69) | @Generated method update (line 79) | @Generated method refresh (line 89) | @Generated method __throwIfDetached (line 95) | @Generated FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/AnActiveEntityDao.java class AnActiveEntityDao (line 16) | public class AnActiveEntityDao extends AbstractDao { class Properties (line 24) | public static class Properties { method AnActiveEntityDao (line 32) | public AnActiveEntityDao(DaoConfig config) { method AnActiveEntityDao (line 36) | public AnActiveEntityDao(DaoConfig config, DaoSession daoSession) { method createTable (line 42) | public static void createTable(Database db, boolean ifNotExists) { method dropTable (line 50) | public static void dropTable(Database db, boolean ifExists) { method bindValues (line 55) | @Override method bindValues (line 70) | @Override method attachEntity (line 85) | @Override method readKey (line 91) | @Override method readEntity (line 96) | @Override method readEntity (line 105) | @Override method updateKeyAfterInsert (line 111) | @Override method getKey (line 117) | @Override method hasKey (line 126) | @Override method isEntityUpdateable (line 131) | @Override FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/AutoincrementEntity.java class AutoincrementEntity (line 10) | @Entity method AutoincrementEntity (line 16) | @Generated method AutoincrementEntity (line 20) | @Generated method getId (line 25) | public Long getId() { method setId (line 29) | public void setId(Long id) { FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/AutoincrementEntityDao.java class AutoincrementEntityDao (line 16) | public class AutoincrementEntityDao extends AbstractDao { class Properties (line 27) | public static class Properties { method DateEntityDao (line 35) | public DateEntityDao(DaoConfig config) { method DateEntityDao (line 39) | public DateEntityDao(DaoConfig config, DaoSession daoSession) { method createTable (line 44) | public static void createTable(Database db, boolean ifNotExists) { method dropTable (line 53) | public static void dropTable(Database db, boolean ifExists) { method bindValues (line 58) | @Override method bindValues (line 74) | @Override method readKey (line 90) | @Override method readEntity (line 95) | @Override method readEntity (line 105) | @Override method updateKeyAfterInsert (line 112) | @Override method getKey (line 118) | @Override method hasKey (line 127) | @Override method isEntityUpdateable (line 132) | @Override method _queryToManyEntity_DateEntityList (line 138) | public List _queryToManyEntity_DateEntityList(Long idToMan... FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/ExtendsImplementsEntity.java class ExtendsImplementsEntity (line 10) | @Entity method ExtendsImplementsEntity (line 17) | @Generated method ExtendsImplementsEntity (line 21) | public ExtendsImplementsEntity(Long id) { method ExtendsImplementsEntity (line 25) | @Generated method getId (line 31) | public Long getId() { method setId (line 35) | public void setId(Long id) { method getText (line 39) | public String getText() { method setText (line 43) | public void setText(String text) { FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/ExtendsImplementsEntityDao.java class ExtendsImplementsEntityDao (line 16) | public class ExtendsImplementsEntityDao extends AbstractDao { class Properties (line 27) | public static class Properties { method RelationEntityDao (line 39) | public RelationEntityDao(DaoConfig config) { method RelationEntityDao (line 43) | public RelationEntityDao(DaoConfig config, DaoSession daoSession) { method createTable (line 49) | public static void createTable(Database db, boolean ifNotExists) { method dropTable (line 61) | public static void dropTable(Database db, boolean ifExists) { method bindValues (line 66) | @Override method bindValues (line 92) | @Override method attachEntity (line 118) | @Override method readKey (line 124) | @Override method readEntity (line 129) | @Override method readEntity (line 141) | @Override method updateKeyAfterInsert (line 150) | @Override method getKey (line 156) | @Override method hasKey (line 165) | @Override method isEntityUpdateable (line 170) | @Override method getSelectDeep (line 177) | protected String getSelectDeep() { method loadCurrentDeep (line 200) | protected RelationEntity loadCurrentDeep(Cursor cursor, boolean lock) { method loadDeep (line 224) | public RelationEntity loadDeep(Long key) { method loadAllDeepFromCursor (line 252) | public List loadAllDeepFromCursor(Cursor cursor) { method loadDeepAllAndCloseCursor (line 274) | protected List loadDeepAllAndCloseCursor(Cursor cursor) { method queryDeep (line 284) | public List queryDeep(String where, String... selectio... FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/SimpleEntity.java class SimpleEntity (line 10) | @Entity method SimpleEntity (line 25) | @Generated method SimpleEntity (line 29) | public SimpleEntity(Long id) { method SimpleEntity (line 33) | @Generated method getId (line 47) | public Long getId() { method setId (line 51) | public void setId(Long id) { method getSimpleBoolean (line 55) | public Boolean getSimpleBoolean() { method setSimpleBoolean (line 59) | public void setSimpleBoolean(Boolean simpleBoolean) { method getSimpleByte (line 63) | public Byte getSimpleByte() { method setSimpleByte (line 67) | public void setSimpleByte(Byte simpleByte) { method getSimpleShort (line 71) | public Short getSimpleShort() { method setSimpleShort (line 75) | public void setSimpleShort(Short simpleShort) { method getSimpleInt (line 79) | public Integer getSimpleInt() { method setSimpleInt (line 83) | public void setSimpleInt(Integer simpleInt) { method getSimpleLong (line 87) | public Long getSimpleLong() { method setSimpleLong (line 91) | public void setSimpleLong(Long simpleLong) { method getSimpleFloat (line 95) | public Float getSimpleFloat() { method setSimpleFloat (line 99) | public void setSimpleFloat(Float simpleFloat) { method getSimpleDouble (line 103) | public Double getSimpleDouble() { method setSimpleDouble (line 107) | public void setSimpleDouble(Double simpleDouble) { method getSimpleString (line 111) | public String getSimpleString() { method setSimpleString (line 115) | public void setSimpleString(String simpleString) { method getSimpleByteArray (line 119) | public byte[] getSimpleByteArray() { method setSimpleByteArray (line 123) | public void setSimpleByteArray(byte[] simpleByteArray) { FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/SimpleEntityContentProvider.java class SimpleEntityContentProvider (line 25) | public class SimpleEntityContentProvider extends ContentProvider { method onCreate (line 55) | @Override method getDatabase (line 64) | protected Database getDatabase() { method insert (line 71) | @Override method delete (line 76) | @Override method update (line 81) | @Override method query (line 87) | @Override method getType (line 114) | @Override FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/SimpleEntityDao.java class SimpleEntityDao (line 16) | public class SimpleEntityDao extends AbstractDao { class Properties (line 24) | public static class Properties { method SimpleEntityDao (line 38) | public SimpleEntityDao(DaoConfig config) { method SimpleEntityDao (line 42) | public SimpleEntityDao(DaoConfig config, DaoSession daoSession) { method createTable (line 47) | public static void createTable(Database db, boolean ifNotExists) { method dropTable (line 63) | public static void dropTable(Database db, boolean ifExists) { method bindValues (line 68) | @Override method bindValues (line 123) | @Override method readKey (line 178) | @Override method readEntity (line 183) | @Override method readEntity (line 200) | @Override method updateKeyAfterInsert (line 214) | @Override method getKey (line 220) | @Override method hasKey (line 229) | @Override method isEntityUpdateable (line 234) | @Override FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/SimpleEntityNotNull.java class SimpleEntityNotNull (line 10) | @Entity method SimpleEntityNotNull (line 29) | @Generated method SimpleEntityNotNull (line 33) | public SimpleEntityNotNull(long id) { method SimpleEntityNotNull (line 37) | @Generated method getId (line 51) | public long getId() { method setId (line 55) | public void setId(long id) { method getSimpleBoolean (line 59) | public boolean getSimpleBoolean() { method setSimpleBoolean (line 63) | public void setSimpleBoolean(boolean simpleBoolean) { method getSimpleByte (line 67) | public byte getSimpleByte() { method setSimpleByte (line 71) | public void setSimpleByte(byte simpleByte) { method getSimpleShort (line 75) | public short getSimpleShort() { method setSimpleShort (line 79) | public void setSimpleShort(short simpleShort) { method getSimpleInt (line 83) | public int getSimpleInt() { method setSimpleInt (line 87) | public void setSimpleInt(int simpleInt) { method getSimpleLong (line 91) | public long getSimpleLong() { method setSimpleLong (line 95) | public void setSimpleLong(long simpleLong) { method getSimpleFloat (line 99) | public float getSimpleFloat() { method setSimpleFloat (line 103) | public void setSimpleFloat(float simpleFloat) { method getSimpleDouble (line 107) | public double getSimpleDouble() { method setSimpleDouble (line 111) | public void setSimpleDouble(double simpleDouble) { method getSimpleString (line 115) | @NotNull method setSimpleString (line 121) | public void setSimpleString(@NotNull String simpleString) { method getSimpleByteArray (line 125) | @NotNull method setSimpleByteArray (line 131) | public void setSimpleByteArray(@NotNull byte[] simpleByteArray) { FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/SimpleEntityNotNullDao.java class SimpleEntityNotNullDao (line 16) | public class SimpleEntityNotNullDao extends AbstractDao { class Properties (line 24) | public static class Properties { method SqliteMasterDao (line 33) | public SqliteMasterDao(DaoConfig config) { method SqliteMasterDao (line 37) | public SqliteMasterDao(DaoConfig config, DaoSession daoSession) { method bindValues (line 41) | @Override method bindValues (line 71) | @Override method readKey (line 101) | @Override method readEntity (line 106) | @Override method readEntity (line 118) | @Override method updateKeyAfterInsert (line 127) | @Override method getKey (line 133) | @Override method hasKey (line 138) | @Override method isEntityUpdateable (line 144) | @Override FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/StringKeyValueEntity.java class StringKeyValueEntity (line 10) | @Entity method StringKeyValueEntity (line 17) | @Generated method StringKeyValueEntity (line 21) | public StringKeyValueEntity(String key) { method StringKeyValueEntity (line 25) | @Generated method getKey (line 31) | public String getKey() { method setKey (line 35) | public void setKey(String key) { method getValue (line 39) | public String getValue() { method setValue (line 43) | public void setValue(String value) { FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/StringKeyValueEntityDao.java class StringKeyValueEntityDao (line 16) | public class StringKeyValueEntityDao extends AbstractDao { class Properties (line 24) | public static class Properties { method TestEntityDao (line 38) | public TestEntityDao(DaoConfig config) { method TestEntityDao (line 42) | public TestEntityDao(DaoConfig config, DaoSession daoSession) { method createTable (line 47) | public static void createTable(Database db, boolean ifNotExists) { method dropTable (line 68) | public static void dropTable(Database db, boolean ifExists) { method bindValues (line 73) | @Override method bindValues (line 120) | @Override method readKey (line 167) | @Override method readEntity (line 172) | @Override method readEntity (line 189) | @Override method updateKeyAfterInsert (line 203) | @Override method getKey (line 209) | @Override method hasKey (line 218) | @Override method isEntityUpdateable (line 223) | @Override FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/TestInterface.java type TestInterface (line 3) | public interface TestInterface { FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/TestSuperclass.java class TestSuperclass (line 3) | public class TestSuperclass { FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/ToManyEntity.java class ToManyEntity (line 14) | @Entity(active = true) method ToManyEntity (line 58) | @Generated method ToManyEntity (line 62) | public ToManyEntity(Long id) { method ToManyEntity (line 66) | @Generated method __setDaoSession (line 73) | @Generated method getId (line 79) | public Long getId() { method setId (line 83) | public void setId(Long id) { method getSourceJoinProperty (line 87) | public String getSourceJoinProperty() { method setSourceJoinProperty (line 91) | public void setSourceJoinProperty(String sourceJoinProperty) { method getToManyTargetEntityList (line 96) | @Generated method resetToManyTargetEntityList (line 112) | @Generated method getToManyDescList (line 118) | @Generated method resetToManyDescList (line 134) | @Generated method getToManyByJoinProperty (line 140) | @Generated method resetToManyByJoinProperty (line 156) | @Generated method getToManyJoinTwo (line 162) | @Generated method resetToManyJoinTwo (line 178) | @Generated method getDateEntityList (line 184) | @Generated method resetDateEntityList (line 200) | @Generated method delete (line 209) | @Generated method update (line 219) | @Generated method refresh (line 229) | @Generated method __throwIfDetached (line 235) | @Generated FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/ToManyEntityDao.java class ToManyEntityDao (line 16) | public class ToManyEntityDao extends AbstractDao { class Properties (line 24) | public static class Properties { method ToManyEntityDao (line 32) | public ToManyEntityDao(DaoConfig config) { method ToManyEntityDao (line 36) | public ToManyEntityDao(DaoConfig config, DaoSession daoSession) { method createTable (line 42) | public static void createTable(Database db, boolean ifNotExists) { method dropTable (line 50) | public static void dropTable(Database db, boolean ifExists) { method bindValues (line 55) | @Override method bindValues (line 70) | @Override method attachEntity (line 85) | @Override method readKey (line 91) | @Override method readEntity (line 96) | @Override method readEntity (line 105) | @Override method updateKeyAfterInsert (line 111) | @Override method getKey (line 117) | @Override method hasKey (line 126) | @Override method isEntityUpdateable (line 131) | @Override FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/ToManyTargetEntity.java class ToManyTargetEntity (line 10) | @Entity method ToManyTargetEntity (line 19) | @Generated method ToManyTargetEntity (line 23) | public ToManyTargetEntity(Long id) { method ToManyTargetEntity (line 27) | @Generated method getToManyId (line 35) | public Long getToManyId() { method setToManyId (line 39) | public void setToManyId(Long toManyId) { method getToManyIdDesc (line 43) | public Long getToManyIdDesc() { method setToManyIdDesc (line 47) | public void setToManyIdDesc(Long toManyIdDesc) { method getId (line 51) | public Long getId() { method setId (line 55) | public void setId(Long id) { method getTargetJoinProperty (line 59) | public String getTargetJoinProperty() { method setTargetJoinProperty (line 63) | public void setTargetJoinProperty(String targetJoinProperty) { FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/ToManyTargetEntityDao.java class ToManyTargetEntityDao (line 19) | public class ToManyTargetEntityDao extends AbstractDao _queryToManyEntity_ToManyTargetEntityL... method _queryToManyEntity_ToManyDescList (line 178) | public List _queryToManyEntity_ToManyDescList(Long... method _queryToManyEntity_ToManyByJoinProperty (line 193) | public List _queryToManyEntity_ToManyByJoinPropert... method _queryToManyEntity_ToManyJoinTwo (line 208) | public List _queryToManyEntity_ToManyJoinTwo(Long ... FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/TreeEntity.java class TreeEntity (line 14) | @Entity(active = true) method TreeEntity (line 40) | @Generated method TreeEntity (line 44) | public TreeEntity(Long id) { method TreeEntity (line 48) | @Generated method __setDaoSession (line 55) | @Generated method getId (line 61) | public Long getId() { method setId (line 65) | public void setId(Long id) { method getParentId (line 69) | public Long getParentId() { method setParentId (line 73) | public void setParentId(Long parentId) { method getParent (line 78) | @Generated method setParent (line 93) | @Generated method getChildren (line 103) | @Generated method resetChildren (line 119) | @Generated method delete (line 128) | @Generated method update (line 138) | @Generated method refresh (line 148) | @Generated method __throwIfDetached (line 154) | @Generated FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/TreeEntityDao.java class TreeEntityDao (line 21) | public class TreeEntityDao extends AbstractDao { class Properties (line 29) | public static class Properties { method TreeEntityDao (line 38) | public TreeEntityDao(DaoConfig config) { method TreeEntityDao (line 42) | public TreeEntityDao(DaoConfig config, DaoSession daoSession) { method createTable (line 48) | public static void createTable(Database db, boolean ifNotExists) { method dropTable (line 56) | public static void dropTable(Database db, boolean ifExists) { method bindValues (line 61) | @Override method bindValues (line 76) | @Override method attachEntity (line 91) | @Override method readKey (line 97) | @Override method readEntity (line 102) | @Override method readEntity (line 111) | @Override method updateKeyAfterInsert (line 117) | @Override method getKey (line 123) | @Override method hasKey (line 132) | @Override method isEntityUpdateable (line 137) | @Override method _queryTreeEntity_Children (line 143) | public List _queryTreeEntity_Children(Long parentId) { method getSelectDeep (line 158) | protected String getSelectDeep() { method loadCurrentDeep (line 172) | protected TreeEntity loadCurrentDeep(Cursor cursor, boolean lock) { method loadDeep (line 182) | public TreeEntity loadDeep(Long key) { method loadAllDeepFromCursor (line 210) | public List loadAllDeepFromCursor(Cursor cursor) { method loadDeepAllAndCloseCursor (line 232) | protected List loadDeepAllAndCloseCursor(Cursor cursor) { method queryDeep (line 242) | public List queryDeep(String where, String... selectionArg) { FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest/customtype/IntegerListConverter.java class IntegerListConverter (line 27) | public class IntegerListConverter implements PropertyConverter { class Properties (line 26) | public static class Properties { method KeepEntityDao (line 31) | public KeepEntityDao(DaoConfig config) { method KeepEntityDao (line 35) | public KeepEntityDao(DaoConfig config, DaoSession daoSession) { method createTable (line 40) | public static void createTable(Database db, boolean ifNotExists) { method dropTable (line 47) | public static void dropTable(Database db, boolean ifExists) { method bindValues (line 52) | @Override method bindValues (line 62) | @Override method readKey (line 72) | @Override method readEntity (line 77) | @Override method readEntity (line 85) | @Override method updateKeyAfterInsert (line 90) | @Override method getKey (line 96) | @Override method hasKey (line 105) | @Override method isEntityUpdateable (line 110) | @Override FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest2/dao/ToManyTarget2Dao.java class ToManyTarget2Dao (line 21) | public class ToManyTarget2Dao extends AbstractDao { class Properties (line 29) | public static class Properties { method ToManyTarget2Dao (line 36) | public ToManyTarget2Dao(DaoConfig config) { method ToManyTarget2Dao (line 40) | public ToManyTarget2Dao(DaoConfig config, DaoSession daoSession) { method createTable (line 45) | public static void createTable(Database db, boolean ifNotExists) { method dropTable (line 53) | public static void dropTable(Database db, boolean ifExists) { method bindValues (line 58) | @Override method bindValues (line 73) | @Override method readKey (line 88) | @Override method readEntity (line 93) | @Override method readEntity (line 102) | @Override method updateKeyAfterInsert (line 108) | @Override method getKey (line 114) | @Override method hasKey (line 123) | @Override method isEntityUpdateable (line 128) | @Override method _queryRelationSource2_ToManyTarget2List (line 134) | public List _queryRelationSource2_ToManyTarget2List(Lon... FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest2/specialdao/RelationSource2Dao.java class RelationSource2Dao (line 25) | public class RelationSource2Dao extends AbstractDao loadAllDeepFromCursor(Cursor cursor) { method loadDeepAllAndCloseCursor (line 221) | protected List loadDeepAllAndCloseCursor(Cursor curso... method queryDeep (line 231) | public List queryDeep(String where, String... selecti... FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest2/specialentity/RelationSource2.java class RelationSource2 (line 23) | @Entity(active = true) method RelationSource2 (line 52) | @Generated method RelationSource2 (line 56) | public RelationSource2(Long id) { method RelationSource2 (line 60) | @Generated method __setDaoSession (line 67) | @Generated method getId (line 73) | public Long getId() { method setId (line 77) | public void setId(Long id) { method getToOneId (line 81) | public Long getToOneId() { method setToOneId (line 85) | public void setToOneId(Long toOneId) { method getToOneTarget2 (line 90) | @Generated method setToOneTarget2 (line 105) | @Generated method getToManyTarget2List (line 115) | @Generated method resetToManyTarget2List (line 131) | @Generated method delete (line 140) | @Generated method update (line 150) | @Generated method refresh (line 160) | @Generated method __throwIfDetached (line 166) | @Generated FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest2/to1_specialdao/ToOneTarget2Dao.java class ToOneTarget2Dao (line 20) | public class ToOneTarget2Dao extends AbstractDao { class Properties (line 28) | public static class Properties { method ToOneTarget2Dao (line 33) | public ToOneTarget2Dao(DaoConfig config) { method ToOneTarget2Dao (line 37) | public ToOneTarget2Dao(DaoConfig config, DaoSession daoSession) { method createTable (line 42) | public static void createTable(Database db, boolean ifNotExists) { method dropTable (line 49) | public static void dropTable(Database db, boolean ifExists) { method bindValues (line 54) | @Override method bindValues (line 64) | @Override method readKey (line 74) | @Override method readEntity (line 79) | @Override method readEntity (line 87) | @Override method updateKeyAfterInsert (line 92) | @Override method getKey (line 98) | @Override method hasKey (line 107) | @Override method isEntityUpdateable (line 112) | @Override FILE: tests/DaoTestBase/src/main/java/org/greenrobot/greendao/daotest2/to1_specialentity/ToOneTarget2.java class ToOneTarget2 (line 13) | @Entity method ToOneTarget2 (line 22) | @Generated method ToOneTarget2 (line 26) | @Generated method getId (line 31) | public Long getId() { method setId (line 35) | public void setId(Long id) { FILE: tests/DaoTestEntityAnnotation/src/androidTest/java/org/greenrobot/greendao/test/entityannotation/CustomerOrderTest.java class CustomerOrderTest (line 8) | public class CustomerOrderTest extends AbstractDaoSessionTest { method OrderTest (line 7) | public OrderTest() { method createEntity (line 11) | @Override FILE: tests/DaoTestEntityAnnotation/src/androidTest/java/org/greenrobot/greendao/test/entityannotation/TypesInInnerClassTest.java class TypesInInnerClassTest (line 6) | public class TypesInInnerClassTest extends AbstractDaoTestLongPk> columns) { FILE: tests/DaoTestPerformance/src/androidTest/java/org/greenrobot/greendao/performance/IndexedStringPerformanceTest.java class IndexedStringPerformanceTest (line 34) | public class IndexedStringPerformanceTest method IndexedStringPerformanceTest (line 41) | public IndexedStringPerformanceTest() { method testIndexedStringEntityQuery (line 45) | public void testIndexedStringEntityQuery() { method doIndexedStringEntityQuery (line 55) | private void doIndexedStringEntityQuery() { FILE: tests/DaoTestPerformance/src/androidTest/java/org/greenrobot/greendao/performance/LoockupPerformanceTest.java class LoockupPerformanceTest (line 33) | public class LoockupPerformanceTest extends TestCase { method LoockupPerformanceTest (line 39) | public LoockupPerformanceTest() { method testHashMapPerformance (line 43) | public void testHashMapPerformance() { method runTests (line 51) | private void runTests(int count) { method runTests (line 56) | private void runTests(int count, boolean randomKeys) { method runMapTest (line 80) | protected void runMapTest(Map map, long[] keys, String n... method runLongSparseArrayTest (line 102) | private void runLongSparseArrayTest(long[] keys) { method runLongHashMapJDBMTest (line 125) | private void runLongHashMapJDBMTest(long[] keys) { method runLongHashMap (line 144) | private void runLongHashMap(long[] keys) { method runLongHashMapAmarena2DZechnerTest (line 165) | private void runLongHashMapAmarena2DZechnerTest(long[] keys) { method startClock (line 185) | protected void startClock(String traceName) { method stopClock (line 190) | protected void stopClock() { method stopClock (line 194) | protected void stopClock(String extraInfoOrNull) { FILE: tests/DaoTestPerformance/src/androidTest/java/org/greenrobot/greendao/performance/PerformanceTest.java class PerformanceTest (line 34) | public abstract class PerformanceTest, T, K> method PerformanceTest (line 44) | public PerformanceTest(Class daoClass) { method setUp (line 48) | @Override method _testPerformanceOneByOne (line 66) | public void _testPerformanceOneByOne() throws Exception { method getBenchFile (line 82) | private File getBenchFile(String name) { method testPerformanceBatch (line 95) | public void testPerformanceBatch() throws Exception { method runOneByOneTests (line 111) | protected void runOneByOneTests(List list, int loadCount, int modif... method runLoadOneByOne (line 144) | protected List runLoadOneByOne(List keys, String traceName) { method runBatchTests (line 154) | protected void runBatchTests(List list) { method runLoadAll (line 173) | protected List runLoadAll(String traceName) { method startClock (line 180) | protected void startClock(String name) { method stopClock (line 187) | protected void stopClock() { method createEntity (line 194) | protected abstract T createEntity(); method accessAll (line 200) | protected abstract void accessAll(List list, String traceName); FILE: tests/DaoTestPerformance/src/androidTest/java/org/greenrobot/greendao/performance/PerformanceTestNotNull.java class PerformanceTestNotNull (line 27) | public class PerformanceTestNotNull extends PerformanceTest T[] emptyArray(Class kind) { method contains (line 127) | public static boolean contains(T[] array, T value) { FILE: tests/DaoTestPerformance/src/androidTest/java/org/greenrobot/greendao/performance/target/LongHashMapAmarena2DZechner.java class LongHashMapAmarena2DZechner (line 32) | public class LongHashMapAmarena2DZechner { method LongHashMapAmarena2DZechner (line 38) | public LongHashMapAmarena2DZechner() { method LongHashMapAmarena2DZechner (line 42) | public LongHashMapAmarena2DZechner(int initialCapacity) { method LongHashMapAmarena2DZechner (line 46) | public LongHashMapAmarena2DZechner(int initialCapacity, float loadFact... method containsValue (line 63) | public boolean containsValue(Object value) { method containsKey (line 72) | public boolean containsKey(long key) { method get (line 80) | @SuppressWarnings("unchecked") method put (line 89) | @SuppressWarnings("unchecked") method remove (line 128) | @SuppressWarnings("unchecked") method size (line 150) | public int size() { method clear (line 154) | public void clear() { class Entry (line 161) | static class Entry { method Entry (line 166) | Entry(long k, Object v, Entry n) { method values (line 175) | public Iterable values() { class EntryIterable (line 180) | class EntryIterable implements Iterable { method hasNext (line 185) | @Override method loadNextEntry (line 201) | @SuppressWarnings("synthetic-access") method next (line 217) | @SuppressWarnings("unchecked") method remove (line 223) | @Override method reset (line 230) | public void reset() { method iterator (line 235) | @Override method logStats (line 242) | public void logStats() { FILE: tests/DaoTestPerformance/src/androidTest/java/org/greenrobot/greendao/performance/target/LongHashMapJDBM.java class LongHashMapJDBM (line 38) | public class LongHashMapJDBM implements Serializable { class Entry (line 55) | static final class Entry { method equals (line 62) | public boolean equals(Object object) { method hashCode (line 77) | public int hashCode() { method toString (line 84) | public String toString() { method Entry (line 90) | Entry(long theKey) { method Entry (line 95) | Entry(long theKey, V theValue) { type EntryType (line 104) | interface EntryType { method get (line 105) | RT get(Entry entry); class HashMapIterator (line 108) | static class HashMapIterator implements Iterator { method HashMapIterator (line 123) | HashMapIterator(EntryType value, LongHashMapJDBM hm) { method hasNext (line 129) | public boolean hasNext() { method checkConcurrentMod (line 153) | void checkConcurrentMod() throws ConcurrentModificationException { method next (line 159) | public E next() { method remove (line 186) | public void remove() { method newElementArray (line 218) | @SuppressWarnings("unchecked") method LongHashMapJDBM (line 228) | public LongHashMapJDBM() { method LongHashMapJDBM (line 241) | public LongHashMapJDBM(int capacity) { method LongHashMapJDBM (line 265) | public LongHashMapJDBM(int capacity, float loadFactor) { method clear (line 287) | public void clear() { method computeMaxSize (line 304) | private void computeMaxSize() { method containsKey (line 318) | public boolean containsKey(long key) { method containsValue (line 335) | public boolean containsValue(Object value) { method get (line 371) | public V get(long key) { method findNonNullKeyEntry (line 383) | final Entry findNonNullKeyEntry(long key, int index, int keyHash) { method isEmpty (line 407) | public boolean isEmpty() { method put (line 438) | public V put(long key, V value) { method createEntry (line 458) | Entry createEntry(long key, int index, V value) { method createHashedEntry (line 473) | Entry createHashedEntry(long key, int index) { method rehash (line 489) | void rehash(int capacity) { method rehash (line 507) | void rehash() { method remove (line 521) | public V remove(long key) { method removeEntry (line 533) | Entry removeEntry(long key) { method size (line 567) | public int size() { method valuesIterator (line 574) | public Iterator valuesIterator() { FILE: tests/DaoTestPerformance/src/androidTest/java/org/greenrobot/greendao/performance/target/LongSparseArray.java class LongSparseArray (line 30) | public class LongSparseArray { method LongSparseArray (line 37) | public LongSparseArray() { method LongSparseArray (line 46) | public LongSparseArray(int initialCapacity) { method getKeys (line 57) | public long[] getKeys() { method setValues (line 69) | public void setValues(long[] keys, E uniqueValue) { method get (line 80) | public E get(long key) { method get (line 88) | public E get(long key, E valueIfKeyNotFound) { method delete (line 101) | public void delete(long key) { method remove (line 115) | public void remove(long key) { method gc (line 119) | private void gc() { method put (line 151) | public void put(long key, E value) { method size (line 202) | public int size() { method keyAt (line 215) | public long keyAt(int index) { method valueAt (line 228) | public E valueAt(int index) { method setValueAt (line 241) | public void setValueAt(int index, E value) { method indexOfKey (line 254) | public int indexOfKey(long key) { method indexOfValue (line 270) | public int indexOfValue(E value) { method clear (line 285) | public void clear() { method append (line 301) | public void append(long key, E value) { method binarySearch (line 331) | private static int binarySearch(long[] a, int start, int len, long key) { method checkIntegrity (line 351) | private void checkIntegrity() {