SYMBOL INDEX (1212 symbols across 127 files) FILE: core/src/main/java/org/litepal/FluentQuery.java class FluentQuery (line 40) | public class FluentQuery { method FluentQuery (line 70) | FluentQuery() { method select (line 88) | public FluentQuery select(String... columns) { method where (line 108) | public FluentQuery where(String... conditions) { method order (line 129) | public FluentQuery order(String column) { method limit (line 148) | public FluentQuery limit(int value) { method offset (line 167) | public FluentQuery offset(int value) { method find (line 197) | public List find(Class modelClass) { method findAsync (line 205) | @Deprecated method find (line 223) | public List find(Class modelClass, boolean isEager) { method findAsync (line 243) | @Deprecated method findFirst (line 283) | public T findFirst(Class modelClass) { method findFirstAsync (line 291) | @Deprecated method findFirst (line 309) | public T findFirst(Class modelClass, boolean isEager) { method findFirstAsync (line 329) | @Deprecated method findLast (line 369) | public T findLast(Class modelClass) { method findLastAsync (line 377) | @Deprecated method findLast (line 395) | public T findLast(Class modelClass, boolean isEager) { method findLastAsync (line 432) | @Deprecated method count (line 473) | public int count(Class modelClass) { method countAsync (line 481) | @Deprecated method count (line 504) | public int count(String tableName) { method countAsync (line 515) | @Deprecated method average (line 557) | public double average(Class modelClass, String column) { method averageAsync (line 565) | @Deprecated method average (line 589) | public double average(String tableName, String column) { method averageAsync (line 600) | @Deprecated method max (line 645) | public T max(Class modelClass, String columnName, Class colu... method maxAsync (line 653) | @Deprecated method max (line 680) | public T max(String tableName, String columnName, Class columnT... method maxAsync (line 691) | @Deprecated method min (line 736) | public T min(Class modelClass, String columnName, Class colu... method minAsync (line 744) | @Deprecated method min (line 771) | public T min(String tableName, String columnName, Class columnT... method minAsync (line 782) | @Deprecated method sum (line 827) | public T sum(Class modelClass, String columnName, Class colu... method sumAsync (line 835) | @Deprecated method sum (line 862) | public T sum(String tableName, String columnName, Class columnT... method sumAsync (line 873) | @Deprecated FILE: core/src/main/java/org/litepal/LitePalApplication.java class LitePalApplication (line 45) | public class LitePalApplication extends Application { method LitePalApplication (line 58) | public LitePalApplication() { method getContext (line 68) | public static Context getContext() { FILE: core/src/main/java/org/litepal/LitePalBase.java class LitePalBase (line 59) | public abstract class LitePalBase { method getTableModel (line 118) | protected TableModel getTableModel(String className) { method getAssociations (line 139) | protected Collection getAssociations(List c... method getGenericModels (line 158) | protected Collection getGenericModels() { method getAssociationInfo (line 169) | protected Collection getAssociationInfo(String class... method getSupportedFields (line 188) | protected List getSupportedFields(String className) { method getSupportedGenericFields (line 211) | protected List getSupportedGenericFields(String className) { method isCollection (line 235) | protected boolean isCollection(Class fieldType) { method isList (line 246) | protected boolean isList(Class fieldType) { method isSet (line 257) | protected boolean isSet(Class fieldType) { method isIdColumn (line 269) | protected boolean isIdColumn(String columnName) { method getForeignKeyColumnName (line 282) | protected String getForeignKeyColumnName(String associatedTableName) { method getColumnType (line 292) | protected String getColumnType(String fieldType) { method getGenericTypeClass (line 311) | protected Class getGenericTypeClass(Field field) { method recursiveSupportedFields (line 322) | private void recursiveSupportedFields(Class clazz, List supp... method recursiveSupportedGenericFields (line 346) | private void recursiveSupportedGenericFields(Class clazz, List getClassNames() { method addClassName (line 134) | public void addClassName(String className) { method setClassNames (line 138) | void setClassNames(List className) { FILE: core/src/main/java/org/litepal/Operator.java class Operator (line 63) | public class Operator { method getHandler (line 73) | public static Handler getHandler() { method initialize (line 85) | public static void initialize(Context context) { method getDatabase (line 94) | public static SQLiteDatabase getDatabase() { method beginTransaction (line 101) | public static void beginTransaction() { method endTransaction (line 108) | public static void endTransaction() { method setTransactionSuccessful (line 117) | public static void setTransactionSuccessful() { method use (line 126) | public static void use(LitePalDB litePalDB) { method useDefault (line 145) | public static void useDefault() { method deleteDatabase (line 158) | public static boolean deleteDatabase(String dbName) { method aesKey (line 186) | public static void aesKey(String key) { method removeVersionInSharedPreferences (line 195) | private static void removeVersionInSharedPreferences(String dbName) { method isDefaultDatabase (line 210) | private static boolean isDefaultDatabase(String dbName) { method select (line 240) | public static FluentQuery select(String... columns) { method where (line 261) | public static FluentQuery where(String... conditions) { method order (line 283) | public static FluentQuery order(String column) { method limit (line 303) | public static FluentQuery limit(int value) { method offset (line 323) | public static FluentQuery offset(int value) { method count (line 347) | public static int count(Class modelClass) { method countAsync (line 355) | @Deprecated method count (line 378) | public static int count(String tableName) { method countAsync (line 389) | @Deprecated method average (line 431) | public static double average(Class modelClass, String column) { method averageAsync (line 439) | @Deprecated method average (line 463) | public static double average(String tableName, String column) { method averageAsync (line 474) | @Deprecated method max (line 519) | public static T max(Class modelClass, String columnName, Class<... method maxAsync (line 527) | @Deprecated method max (line 554) | public static T max(String tableName, String columnName, Class ... method maxAsync (line 565) | @Deprecated method min (line 610) | public static T min(Class modelClass, String columnName, Class<... method minAsync (line 618) | @Deprecated method min (line 645) | public static T min(String tableName, String columnName, Class ... method minAsync (line 656) | @Deprecated method sum (line 701) | public static T sum(Class modelClass, String columnName, Class<... method sumAsync (line 709) | @Deprecated method sum (line 736) | public static T sum(String tableName, String columnName, Class ... method sumAsync (line 747) | @Deprecated method find (line 790) | public static T find(Class modelClass, long id) { method findAsync (line 798) | @Deprecated method find (line 818) | public static T find(Class modelClass, long id, boolean isEager) { method findAsync (line 829) | @Deprecated method findFirst (line 867) | public static T findFirst(Class modelClass) { method findFirstAsync (line 875) | @Deprecated method findFirst (line 893) | public static T findFirst(Class modelClass, boolean isEager) { method findFirstAsync (line 904) | @Deprecated method findLast (line 942) | public static T findLast(Class modelClass) { method findLastAsync (line 950) | @Deprecated method findLast (line 968) | public static T findLast(Class modelClass, boolean isEager) { method findLastAsync (line 979) | @Deprecated method findAll (line 1032) | public static List findAll(Class modelClass, long... ids) { method findAllAsync (line 1040) | @Deprecated method findAll (line 1060) | public static List findAll(Class modelClass, boolean isEager, method findAllAsync (line 1072) | @Deprecated method findBySQL (line 1111) | public static Cursor findBySQL(String... sql) { method delete (line 1148) | public static int delete(Class modelClass, long id) { method deleteAsync (line 1168) | @Deprecated method deleteAll (line 1215) | public static int deleteAll(Class modelClass, String... conditions) { method deleteAllAsync (line 1235) | @Deprecated method deleteAll (line 1285) | public static int deleteAll(String tableName, String... conditions) { method deleteAllAsync (line 1296) | @Deprecated method update (line 1340) | public static int update(Class modelClass, ContentValues values, lo... method updateAsync (line 1351) | @Deprecated method updateAll (line 1403) | public static int updateAll(Class modelClass, ContentValues values, method updateAllAsync (line 1413) | @Deprecated method updateAll (line 1448) | public static int updateAll(String tableName, ContentValues values, method updateAllAsync (line 1460) | @Deprecated method saveAll (line 1509) | public static boolean saveAll(Collection... method saveAllAsync (line 1531) | @Deprecated method markAsDeleted (line 1568) | public static void markAsDeleted(Collection... method isExist (line 1584) | public static boolean isExist(Class modelClass, String... condi... method registerDatabaseListener (line 1591) | public static void registerDatabaseListener(DatabaseListener listener) { method getDBListener (line 1595) | public static DatabaseListener getDBListener() { FILE: core/src/main/java/org/litepal/crud/AssociationsAnalyzer.java class AssociationsAnalyzer (line 36) | abstract class AssociationsAnalyzer extends DataHandler { method getReverseAssociatedModels (line 54) | @SuppressWarnings("unchecked") method setReverseAssociatedModels (line 79) | protected void setReverseAssociatedModels(LitePalSupport associatedModel, method checkAssociatedModelCollection (line 103) | protected Collection checkAssociatedModelCollection( method buildBidirectionalAssociations (line 135) | protected void buildBidirectionalAssociations(LitePalSupport baseObj, ... method dealsAssociationsOnTheSideWithoutFK (line 153) | protected void dealsAssociationsOnTheSideWithoutFK(LitePalSupport base... method mightClearFKValue (line 178) | protected void mightClearFKValue(LitePalSupport baseObj, AssociationsI... method getForeignKeyName (line 189) | private String getForeignKeyName(AssociationsInfo associationInfo) { FILE: core/src/main/java/org/litepal/crud/DataHandler.java class DataHandler (line 60) | abstract class DataHandler extends LitePalBase { method query (line 124) | @SuppressWarnings("unchecked") method mathQuery (line 180) | @SuppressWarnings("unchecked") method giveBaseObjIdValue (line 212) | protected void giveBaseObjIdValue(LitePalSupport baseObj, long id) thr... method putFieldsValue (line 231) | protected void putFieldsValue(LitePalSupport baseObj, List supp... method putContentValuesForSave (line 254) | protected void putContentValuesForSave(LitePalSupport baseObj, Field f... method putContentValuesForUpdate (line 305) | protected void putContentValuesForUpdate(LitePalSupport baseObj, Field... method encryptValue (line 334) | protected Object encryptValue(String algorithm, Object fieldValue) { method getFieldValue (line 354) | protected Object getFieldValue(LitePalSupport dataSupport, Field field) method setFieldValue (line 373) | protected void setFieldValue(LitePalSupport dataSupport, Field field, ... method analyzeAssociatedModels (line 387) | protected void analyzeAssociatedModels(LitePalSupport baseObj, Collect... method getAssociatedModel (line 412) | protected LitePalSupport getAssociatedModel(LitePalSupport baseObj, As... method getAssociatedModels (line 429) | @SuppressWarnings("unchecked") method getEmptyModel (line 444) | protected LitePalSupport getEmptyModel(LitePalSupport baseObj) { method getWhereClause (line 473) | protected String getWhereClause(String... conditions) { method getWhereArgs (line 493) | protected String[] getWhereArgs(String... conditions) { method isAffectAllLines (line 513) | protected boolean isAffectAllLines(Object... conditions) { method getWhereOfIdsWithOr (line 525) | protected String getWhereOfIdsWithOr(Collection ids) { method getWhereOfIdsWithOr (line 546) | protected String getWhereOfIdsWithOr(long... ids) { method shouldGetOrSet (line 571) | protected boolean shouldGetOrSet(LitePalSupport dataSupport, Field fie... method getIntermediateTableName (line 584) | protected String getIntermediateTableName(LitePalSupport baseObj, Stri... method getTableName (line 597) | protected String getTableName(Class modelClass) { method createInstanceFromClass (line 611) | protected Object createInstanceFromClass(Class modelClass) { method findBestSuitConstructor (line 629) | protected Constructor findBestSuitConstructor(Class modelClass) { method getConstructorParams (line 675) | protected Object[] getConstructorParams(Class modelClass, Construct... method setValueToModel (line 700) | protected void setValueToModel(Object modelInstance, List suppo... method setGenericValueToModel (line 759) | protected void setGenericValueToModel(LitePalSupport baseObj, List getForeignKeyAssociations(String clas... method getParameterTypes (line 838) | protected Class[] getParameterTypes(Field field, Object fieldValue,... method getObjectType (line 865) | private Class getObjectType(Class primitiveType) { method getInitParamValue (line 901) | private Object getInitParamValue(Class modelClass, Class paramTy... method isCharType (line 943) | private boolean isCharType(Field field) { method isPrimitiveBooleanType (line 958) | private boolean isPrimitiveBooleanType(Field field) { method putFieldsValueDependsOnSaveOrUpdate (line 976) | private void putFieldsValueDependsOnSaveOrUpdate(LitePalSupport baseOb... method isUpdating (line 994) | private boolean isUpdating() { method isSaving (line 1004) | private boolean isSaving() { method isFieldWithDefaultValue (line 1020) | private boolean isFieldWithDefaultValue(LitePalSupport baseObj, Field ... method makeGetterMethodName (line 1040) | protected String makeGetterMethodName(Field field) { method makeSetterMethodName (line 1065) | protected String makeSetterMethodName(Field field) { method genGetColumnMethod (line 1089) | private String genGetColumnMethod(Field field) { method genGetColumnMethod (line 1110) | private String genGetColumnMethod(Class fieldType) { method getCustomizedColumns (line 1147) | private String[] getCustomizedColumns(String[] columns, List su... method analyzeAssociations (line 1213) | private void analyzeAssociations(String className) { method setAssociatedModel (line 1245) | @SuppressWarnings({ "rawtypes", "unchecked" }) method setToModelByReflection (line 1319) | @SuppressWarnings("unchecked") method decryptValue (line 1382) | protected Object decryptValue(String algorithm, Object fieldValue) { class QueryInfoCache (line 1396) | static class QueryInfoCache { FILE: core/src/main/java/org/litepal/crud/DeleteHandler.java class DeleteHandler (line 46) | public class DeleteHandler extends DataHandler { method DeleteHandler (line 61) | public DeleteHandler(SQLiteDatabase db) { method onDelete (line 77) | int onDelete(LitePalSupport baseObj) { method onDelete (line 104) | public int onDelete(Class modelClass, long id) { method onDeleteAll (line 127) | public int onDeleteAll(String tableName, String... conditions) { method onDeleteAll (line 136) | @SuppressWarnings("unchecked") method analyzeAssociations (line 170) | private void analyzeAssociations(Class modelClass) { method deleteCascade (line 207) | private int deleteCascade(Class modelClass, long id) { method deleteAllCascade (line 217) | private int deleteAllCascade(Class modelClass, String... conditions) { method buildConditionString (line 235) | private String buildConditionString(String... conditions) { method analyzeAssociations (line 251) | private Collection analyzeAssociations(LitePalSuppor... method clearAssociatedModelSaveState (line 272) | private void clearAssociatedModelSaveState(LitePalSupport baseObj, method deleteCascade (line 313) | private int deleteCascade(LitePalSupport baseObj) { method deleteAssociatedForeignKeyRows (line 328) | private int deleteAssociatedForeignKeyRows(LitePalSupport baseObj) { method deleteAssociatedJoinTableRows (line 348) | private int deleteAssociatedJoinTableRows(LitePalSupport baseObj) { method getForeignKeyTableToDelete (line 368) | private List getForeignKeyTableToDelete() { method deleteGenericData (line 384) | private void deleteGenericData(Class modelClass, List suppor... FILE: core/src/main/java/org/litepal/crud/DynamicExecutor.java class DynamicExecutor (line 32) | class DynamicExecutor { method DynamicExecutor (line 37) | private DynamicExecutor() { method send (line 61) | static Object send(Object object, String methodName, Object[] paramete... method set (line 80) | static void set(Object object, String fieldName, Object value, Class objec... FILE: core/src/main/java/org/litepal/crud/LitePalSupport.java class LitePalSupport (line 66) | public class LitePalSupport { method delete (line 140) | public int delete() { method deleteAsync (line 160) | @Deprecated method update (line 204) | public int update(long id) { method updateAsync (line 226) | @Deprecated method updateAll (line 278) | public int updateAll(String... conditions) { method updateAllAsync (line 300) | @Deprecated method save (line 347) | public boolean save() { method saveAsync (line 361) | @Deprecated method saveThrows (line 408) | public void saveThrows() { method saveOrUpdate (line 456) | @SuppressWarnings("unchecked") method saveOrUpdateAsync (line 491) | @Deprecated method isSaved (line 519) | public boolean isSaved() { method clearSavedState (line 526) | public void clearSavedState() { method setToDefault (line 538) | public void setToDefault(String fieldName) { method assignBaseObjId (line 548) | public void assignBaseObjId(long baseObjId) { method LitePalSupport (line 556) | protected LitePalSupport() { method getBaseObjId (line 565) | protected long getBaseObjId() { method getClassName (line 574) | protected String getClassName() { method getTableName (line 583) | protected String getTableName() { method getFieldsToSetToDefault (line 594) | List getFieldsToSetToDefault() { method addAssociatedModelWithFK (line 611) | void addAssociatedModelWithFK(String associatedTableName, long associa... method getAssociatedModelsMapWithFK (line 630) | Map> getAssociatedModelsMapWithFK() { method addAssociatedModelForJoinTable (line 645) | void addAssociatedModelForJoinTable(String associatedModelName, long a... method addEmptyModelForJoinTable (line 665) | void addEmptyModelForJoinTable(String associatedModelName) { method getAssociatedModelsMapForJoinTable (line 682) | Map> getAssociatedModelsMapForJoinTable() { method addAssociatedModelWithoutFK (line 700) | void addAssociatedModelWithoutFK(String associatedTableName, long asso... method getAssociatedModelsMapWithoutFK (line 711) | Map getAssociatedModelsMapWithoutFK() { method addFKNameToClearSelf (line 724) | void addFKNameToClearSelf(String foreignKeyName) { method getListToClearSelfFK (line 737) | List getListToClearSelfFK() { method addAssociatedTableNameToClearFK (line 750) | void addAssociatedTableNameToClearFK(String associatedTableName) { method getListToClearAssociatedFK (line 763) | List getListToClearAssociatedFK() { method clearAssociatedData (line 773) | void clearAssociatedData() { method clearIdOfModelWithFK (line 783) | private void clearIdOfModelWithFK() { method clearIdOfModelWithoutFK (line 793) | private void clearIdOfModelWithoutFK() { method clearIdOfModelForJoinTable (line 800) | private void clearIdOfModelForJoinTable() { method clearFKNameList (line 810) | private void clearFKNameList() { FILE: core/src/main/java/org/litepal/crud/Many2ManyAnalyzer.java class Many2ManyAnalyzer (line 38) | public class Many2ManyAnalyzer extends AssociationsAnalyzer { method analyze (line 60) | void analyze(LitePalSupport baseObj, AssociationsInfo associationInfo)... method declareAssociations (line 88) | private void declareAssociations(LitePalSupport baseObj, AssociationsI... method addNewModelForAssociatedModel (line 102) | private void addNewModelForAssociatedModel(Collection ... method dealAssociatedModel (line 120) | private void dealAssociatedModel(LitePalSupport baseObj, LitePalSuppor... method getAssociatedTableName (line 135) | private String getAssociatedTableName(AssociationsInfo associationInfo) { method isDataExists (line 153) | @SuppressWarnings("unused") method getSelection (line 183) | private String getSelection(LitePalSupport baseObj, LitePalSupport ass... method getSelectionArgs (line 202) | private String[] getSelectionArgs(LitePalSupport baseObj, LitePalSuppo... method getJoinTableName (line 216) | private String getJoinTableName(LitePalSupport baseObj, LitePalSupport... FILE: core/src/main/java/org/litepal/crud/Many2OneAnalyzer.java class Many2OneAnalyzer (line 33) | class Many2OneAnalyzer extends AssociationsAnalyzer { method analyze (line 56) | void analyze(LitePalSupport baseObj, AssociationsInfo associationInfo)... method analyzeManySide (line 86) | private void analyzeManySide(LitePalSupport baseObj, AssociationsInfo ... method analyzeOneSide (line 122) | private void analyzeOneSide(LitePalSupport baseObj, AssociationsInfo a... method dealAssociatedModelOnManySide (line 152) | private void dealAssociatedModelOnManySide(Collection ... method dealAssociatedModelOnOneSide (line 172) | private void dealAssociatedModelOnOneSide(LitePalSupport baseObj, Lite... FILE: core/src/main/java/org/litepal/crud/One2OneAnalyzer.java class One2OneAnalyzer (line 32) | public class One2OneAnalyzer extends AssociationsAnalyzer { method analyze (line 55) | void analyze(LitePalSupport baseObj, AssociationsInfo associationInfo)... method dealAssociatedModel (line 83) | private void dealAssociatedModel(LitePalSupport baseObj, LitePalSuppor... method bidirectionalCondition (line 104) | private void bidirectionalCondition(LitePalSupport baseObj, LitePalSup... method unidirectionalCondition (line 123) | private void unidirectionalCondition(LitePalSupport baseObj, LitePalSu... FILE: core/src/main/java/org/litepal/crud/QueryHandler.java class QueryHandler (line 33) | public class QueryHandler extends DataHandler { method QueryHandler (line 42) | public QueryHandler(SQLiteDatabase db) { method onFind (line 58) | public T onFind(Class modelClass, long id, boolean isEager) { method onFindFirst (line 77) | public T onFindFirst(Class modelClass, boolean isEager) { method onFindLast (line 96) | public T onFindLast(Class modelClass, boolean isEager) { method onFindAll (line 117) | public List onFindAll(Class modelClass, boolean isEager, lon... method onFind (line 152) | public List onFind(Class modelClass, String[] columns, Strin... method onCount (line 175) | public int onCount(String tableName, String[] conditions) { method onAverage (line 196) | public double onAverage(String tableName, String column, String[] cond... method onMax (line 220) | public T onMax(String tableName, String column, String[] condition... method onMin (line 243) | public T onMin(String tableName, String column, String[] condition... method onSum (line 266) | public T onSum(String tableName, String column, String[] condition... FILE: core/src/main/java/org/litepal/crud/SaveHandler.java class SaveHandler (line 48) | public class SaveHandler extends DataHandler { method SaveHandler (line 59) | public SaveHandler(SQLiteDatabase db) { method onSave (line 75) | void onSave(LitePalSupport baseObj) throws SecurityException, IllegalA... method onSaveAll (line 102) | public void onSaveAll(Collection collect... method doSaveAction (line 142) | private void doSaveAction(LitePalSupport baseObj, List supporte... method beforeSave (line 163) | private void beforeSave(LitePalSupport baseObj, List supportedF... method saving (line 180) | private long saving(LitePalSupport baseObj, ContentValues values) { method afterSave (line 199) | private void afterSave(LitePalSupport baseObj, List supportedFi... method doUpdateAction (line 218) | private void doUpdateAction(LitePalSupport baseObj, List suppor... method beforeUpdate (line 240) | private void beforeUpdate(LitePalSupport baseObj, List supporte... method updating (line 260) | private void updating(LitePalSupport baseObj, ContentValues values) { method afterUpdate (line 275) | private void afterUpdate(LitePalSupport baseObj, List supported... method getIdField (line 290) | private Field getIdField(List supportedFields) { method throwIfSaveFailed (line 305) | private void throwIfSaveFailed(long id) { method assignIdValue (line 326) | private void assignIdValue(LitePalSupport baseObj, Field idField, long... method giveModelIdValue (line 350) | private void giveModelIdValue(LitePalSupport baseObj, String idName, C... method putForeignKeyValue (line 373) | private void putForeignKeyValue(ContentValues values, LitePalSupport b... method updateAssociatedTableWithFK (line 387) | private void updateAssociatedTableWithFK(LitePalSupport baseObj) { method clearFKValueInAssociatedTable (line 408) | private void clearFKValueInAssociatedTable(LitePalSupport baseObj) { method insertIntermediateJoinTableValue (line 428) | private void insertIntermediateJoinTableValue(LitePalSupport baseObj, ... method getWhereForJoinTableToDelete (line 457) | private String getWhereForJoinTableToDelete(LitePalSupport baseObj) { method shouldGiveModelIdValue (line 478) | private boolean shouldGiveModelIdValue(String idName, Class idType,... method updateGenericTables (line 492) | private void updateGenericTables(LitePalSupport baseObj, List s... FILE: core/src/main/java/org/litepal/crud/UpdateHandler.java class UpdateHandler (line 48) | public class UpdateHandler extends DataHandler { method UpdateHandler (line 57) | public UpdateHandler(SQLiteDatabase db) { method onUpdate (line 77) | int onUpdate(LitePalSupport baseObj, long id) throws SecurityException... method onUpdate (line 105) | public int onUpdate(Class modelClass, long id, ContentValues values) { method onUpdateAll (line 131) | @SuppressWarnings("unchecked") method onUpdateAll (line 175) | public int onUpdateAll(String tableName, ContentValues values, String.... method doUpdateAllAction (line 199) | private int doUpdateAllAction(String tableName, ContentValues values, ... method putFieldsToDefaultValue (line 219) | private void putFieldsToDefaultValue(LitePalSupport baseObj, ContentVa... method doUpdateAssociations (line 262) | @SuppressWarnings("unused") method analyzeAssociations (line 279) | private void analyzeAssociations(LitePalSupport baseObj) { method updateSelfTableForeignKey (line 292) | private void updateSelfTableForeignKey(LitePalSupport baseObj, Content... method updateAssociatedTableForeignKey (line 303) | private int updateAssociatedTableForeignKey(LitePalSupport baseObj, lo... method updateGenericTables (line 332) | private void updateGenericTables(LitePalSupport baseObj, List s... method convertContentValues (line 383) | private void convertContentValues(ContentValues values) { FILE: core/src/main/java/org/litepal/crud/async/AsyncExecutor.java class AsyncExecutor (line 24) | public abstract class AsyncExecutor { method submit (line 36) | public void submit(Runnable task) { method execute (line 43) | void execute() { FILE: core/src/main/java/org/litepal/crud/async/AverageExecutor.java class AverageExecutor (line 26) | public class AverageExecutor extends AsyncExecutor { method listen (line 35) | public void listen(AverageCallback callback) { method getListener (line 40) | public AverageCallback getListener() { FILE: core/src/main/java/org/litepal/crud/async/CountExecutor.java class CountExecutor (line 26) | public class CountExecutor extends AsyncExecutor { method listen (line 35) | public void listen(CountCallback callback) { method getListener (line 40) | public CountCallback getListener() { FILE: core/src/main/java/org/litepal/crud/async/FindExecutor.java class FindExecutor (line 26) | public class FindExecutor extends AsyncExecutor { method listen (line 35) | public void listen(FindCallback callback) { method getListener (line 40) | public FindCallback getListener() { FILE: core/src/main/java/org/litepal/crud/async/FindMultiExecutor.java class FindMultiExecutor (line 26) | public class FindMultiExecutor extends AsyncExecutor { method listen (line 35) | public void listen(FindMultiCallback callback) { method getListener (line 40) | public FindMultiCallback getListener() { FILE: core/src/main/java/org/litepal/crud/async/SaveExecutor.java class SaveExecutor (line 26) | public class SaveExecutor extends AsyncExecutor { method listen (line 35) | public void listen(SaveCallback callback) { method getListener (line 40) | public SaveCallback getListener() { FILE: core/src/main/java/org/litepal/crud/async/UpdateOrDeleteExecutor.java class UpdateOrDeleteExecutor (line 26) | public class UpdateOrDeleteExecutor extends AsyncExecutor { method listen (line 35) | public void listen(UpdateOrDeleteCallback callback) { method getListener (line 40) | public UpdateOrDeleteCallback getListener() { FILE: core/src/main/java/org/litepal/crud/callback/AverageCallback.java type AverageCallback (line 24) | public interface AverageCallback { method onFinish (line 26) | void onFinish(double average); FILE: core/src/main/java/org/litepal/crud/callback/CountCallback.java type CountCallback (line 24) | public interface CountCallback { method onFinish (line 26) | void onFinish(int count); FILE: core/src/main/java/org/litepal/crud/callback/FindCallback.java type FindCallback (line 24) | public interface FindCallback { method onFinish (line 26) | void onFinish(T t); FILE: core/src/main/java/org/litepal/crud/callback/FindMultiCallback.java type FindMultiCallback (line 26) | public interface FindMultiCallback { method onFinish (line 28) | void onFinish(List list); FILE: core/src/main/java/org/litepal/crud/callback/SaveCallback.java type SaveCallback (line 24) | public interface SaveCallback { method onFinish (line 26) | void onFinish(boolean success); FILE: core/src/main/java/org/litepal/crud/callback/UpdateOrDeleteCallback.java type UpdateOrDeleteCallback (line 24) | public interface UpdateOrDeleteCallback { method onFinish (line 26) | void onFinish(int rowsAffected); FILE: core/src/main/java/org/litepal/crud/model/AssociationsInfo.java class AssociationsInfo (line 28) | public class AssociationsInfo { method getSelfClassName (line 66) | public String getSelfClassName() { method setSelfClassName (line 76) | public void setSelfClassName(String selfClassName) { method getAssociatedClassName (line 85) | public String getAssociatedClassName() { method setAssociatedClassName (line 95) | public void setAssociatedClassName(String associatedClassName) { method getClassHoldsForeignKey (line 104) | public String getClassHoldsForeignKey() { method setClassHoldsForeignKey (line 114) | public void setClassHoldsForeignKey(String classHoldsForeignKey) { method getAssociateOtherModelFromSelf (line 124) | public Field getAssociateOtherModelFromSelf() { method setAssociateOtherModelFromSelf (line 136) | public void setAssociateOtherModelFromSelf(Field associateOtherModelFr... method getAssociateSelfFromOtherModel (line 147) | public Field getAssociateSelfFromOtherModel() { method setAssociateSelfFromOtherModel (line 159) | public void setAssociateSelfFromOtherModel(Field associateSelfFromOthe... method getAssociationType (line 168) | public int getAssociationType() { method setAssociationType (line 178) | public void setAssociationType(int associationType) { method equals (line 187) | @Override FILE: core/src/main/java/org/litepal/exceptions/DataSupportException.java class DataSupportException (line 27) | public class DataSupportException extends RuntimeException { method DataSupportException (line 36) | public DataSupportException(String errorMessage) { method DataSupportException (line 48) | public DataSupportException(String errorMessage, Throwable throwable) { FILE: core/src/main/java/org/litepal/exceptions/DatabaseGenerateException.java class DatabaseGenerateException (line 25) | public class DatabaseGenerateException extends RuntimeException { method DatabaseGenerateException (line 65) | public DatabaseGenerateException(String errorMessage) { FILE: core/src/main/java/org/litepal/exceptions/GlobalException.java class GlobalException (line 25) | public class GlobalException extends RuntimeException { method GlobalException (line 39) | public GlobalException(String errorMessage) { FILE: core/src/main/java/org/litepal/exceptions/InvalidAttributesException.java class InvalidAttributesException (line 27) | public class InvalidAttributesException extends RuntimeException { method InvalidAttributesException (line 56) | public InvalidAttributesException(String errorMessage) { FILE: core/src/main/java/org/litepal/exceptions/LitePalSupportException.java class LitePalSupportException (line 26) | public class LitePalSupportException extends DataSupportException { method LitePalSupportException (line 67) | public LitePalSupportException(String errorMessage) { method LitePalSupportException (line 79) | public LitePalSupportException(String errorMessage, Throwable throwabl... method noSuchMethodException (line 93) | public static String noSuchMethodException(String className, String me... method noSuchFieldExceptioin (line 108) | public static String noSuchFieldExceptioin(String className, String fi... FILE: core/src/main/java/org/litepal/exceptions/ParseConfigurationFileException.java class ParseConfigurationFileException (line 26) | public class ParseConfigurationFileException extends RuntimeException { method ParseConfigurationFileException (line 55) | public ParseConfigurationFileException(String errorMessage) { FILE: core/src/main/java/org/litepal/model/Table_Schema.java class Table_Schema (line 30) | public class Table_Schema { method getName (line 47) | public String getName() { method setName (line 57) | public void setName(String name) { method getType (line 66) | public int getType() { method setType (line 76) | public void setType(int type) { FILE: core/src/main/java/org/litepal/parser/LitePalAttr.java class LitePalAttr (line 37) | public final class LitePalAttr { method LitePalAttr (line 78) | private LitePalAttr() { method getInstance (line 85) | public static LitePalAttr getInstance() { method loadLitePalXMLConfiguration (line 97) | private static void loadLitePalXMLConfiguration() { method clearInstance (line 111) | public static void clearInstance() { method getVersion (line 115) | public int getVersion() { method setVersion (line 119) | public void setVersion(int version) { method getDbName (line 123) | public String getDbName() { method setDbName (line 127) | public void setDbName(String dbName) { method getStorage (line 131) | public String getStorage() { method setStorage (line 135) | public void setStorage(String storage) { method getExtraKeyName (line 139) | public String getExtraKeyName() { method setExtraKeyName (line 143) | public void setExtraKeyName(String extraKeyName) { method getClassNames (line 152) | public List getClassNames() { method addClassName (line 168) | public void addClassName(String className) { method setClassNames (line 172) | public void setClassNames(List classNames) { method getCases (line 176) | public String getCases() { method setCases (line 180) | public void setCases(String cases) { method checkSelfValid (line 193) | public void checkSelfValid() { FILE: core/src/main/java/org/litepal/parser/LitePalConfig.java class LitePalConfig (line 27) | public class LitePalConfig { method getVersion (line 55) | public int getVersion() { method setVersion (line 59) | public void setVersion(int version) { method getDbName (line 63) | public String getDbName() { method setDbName (line 67) | public void setDbName(String dbName) { method getStorage (line 71) | public String getStorage() { method setStorage (line 75) | public void setStorage(String storage) { method getClassNames (line 84) | public List getClassNames() { method addClassName (line 100) | public void addClassName(String className) { method setClassNames (line 104) | public void setClassNames(List classNames) { method getCases (line 108) | public String getCases() { method setCases (line 112) | public void setCases(String cases) { FILE: core/src/main/java/org/litepal/parser/LitePalContentHandler.java class LitePalContentHandler (line 31) | public class LitePalContentHandler extends DefaultHandler { method characters (line 42) | @Override method endDocument (line 49) | @Override method endElement (line 56) | @Override method startDocument (line 63) | @Override method startElement (line 73) | @Override FILE: core/src/main/java/org/litepal/parser/LitePalParser.java class LitePalParser (line 46) | public class LitePalParser { method parseLitePalConfiguration (line 98) | public static LitePalConfig parseLitePalConfiguration() { method useSAXParser (line 114) | private void useSAXParser() { method usePullParse (line 144) | private LitePalConfig usePullParse() { method getConfigInputStream (line 195) | private InputStream getConfigInputStream() throws IOException { FILE: core/src/main/java/org/litepal/tablemanager/AssociationCreator.java class AssociationCreator (line 49) | public abstract class AssociationCreator extends Generator { method createOrUpgradeTable (line 51) | protected abstract void createOrUpgradeTable(SQLiteDatabase db, boolea... method addOrUpdateAssociation (line 58) | @Override method generateCreateTableSQL (line 78) | protected String generateCreateTableSQL(String tableName, Collection generateCreateIndexSQLs(String tableName, Colle... method generateDropTableSQL (line 141) | protected String generateDropTableSQL(String tableName) { method generateAddColumnSQL (line 153) | protected String generateAddColumnSQL(String tableName, ColumnModel co... method generateCreateIndexSQL (line 192) | protected String generateCreateIndexSQL(String tableName, ColumnModel ... method isForeignKeyColumnFormat (line 217) | protected boolean isForeignKeyColumnFormat(String columnName) { method giveTableSchemaACopy (line 235) | protected void giveTableSchemaACopy(String tableName, int tableType, S... method isNeedtoGiveACopy (line 269) | private boolean isNeedtoGiveACopy(Cursor cursor, String tableName) { method isValueExists (line 282) | private boolean isValueExists(Cursor cursor, String tableName) { method isSpecialTable (line 305) | private boolean isSpecialTable(String tableName) { method addAssociations (line 324) | private void addAssociations(Collection associatedM... method createIntermediateTable (line 357) | private void createIntermediateTable(String tableName, String associat... method createGenericTable (line 394) | private void createGenericTable(GenericModel genericModel, SQLiteDatab... method addForeignKeyColumn (line 436) | protected void addForeignKeyColumn(String tableName, String associated... method isContainsOnlyIdField (line 473) | private boolean isContainsOnlyIdField(Collection columnMo... FILE: core/src/main/java/org/litepal/tablemanager/AssociationUpdater.java class AssociationUpdater (line 44) | public abstract class AssociationUpdater extends Creator { method createOrUpgradeTable (line 63) | @Override method addOrUpdateAssociation (line 71) | @Override method getForeignKeyColumns (line 87) | protected List getForeignKeyColumns(TableModel tableModel) { method isForeignKeyColumn (line 114) | protected boolean isForeignKeyColumn(TableModel tableModel, String col... method getTableModelFromDB (line 128) | protected TableModel getTableModelFromDB(String tableName) { method dropTables (line 140) | protected void dropTables(List dropTableNames, SQLiteDatabase ... method removeColumns (line 159) | protected void removeColumns(Collection removeColumnNames, Str... method clearCopyInTableSchema (line 173) | protected void clearCopyInTableSchema(List tableNames) { method removeAssociations (line 198) | private void removeAssociations() { method removeForeignKeyColumns (line 208) | private void removeForeignKeyColumns() { method removeIntermediateTables (line 219) | private void removeIntermediateTables() { method removeGenericTables (line 229) | private void removeGenericTables() { method findForeignKeyToRemove (line 244) | private List findForeignKeyToRemove(TableModel tableModel) { method findIntermediateTablesToDrop (line 267) | private List findIntermediateTablesToDrop() { method findGenericTablesToDrop (line 299) | private List findGenericTablesToDrop() { method generateAlterToTempTableSQL (line 327) | protected String generateAlterToTempTableSQL(String tableName) { method generateCreateNewTableSQL (line 344) | private String generateCreateNewTableSQL(Collection removeColu... method generateDataMigrationSQL (line 358) | protected String generateDataMigrationSQL(TableModel tableModel) { method generateDropTempTableSQL (line 396) | protected String generateDropTempTableSQL(String tableName) { method getTempTableName (line 408) | protected String getTempTableName(String tableName) { method getRemoveColumnSQLs (line 422) | private List getRemoveColumnSQLs(Collection removeColu... method shouldDropForeignKey (line 455) | private boolean shouldDropForeignKey(String selfTableName, String asso... method isRelationCorrect (line 493) | private boolean isRelationCorrect(AssociationsModel associationModel, ... FILE: core/src/main/java/org/litepal/tablemanager/Connector.java class Connector (line 37) | public class Connector { method getWritableDatabase (line 56) | public synchronized static SQLiteDatabase getWritableDatabase() { method getDatabase (line 69) | public static SQLiteDatabase getDatabase() { method buildConnection (line 84) | private static LitePalOpenHelper buildConnection() { method clearLitePalOpenHelperInstance (line 109) | public static void clearLitePalOpenHelperInstance() { FILE: core/src/main/java/org/litepal/tablemanager/Creator.java class Creator (line 39) | class Creator extends AssociationCreator { method createOrUpgradeTable (line 46) | @Override method createOrUpgradeTable (line 53) | protected void createOrUpgradeTable(TableModel tableModel, SQLiteDatab... method getCreateTableSQLs (line 72) | protected List getCreateTableSQLs(TableModel tableModel, SQLit... method generateDropTableSQL (line 95) | private String generateDropTableSQL(TableModel tableModel) { method generateCreateTableSQL (line 109) | String generateCreateTableSQL(TableModel tableModel) { method generateCreateIndexSQLs (line 121) | List generateCreateIndexSQLs(TableModel tableModel) { FILE: core/src/main/java/org/litepal/tablemanager/Dropper.java class Dropper (line 42) | public class Dropper extends AssociationUpdater { method createOrUpgradeTable (line 53) | @Override method dropTables (line 64) | private void dropTables() { method findTablesToDrop (line 76) | private List findTablesToDrop() { method pickTableNamesFromTableModels (line 109) | private List pickTableNamesFromTableModels() { method shouldDropThisTable (line 131) | private boolean shouldDropThisTable(String tableName, int tableType) { FILE: core/src/main/java/org/litepal/tablemanager/Generator.java class Generator (line 45) | public abstract class Generator extends LitePalBase { method getAllTableModels (line 67) | protected Collection getAllTableModels() { method getAllAssociations (line 86) | protected Collection getAllAssociations() { method execute (line 103) | protected void execute(List sqls, SQLiteDatabase db) { method addAssociation (line 128) | private static void addAssociation(SQLiteDatabase db, boolean force) { method updateAssociations (line 140) | private static void updateAssociations(SQLiteDatabase db) { method upgradeTables (line 152) | private static void upgradeTables(SQLiteDatabase db) { method create (line 167) | private static void create(SQLiteDatabase db, boolean force) { method drop (line 179) | private static void drop(SQLiteDatabase db) { method canUseCache (line 191) | private boolean canUseCache() { method create (line 206) | static void create(SQLiteDatabase db) { method upgrade (line 219) | static void upgrade(SQLiteDatabase db) { method createOrUpgradeTable (line 237) | protected abstract void createOrUpgradeTable(SQLiteDatabase db, boolea... method addOrUpdateAssociation (line 249) | protected abstract void addOrUpdateAssociation(SQLiteDatabase db, bool... FILE: core/src/main/java/org/litepal/tablemanager/LitePalOpenHelper.java class LitePalOpenHelper (line 43) | class LitePalOpenHelper extends SQLiteOpenHelper { method LitePalOpenHelper (line 63) | LitePalOpenHelper(Context context, String name, CursorFactory factory,... method LitePalOpenHelper (line 79) | LitePalOpenHelper(String dbName, int version) { method onCreate (line 83) | @Override method onUpgrade (line 97) | @Override FILE: core/src/main/java/org/litepal/tablemanager/Upgrader.java class Upgrader (line 42) | public class Upgrader extends AssociationUpdater { method createOrUpgradeTable (line 62) | @Override method upgradeTable (line 78) | private void upgradeTable() { method hasNewUniqueOrNotNullColumn (line 106) | private boolean hasNewUniqueOrNotNullColumn() { method findColumnsToAdd (line 130) | private List findColumnsToAdd() { method findColumnsToRemove (line 153) | private List findColumnsToRemove() { method findColumnTypesToChange (line 175) | private List findColumnTypesToChange() { method isNeedToRemove (line 215) | private boolean isNeedToRemove(String columnName) { method isRemovedFromClass (line 228) | private boolean isRemovedFromClass(String columnName) { method generateAddColumnSQLs (line 239) | private List generateAddColumnSQLs(ColumnModel columnModel) { method getAddColumnSQLs (line 256) | private List getAddColumnSQLs(List columnModelLis... method removeColumns (line 271) | private void removeColumns(List removeColumnNames) { method addColumns (line 286) | private void addColumns(List columnModelList) { method changeColumnsType (line 301) | private void changeColumnsType(List columnModelList) { method changeColumnsConstraints (line 317) | private void changeColumnsConstraints() { method getChangeColumnsConstraintsSQL (line 329) | private List getChangeColumnsConstraintsSQL() { method generateAddForeignKeySQL (line 357) | private List generateAddForeignKeySQL() { FILE: core/src/main/java/org/litepal/tablemanager/callback/DatabaseListener.java type DatabaseListener (line 24) | public interface DatabaseListener { method onCreate (line 26) | void onCreate(); method onUpgrade (line 28) | void onUpgrade(int oldVersion, int newVersion); FILE: core/src/main/java/org/litepal/tablemanager/model/AssociationsModel.java class AssociationsModel (line 33) | public class AssociationsModel { method getTableName (line 61) | public String getTableName() { method setTableName (line 71) | public void setTableName(String tableName) { method getAssociatedTableName (line 80) | public String getAssociatedTableName() { method setAssociatedTableName (line 90) | public void setAssociatedTableName(String associatedTableName) { method getTableHoldsForeignKey (line 99) | public String getTableHoldsForeignKey() { method setTableHoldsForeignKey (line 109) | public void setTableHoldsForeignKey(String tableHoldsForeignKey) { method getAssociationType (line 118) | public int getAssociationType() { method setAssociationType (line 130) | public void setAssociationType(int associationType) { method equals (line 139) | @Override FILE: core/src/main/java/org/litepal/tablemanager/model/ColumnModel.java class ColumnModel (line 27) | public class ColumnModel { method getColumnName (line 59) | public String getColumnName() { method setColumnName (line 63) | public void setColumnName(String columnName) { method getColumnType (line 67) | public String getColumnType() { method setColumnType (line 71) | public void setColumnType(String columnType) { method isNullable (line 75) | public boolean isNullable() { method setNullable (line 79) | public void setNullable(boolean isNullable) { method isUnique (line 83) | public boolean isUnique() { method setUnique (line 87) | public void setUnique(boolean isUnique) { method getDefaultValue (line 91) | public String getDefaultValue() { method hasIndex (line 95) | public boolean hasIndex() { method setHasIndex (line 99) | public void setHasIndex(boolean hasIndex) { method setDefaultValue (line 103) | public void setDefaultValue(String defaultValue) { method isIdColumn (line 117) | public boolean isIdColumn() { FILE: core/src/main/java/org/litepal/tablemanager/model/GenericModel.java class GenericModel (line 27) | public class GenericModel { method getTableName (line 54) | public String getTableName() { method setTableName (line 58) | public void setTableName(String tableName) { method getValueColumnName (line 62) | public String getValueColumnName() { method setValueColumnName (line 66) | public void setValueColumnName(String valueColumnName) { method getValueColumnType (line 70) | public String getValueColumnType() { method setValueColumnType (line 74) | public void setValueColumnType(String valueColumnType) { method getValueIdColumnName (line 78) | public String getValueIdColumnName() { method setValueIdColumnName (line 82) | public void setValueIdColumnName(String valueIdColumnName) { method getGetMethodName (line 86) | public String getGetMethodName() { method setGetMethodName (line 90) | public void setGetMethodName(String getMethodName) { FILE: core/src/main/java/org/litepal/tablemanager/model/TableModel.java class TableModel (line 32) | public class TableModel { method getTableName (line 54) | public String getTableName() { method setTableName (line 64) | public void setTableName(String tableName) { method getClassName (line 73) | public String getClassName() { method setClassName (line 83) | public void setClassName(String className) { method addColumnModel (line 93) | public void addColumnModel(ColumnModel columnModel) { method getColumnModels (line 101) | public Collection getColumnModels() { method getColumnModelByName (line 111) | public ColumnModel getColumnModelByName(String columnName) { method removeColumnModelByName (line 120) | public void removeColumnModelByName(String columnName) { method containsColumn (line 130) | public boolean containsColumn(String columnName) { FILE: core/src/main/java/org/litepal/tablemanager/typechange/BlobOrm.java class BlobOrm (line 9) | public class BlobOrm extends OrmChange{ method object2Relation (line 15) | @Override FILE: core/src/main/java/org/litepal/tablemanager/typechange/BooleanOrm.java class BooleanOrm (line 25) | public class BooleanOrm extends OrmChange { method object2Relation (line 31) | @Override FILE: core/src/main/java/org/litepal/tablemanager/typechange/DateOrm.java class DateOrm (line 25) | public class DateOrm extends OrmChange { method object2Relation (line 31) | @Override FILE: core/src/main/java/org/litepal/tablemanager/typechange/DecimalOrm.java class DecimalOrm (line 25) | public class DecimalOrm extends OrmChange { method object2Relation (line 31) | @Override FILE: core/src/main/java/org/litepal/tablemanager/typechange/NumericOrm.java class NumericOrm (line 25) | public class NumericOrm extends OrmChange { method object2Relation (line 31) | @Override FILE: core/src/main/java/org/litepal/tablemanager/typechange/OrmChange.java class OrmChange (line 28) | public abstract class OrmChange { method object2Relation (line 37) | public abstract String object2Relation(String fieldType); FILE: core/src/main/java/org/litepal/tablemanager/typechange/TextOrm.java class TextOrm (line 25) | public class TextOrm extends OrmChange { method object2Relation (line 31) | @Override FILE: core/src/main/java/org/litepal/util/BaseUtility.java class BaseUtility (line 39) | public class BaseUtility { method BaseUtility (line 44) | private BaseUtility() { method changeCase (line 56) | public static String changeCase(String string) { method containsIgnoreCases (line 84) | public static boolean containsIgnoreCases(Collection collectio... method capitalize (line 108) | public static String capitalize(String string) { method count (line 124) | public static int count(String string, String mark) { method checkConditionsCorrect (line 148) | public static void checkConditionsCorrect(String... conditions) { method isFieldTypeSupported (line 169) | public static boolean isFieldTypeSupported(String fieldType) { method isGenericTypeSupported (line 205) | public static boolean isGenericTypeSupported(String genericType) { method isLitePalXMLExists (line 230) | public static boolean isLitePalXMLExists() { method isClassAndMethodExist (line 255) | public static boolean isClassAndMethodExist(String className, String m... FILE: core/src/main/java/org/litepal/util/Const.java type Const (line 19) | public interface Const { type Model (line 21) | public interface Model { type Config (line 38) | public interface Config { type TableSchema (line 65) | public interface TableSchema { FILE: core/src/main/java/org/litepal/util/DBUtility.java class DBUtility (line 45) | public class DBUtility { method DBUtility (line 62) | private DBUtility() { method getTableNameByClassName (line 75) | public static String getTableNameByClassName(String className) { method getIndexName (line 95) | public static String getIndexName(String tableName, String columnName) { method getTableNameListByClassNameList (line 111) | public static List getTableNameListByClassNameList(List findAllTableNames(SQLiteDatabase db) { method findPragmaTableInfo (line 383) | public static TableModel findPragmaTableInfo(String tableName, SQLiteD... method findIndexedColumns (line 440) | public static Pair, Set> findIndexedColumns(String... method isFieldNameConflictWithSQLiteKeywords (line 483) | public static boolean isFieldNameConflictWithSQLiteKeywords(String fie... method convertToValidColumnName (line 498) | public static String convertToValidColumnName(String columnName) { method convertWhereClauseToColumnName (line 511) | public static String convertWhereClauseToColumnName(String whereClause) { method convertSelectClauseToValidNames (line 540) | public static String[] convertSelectClauseToValidNames(String[] column... method convertOrderByClauseToValidName (line 558) | public static String convertOrderByClauseToValidName(String orderBy) { method convertOrderByItem (line 587) | private static String convertOrderByItem(String orderByItem) { FILE: core/src/main/java/org/litepal/util/LitePalLog.java class LitePalLog (line 21) | public final class LitePalLog { method d (line 29) | public static void d(String tagName, String message) { method e (line 35) | public static void e(String tagName, Exception e){ FILE: core/src/main/java/org/litepal/util/SharedUtil.java class SharedUtil (line 33) | public class SharedUtil { method updateVersion (line 47) | public static void updateVersion(String extraKeyName, int newVersion) { method getLastVersion (line 67) | public static int getLastVersion(String extraKeyName) { method removeVersion (line 85) | public static void removeVersion(String extraKeyName) { FILE: core/src/main/java/org/litepal/util/cipher/AESCrypt.java class AESCrypt (line 35) | public final class AESCrypt { method generateKey (line 59) | private static SecretKeySpec generateKey(final String password) throws... method encrypt (line 81) | public static String encrypt(final String password, String message) method encrypt (line 111) | public static byte[] encrypt(final SecretKeySpec key, final byte[] iv,... method decrypt (line 132) | public static String decrypt(final String password, String base64Encod... method decrypt (line 168) | public static byte[] decrypt(final SecretKeySpec key, final byte[] iv,... method log (line 183) | private static void log(String what, byte[] bytes) { method log (line 188) | private static void log(String what, String value) { method bytesToHex (line 199) | private static String bytesToHex(byte[] bytes) { method AESCrypt (line 212) | private AESCrypt() { FILE: core/src/main/java/org/litepal/util/cipher/CipherUtil.java class CipherUtil (line 40) | public class CipherUtil { method aesEncrypt (line 52) | public static String aesEncrypt(String plainText) { method aesDecrypt (line 70) | public static String aesDecrypt(String encryptedText) { method md5Encrypt (line 88) | public static String md5Encrypt(String plainText) { method toHex (line 99) | private static char[] toHex(byte[] data) { FILE: java/src/main/java/org/litepal/LitePal.java class LitePal (line 45) | public class LitePal { method initialize (line 55) | public static void initialize(Context context) { method getDatabase (line 64) | public static SQLiteDatabase getDatabase() { method use (line 73) | public static void use(LitePalDB litePalDB) { method useDefault (line 80) | public static void useDefault() { method deleteDatabase (line 90) | public static boolean deleteDatabase(String dbName) { method aesKey (line 94) | public static void aesKey(String key) { method select (line 113) | public static FluentQuery select(String... columns) { method where (line 132) | public static FluentQuery where(String... conditions) { method order (line 152) | public static FluentQuery order(String column) { method limit (line 170) | public static FluentQuery limit(int value) { method offset (line 188) | public static FluentQuery offset(int value) { method count (line 210) | public static int count(Class modelClass) { method countAsync (line 221) | public static CountExecutor countAsync(final Class modelClass) { method count (line 243) | public static int count(String tableName) { method countAsync (line 254) | public static CountExecutor countAsync(final String tableName) { method average (line 277) | public static double average(Class modelClass, String column) { method averageAsync (line 290) | public static AverageExecutor averageAsync(final Class modelClass, ... method average (line 313) | public static double average(String tableName, String column) { method averageAsync (line 326) | public static AverageExecutor averageAsync(final String tableName, fin... method max (line 352) | public static T max(Class modelClass, String columnName, Class<... method maxAsync (line 367) | public static FindExecutor maxAsync(final Class modelClass, ... method max (line 393) | public static T max(String tableName, String columnName, Class ... method maxAsync (line 408) | public static FindExecutor maxAsync(final String tableName, fin... method min (line 434) | public static T min(Class modelClass, String columnName, Class<... method minAsync (line 449) | public static FindExecutor minAsync(final Class modelClass, ... method min (line 475) | public static T min(String tableName, String columnName, Class ... method minAsync (line 490) | public static FindExecutor minAsync(final String tableName, fin... method sum (line 516) | public static T sum(Class modelClass, String columnName, Class<... method sumAsync (line 531) | public static FindExecutor sumAsync(final Class modelClass, ... method sum (line 557) | public static T sum(String tableName, String columnName, Class ... method sumAsync (line 572) | public static FindExecutor sumAsync(final String tableName, fin... method find (line 596) | public static T find(Class modelClass, long id) { method findAsync (line 609) | public static FindExecutor findAsync(Class modelClass, long ... method find (line 628) | public static T find(Class modelClass, long id, boolean isEager) { method findAsync (line 643) | public static FindExecutor findAsync(final Class modelClass,... method findFirst (line 662) | public static T findFirst(Class modelClass) { method findFirstAsync (line 673) | public static FindExecutor findFirstAsync(Class modelClass) { method findFirst (line 690) | public static T findFirst(Class modelClass, boolean isEager) { method findFirstAsync (line 703) | public static FindExecutor findFirstAsync(final Class modelC... method findLast (line 722) | public static T findLast(Class modelClass) { method findLastAsync (line 733) | public static FindExecutor findLastAsync(Class modelClass) { method findLast (line 750) | public static T findLast(Class modelClass, boolean isEager) { method findLastAsync (line 763) | public static FindExecutor findLastAsync(final Class modelCl... method findAll (line 797) | public static List findAll(Class modelClass, long... ids) { method findAllAsync (line 810) | public static FindMultiExecutor findAllAsync(Class modelClas... method findAll (line 829) | public static List findAll(Class modelClass, boolean isEager... method findAllAsync (line 844) | public static FindMultiExecutor findAllAsync(final Class mod... method findBySQL (line 864) | public static Cursor findBySQL(String... sql) { method delete (line 885) | public static int delete(Class modelClass, long id) { method deleteAsync (line 898) | public static UpdateOrDeleteExecutor deleteAsync(final Class modelC... method deleteAll (line 926) | public static int deleteAll(Class modelClass, String... conditions) { method deleteAllAsync (line 945) | public static UpdateOrDeleteExecutor deleteAllAsync(final Class mod... method deleteAll (line 976) | public static int deleteAll(String tableName, String... conditions) { method deleteAllAsync (line 995) | public static UpdateOrDeleteExecutor deleteAllAsync(final String table... method update (line 1020) | public static int update(Class modelClass, ContentValues values, lo... method updateAsync (line 1036) | public static UpdateOrDeleteExecutor updateAsync(final Class modelC... method updateAll (line 1069) | public static int updateAll(Class modelClass, ContentValues values,... method updateAllAsync (line 1091) | public static UpdateOrDeleteExecutor updateAllAsync(Class modelClas... method updateAll (line 1124) | public static int updateAll(String tableName, ContentValues values, St... method updateAllAsync (line 1146) | public static UpdateOrDeleteExecutor updateAllAsync(final String table... method saveAll (line 1175) | public static void saveAll(Collection co... method saveAllAsync (line 1186) | public static SaveExecutor saveAllAsync(fin... method markAsDeleted (line 1197) | public static void markAsDeleted(Collection... method isExist (line 1211) | public static boolean isExist(Class modelClass, String... condi... method registerDatabaseListener (line 1218) | public static void registerDatabaseListener(DatabaseListener listener) { FILE: sample/src/androidTest/java/com/litepaltest/model/Book.java class Book (line 7) | public class Book extends LitePalSupport implements Serializable{ method getId (line 27) | public long getId() { method setId (line 31) | public void setId(long id) { method getBookName (line 35) | public String getBookName() { method setBookName (line 39) | public void setBookName(String bookName) { method getPages (line 43) | public Integer getPages() { method setPages (line 47) | public void setPages(Integer pages) { method getPrice (line 51) | public double getPrice() { method setPrice (line 55) | public void setPrice(double price) { method getLevel (line 59) | public char getLevel() { method setLevel (line 63) | public void setLevel(char level) { method getIsbn (line 67) | public short getIsbn() { method setIsbn (line 71) | public void setIsbn(short isbn) { method isPublished (line 75) | public boolean isPublished() { method setPublished (line 79) | public void setPublished(boolean isPublished) { method getArea (line 83) | public float getArea() { method setArea (line 87) | public void setArea(float area) { FILE: sample/src/androidTest/java/com/litepaltest/model/Cellphone.java class Cellphone (line 9) | public class Cellphone extends LitePalSupport { method getId (line 31) | public Long getId() { method setId (line 35) | public void setId(Long id) { method getBrand (line 39) | public String getBrand() { method setBrand (line 43) | public void setBrand(String brand) { method getInStock (line 47) | public Character getInStock() { method setInStock (line 51) | public void setInStock(Character inStock) { method getPrice (line 55) | public Double getPrice() { method setPrice (line 59) | public void setPrice(Double price) { method getSerial (line 63) | public String getSerial() { method setSerial (line 67) | public void setSerial(String serial) { method getMac (line 71) | public String getMac() { method setMac (line 75) | public void setMac(String mac) { method getUuid (line 79) | public String getUuid() { method setUuid (line 83) | public void setUuid(String uuid) { method getMessages (line 87) | public List getMessages() { method setMessages (line 91) | public void setMessages(List messages) { FILE: sample/src/androidTest/java/com/litepaltest/model/Classroom.java class Classroom (line 10) | public class Classroom extends LitePalSupport { method get_id (line 26) | public int get_id() { method set_id (line 34) | public void set_id(int _id) { method getName (line 41) | public String getName() { method setName (line 49) | public void setName(String name) { method getStudentCollection (line 53) | public Set getStudentCollection() { method setStudentCollection (line 57) | public void setStudentCollection(Set studentCollection) { method getTeachers (line 61) | public List getTeachers() { method setTeachers (line 65) | public void setTeachers(List teachers) { method getNews (line 69) | public List getNews() { method setNews (line 73) | public void setNews(List news) { method getNumbers (line 77) | public List getNumbers() { method setNumbers (line 81) | public void setNumbers(List numbers) { FILE: sample/src/androidTest/java/com/litepaltest/model/Computer.java class Computer (line 5) | public class Computer extends LitePalSupport { method Computer (line 13) | public Computer(String brand, double price) { method getId (line 18) | public long getId() { method getBrand (line 22) | public String getBrand() { method setBrand (line 26) | public void setBrand(String brand) { method getPrice (line 30) | public double getPrice() { method setPrice (line 34) | public void setPrice(double price) { FILE: sample/src/androidTest/java/com/litepaltest/model/Headset.java class Headset (line 3) | public class Headset { method getId (line 15) | public int getId() { method setId (line 19) | public void setId(int id) { method getBrand (line 23) | public String getBrand() { method setBrand (line 27) | public void setBrand(String brand) { method getColor (line 31) | public String getColor() { method setColor (line 35) | public void setColor(String color) { method getType (line 39) | public int getType() { method setType (line 43) | public void setType(int type) { method getPrice (line 47) | public double getPrice() { method setPrice (line 51) | public void setPrice(double price) { FILE: sample/src/androidTest/java/com/litepaltest/model/IdCard.java class IdCard (line 5) | public class IdCard extends LitePalSupport { method getId (line 16) | public int getId() { method setId (line 24) | public void setId(int id) { method getNumber (line 31) | public String getNumber() { method setNumber (line 39) | public void setNumber(String number) { method getAddress (line 46) | public String getAddress() { method setAddress (line 54) | public void setAddress(String address) { method getStudent (line 61) | public Student getStudent() { method setStudent (line 68) | public void setStudent(Student student) { method getSerial (line 72) | public long getSerial() { method setSerial (line 76) | public void setSerial(long serial) { FILE: sample/src/androidTest/java/com/litepaltest/model/Message.java class Message (line 6) | public class Message extends LitePalSupport { method getContent (line 17) | public String getContent() { method setContent (line 21) | public void setContent(String content) { method getType (line 25) | public int getType() { method setType (line 29) | public void setType(int type) { method getTitle (line 33) | public String getTitle() { method setTitle (line 37) | public void setTitle(String title) { method getId (line 41) | public int getId() { method setId (line 45) | public void setId(int id) { FILE: sample/src/androidTest/java/com/litepaltest/model/Product.java class Product (line 5) | public class Product extends LitePalSupport{ method Product (line 15) | public Product() { method Product (line 18) | public Product(Product p) { method getId (line 21) | public int getId() { method setId (line 25) | public void setId(int id) { method getBrand (line 29) | public String getBrand() { method setBrand (line 33) | public void setBrand(String brand) { method getPrice (line 37) | public double getPrice() { method setPrice (line 41) | public void setPrice(double price) { method getPic (line 45) | public byte[] getPic() { method setPic (line 49) | public void setPic(byte[] pic) { FILE: sample/src/androidTest/java/com/litepaltest/model/Student.java class Student (line 10) | public class Student extends LitePalSupport { method getName (line 38) | public String getName() { method getClassroom (line 45) | public Classroom getClassroom() { method setClassroom (line 53) | public void setClassroom(Classroom classroom) { method getId (line 60) | public int getId() { method setId (line 68) | public void setId(int id) { method setName (line 76) | public void setName(String name) { method getAge (line 83) | public int getAge() { method setAge (line 91) | public void setAge(int age) { method getBirthday (line 98) | public Date getBirthday() { method setBirthday (line 106) | public void setBirthday(Date birthday) { method getIdcard (line 113) | public IdCard getIdcard() { method setIdcard (line 121) | public void setIdcard(IdCard idcard) { method getTeachers (line 125) | public List getTeachers() { method setTeachers (line 129) | public void setTeachers(List teachers) { method getSchoolDate (line 148) | public Date getSchoolDate() { method setSchoolDate (line 152) | public void setSchoolDate(Date schoolDate) { FILE: sample/src/androidTest/java/com/litepaltest/model/Teacher.java class Teacher (line 8) | public class Teacher extends LitePalSupport { method getTeacherName (line 43) | public String getTeacherName() { method getIdCard (line 50) | public IdCard getIdCard() { method setIdCard (line 58) | public void setIdCard(IdCard idCard) { method setTeacherName (line 66) | public void setTeacherName(String teacherName) { method getAge (line 73) | public int getAge() { method setAge (line 81) | public void setAge(int age) { method getTeachYears (line 88) | public int getTeachYears() { method setTeachYears (line 96) | public void setTeachYears(int teachYears) { method getId (line 103) | public int getId() { method setId (line 111) | public void setId(int id) { method isSex (line 118) | public boolean isSex() { method setSex (line 126) | public void setSex(boolean sex) { method getStudents (line 130) | public List getStudents() { method setStudents (line 134) | public void setStudents(List students) { FILE: sample/src/androidTest/java/com/litepaltest/model/WeChatMessage.java class WeChatMessage (line 3) | public class WeChatMessage extends Message { method getFriend (line 7) | public String getFriend() { method setFriend (line 11) | public void setFriend(String friend) { FILE: sample/src/androidTest/java/com/litepaltest/model/WeiboMessage.java class WeiboMessage (line 5) | public class WeiboMessage extends Message { method getFollower (line 14) | public String getFollower() { method setFollower (line 18) | public void setFollower(String follower) { method getNumber (line 22) | public int getNumber() { method setNumber (line 26) | public void setNumber(int number) { method getCellphone (line 30) | public Cellphone getCellphone() { method setCellphone (line 34) | public void setCellphone(Cellphone cellphone) { FILE: sample/src/androidTest/java/com/litepaltest/test/LitePalTestCase.java class LitePalTestCase (line 25) | @SmallTest method assertM2M (line 28) | protected void assertM2M(String table1, String table2, long id1, long ... method assertM2MFalse (line 32) | protected void assertM2MFalse(String table1, String table2, long id1, ... method isFKInsertCorrect (line 48) | protected boolean isFKInsertCorrect(String table1, String table2, long... method isIntermediateDataCorrect (line 62) | protected boolean isIntermediateDataCorrect(String table1, String tabl... method getForeignKeyValue (line 82) | protected long getForeignKeyValue(String tableWithFK, String tableWith... method isDataExists (line 94) | protected boolean isDataExists(String table, long id) { method getTableName (line 105) | protected String getTableName(Object object) { method getTableName (line 109) | protected String getTableName(Class c) { method getRowsCount (line 113) | protected int getRowsCount(String tableName) { method getBooks (line 121) | protected List getBooks(String[] columns, String selection, Stri... method getClassroom (line 155) | protected Classroom getClassroom(long id) { method getIdCard (line 168) | protected IdCard getIdCard(long id) { method getComputer (line 183) | protected Computer getComputer(long id) { method getCellPhone (line 198) | protected Cellphone getCellPhone(long id) { method getTeacher (line 215) | protected Teacher getTeacher(long id) { method getStudent (line 238) | protected Student getStudent(long id) { method getTeachers (line 253) | protected List getTeachers(int[] ids) { method getStudents (line 277) | protected List getStudents(int[] ids) { method getWhere (line 293) | private String getWhere(int[] ids) { FILE: sample/src/androidTest/java/com/litepaltest/test/MultiDatabaseTest.java class MultiDatabaseTest (line 23) | @SmallTest method testMultiDatabase (line 26) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/annotation/ColumnTest.java class ColumnTest (line 21) | @SmallTest method setUp (line 24) | @Before method testUnique (line 29) | @Test method testNotNull (line 46) | @Test method testDefaultValue (line 57) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/crud/delete/DeleteTest.java class DeleteTest (line 32) | @SmallTest method setUp (line 57) | @Before method createClassroomStudentsTeachers (line 63) | @Test method createStudentsTeachersWithIdCard (line 83) | @Test method createStudentsTeachersWithAssociations (line 99) | @Test method testDeleteWithNoParameter (line 114) | @Test method testDeleteById (line 124) | @Test method testDeleteNoSavedModelWithNoParameter (line 134) | @Test method testDeleteWithNotExistsRecordById (line 143) | @Test method testDeleteCascadeM2OAssociationsOnMSideWithNoParameter (line 149) | @Test method testDeleteCascadeM2OAssociationsOnMSideById (line 161) | @Test method testDeleteAllCascadeM2OAssociationsOnMSide (line 173) | @Test method testDeleteCascadeM2OAssociationsOnOSideWithNoParameter (line 185) | @Test method testDeleteCascadeM2OAssociationsOnOSideById (line 202) | @Test method testDeleteAllCascadeM2OAssociationsOnOSide (line 219) | @Test method testDeleteCascadeO2OAssociationsWithNoParameter (line 236) | @Test method testDeleteCascadeO2OAssociationsById (line 256) | @Test method testDeleteAllCascadeO2OAssociations (line 276) | @Test method testDeleteCascadeM2MAssociationsWithNoParameter (line 296) | @Test method testDeleteCascadeM2MAssociationsById (line 314) | @Test method testDeleteAllCascadeM2MAssociations (line 332) | @Test method testDeleteAllCascadeWithConditions (line 350) | @Test method testDeleteAll (line 380) | @Test method testDeleteAllRows (line 399) | @Test method testMarkAsDeleted (line 424) | @Test method testDeleteAllWithWrongConditions (line 448) | @Test method testDeleteWithGenericData (line 469) | @Test method initGameRoom (line 499) | private void initGameRoom() { method initJude (line 504) | private void initJude() { method initRose (line 515) | private void initRose() { method initJohn (line 525) | private void initJohn() { method initMike (line 536) | private void initMike() { FILE: sample/src/androidTest/java/com/litepaltest/test/crud/query/QueryBasicTest.java class QueryBasicTest (line 18) | @SmallTest method testFind (line 21) | @Test method testFindMul (line 45) | @Test method testFindAll (line 95) | @Test method testFindFirst (line 115) | @Test method testFindLast (line 131) | @Test method testIsExist (line 147) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/crud/query/QueryBySQLTest.java class QueryBySQLTest (line 19) | @SmallTest method setUp (line 26) | @Before method testQueryBySQL (line 35) | @Test method testQueryBySQLWithPlaceHolder (line 42) | @Test method testQueryBySQLWithWrongParams (line 56) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/crud/query/QueryClusterTest.java class QueryClusterTest (line 19) | @SmallTest method testSelect (line 22) | @Test method testWhere (line 66) | @Test method testOrder (line 112) | @Test method testLimit (line 184) | @Test method testOffset (line 216) | @Test method testCluster (line 236) | @Test method testBooleanQuery (line 314) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/crud/query/QueryDateTest.java class QueryDateTest (line 16) | @SmallTest method testQueryDate (line 19) | @Test method testQueryDateBefore1970 (line 33) | @Test method testQueryDateWithDefaultValue (line 47) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/crud/query/QueryEagerTest.java class QueryEagerTest (line 24) | @SmallTest method setUp (line 41) | @Before method testEagerFind (line 86) | @Test method resetData (line 160) | public void resetData() { method testEagerFindFirst (line 168) | @Test method testEagerFindLast (line 177) | @Test method testEagerFindAll (line 186) | @Test method testEagerClusterQuery (line 219) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/crud/query/QueryMathTest.java class QueryMathTest (line 17) | @SmallTest method setUp (line 22) | @Before method testCount (line 27) | @Test method testAverage (line 51) | @Test method testMax (line 76) | @Test method testMin (line 95) | @Test method testSum (line 114) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/crud/save/Many2ManySaveTest.java class Many2ManySaveTest (line 19) | @SmallTest method init (line 30) | private void init() { method buildBidirectionalAssociation (line 49) | private void buildBidirectionalAssociation() { method buildUnidirectionalAssociation (line 60) | private void buildUnidirectionalAssociation() { method getModelList (line 74) | private List getModelList() { method saveAllByRandom (line 83) | private void saveAllByRandom() { method testCase1 (line 93) | @Test method testCase2 (line 108) | @Test method testCase3 (line 125) | @Test method testCase4 (line 141) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/crud/save/Many2OneBiSaveTest.java class Many2OneBiSaveTest (line 16) | @SmallTest method init (line 25) | public void init() { method testCase1 (line 34) | @Test method testCase2 (line 47) | @Test method testCase3 (line 60) | @Test method testCase4 (line 73) | @Test method testCase5 (line 84) | @Test method testCase6 (line 95) | @Test method testCase7 (line 106) | @Test method testCase8 (line 121) | @Test method testCase9 (line 136) | @Test method testCase10 (line 151) | @Test method assertFK (line 172) | private void assertFK(Classroom c1, Student s1, Student s2) { FILE: sample/src/androidTest/java/com/litepaltest/test/crud/save/Many2OneUniSaveTest.java class Many2OneUniSaveTest (line 13) | @SmallTest method init (line 22) | public void init() { method testCase1 (line 33) | @Test method testCase2 (line 44) | @Test method testCase3 (line 55) | @Test method testCase4 (line 66) | @Test method assertFK (line 77) | private void assertFK(Classroom c1, Teacher t1, Teacher t2) { FILE: sample/src/androidTest/java/com/litepaltest/test/crud/save/One2OneBiSaveTest.java class One2OneBiSaveTest (line 13) | @SmallTest method init (line 20) | private void init() { method testO2OBiSaveStudentFirst (line 29) | @Test method testO2OBiSaveIdCardFirst (line 39) | @Test method testO2OBiBuildNullAssocations (line 49) | @Test method testO2OBiBuildUniAssociationsSaveStudentFirst (line 60) | @Test method testO2OBiBuildUniAssociationsSaveIdCardFirst (line 69) | @Test method assertFK (line 78) | private void assertFK(Student s, IdCard i) { FILE: sample/src/androidTest/java/com/litepaltest/test/crud/save/One2OneUniSaveTest.java class One2OneUniSaveTest (line 13) | @SmallTest method init (line 20) | private void init() { method testSaveIdCardFirst (line 30) | @Test method testSaveTeacherFirst (line 39) | @Test method testBuildNullAssociations (line 48) | @Test method assertFK (line 58) | private void assertFK(Teacher t, IdCard i) { FILE: sample/src/androidTest/java/com/litepaltest/test/crud/save/SaveAllTest.java class SaveAllTest (line 26) | @SmallTest method setUp (line 33) | @Before method testSaveAll (line 39) | @Test method testSaveAllWithM2OOnOneSide (line 55) | @Test method testSaveAllWithM2OOnManySide (line 73) | @Test method testSaveAllWithO2O (line 92) | @Test method testSaveAllWithM2M (line 115) | @Test method testSaveAllGenericData (line 157) | @Test method testSaveAllFailed (line 182) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/crud/save/SaveTest.java class SaveTest (line 30) | @SmallTest method testSave (line 33) | @Test method testSaveWithConstructors (line 44) | @Test method testSaveAfterDelete (line 61) | @Test method testSaveInheritModels (line 147) | @Test method testSaveInheritModelsWithAssociations (line 172) | @Test method testSaveGenericData (line 214) | @Test method testSaveLongMaximumNumber (line 240) | @Test method testNullValue (line 250) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/crud/transaction/TransactionTest.java class TransactionTest (line 23) | @SmallTest method testTransactionForSave (line 26) | @Test method testTransactionForSaveAll (line 51) | @Test method testTransactionForUpdate (line 81) | @Test method testTransactionForDelete (line 102) | @Test method testTransactionForCRUD (line 122) | @Test method testTransactionSuccessfulForCRUD (line 153) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/crud/update/UpdateUsingSaveMethodTest.java class UpdateUsingSaveMethodTest (line 27) | @SmallTest method setUp (line 54) | @Before method init (line 62) | private void init() { method testUpdateBasicValues (line 93) | @Test method testUpdateGenericData (line 111) | @Test method testUpdateM2OAssociationsOnMSide (line 137) | @Test method testUpdateM2OAssociationsOnOSide (line 162) | @Test method testUpdateM2OAssociationsOnMSideWithNotSavedModel (line 178) | @Test method testUpdateM2OAssociationsOnOSideWithNotSavedModel (line 194) | @Test method testUpdateM2OAssociationsOnMSideWithNull (line 208) | @Test method testUpdateM2OAssociationsOnOSideWithNull (line 224) | @Test method testUpdateM2OAssociationsOnOSideWithEmptyCollection (line 238) | @Test method testUpdateO2OAssociations (line 252) | @Test method testUpdateO2OAssociationsWithNull (line 265) | @Test method testUpdateM2MAssociations (line 280) | @Test method testUpdateM2MAssociationsWithNull (line 319) | @Test method testUpdateM2MAssociationsWithRefreshedCollection (line 363) | @Test method testUpdateM2MAssociationsWithEmptyCollection (line 411) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/crud/update/UpdateUsingUpdateMethodTest.java class UpdateUsingUpdateMethodTest (line 29) | @SmallTest method setUp (line 54) | @Before method init (line 60) | private void init() { method initForAssociations (line 84) | private void initForAssociations() { method testUpdateWithStaticUpdate (line 108) | @Test method testUpdateWithStaticUpdateButWrongClass (line 122) | @Test method testUpdateWithStaticUpdateButWrongColumn (line 132) | @Test method testUpdateWithStaticUpdateButNotExistsRecord (line 143) | @Test method testUpdateWithInstanceUpdate (line 151) | @Test method testUpdateWithDefaultValueWithInstanceUpdate (line 166) | @Test method testUpdateToDefaultValueWithInstanceUpdate (line 190) | @Test method testUpdateToDefaultValueWithInstanceUpdateButWrongField (line 216) | @Test method testUpdateWithInstanceUpdateWithConstructor (line 230) | @Test method testUpdateWithInstanceUpdateButNotExistsRecord (line 243) | @Test method testUpdateAllWithStaticUpdate (line 382) | @Test method testUpdateAllRowsWithStaticUpdate (line 410) | @Test method testUpdateAllWithStaticUpdateButWrongConditions (line 425) | @Test method testUpdateAllWithInstanceUpdate (line 448) | @Test method testUpdateAllRowsWithInstanceUpdate (line 479) | @Test method testUpdateAllWithDefaultValueWithInstanceUpdate (line 490) | @Test method testUpdateAllToDefaultValueWithInstanceUpdate (line 519) | @Test method testUpdateAllToDefaultValueWithInstanceUpdateButWrongField (line 542) | @Test method testUpdateAllWithInstanceUpdateButWrongConditions (line 556) | @Test method testUpdateGenericData (line 579) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/util/BaseUtilityTest.java class BaseUtilityTest (line 12) | @SmallTest method testCount (line 15) | @Test FILE: sample/src/androidTest/java/com/litepaltest/test/util/DBUtilityTest.java class DBUtilityTest (line 21) | @SmallTest method setUp (line 26) | @Before method testFindIndexedColumns (line 31) | @Test FILE: sample/src/main/java/org/litepal/litepalsample/MyApplication.java class MyApplication (line 7) | public class MyApplication extends Application{ method onCreate (line 9) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/activity/AggregateActivity.java class AggregateActivity (line 29) | public class AggregateActivity extends AppCompatActivity implements OnCl... method actionStart (line 31) | public static void actionStart(Context context) { method onCreate (line 36) | @Override method onClick (line 52) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/activity/AverageSampleActivity.java class AverageSampleActivity (line 33) | public class AverageSampleActivity extends AppCompatActivity implements ... method actionStart (line 39) | public static void actionStart(Context context) { method onCreate (line 44) | @Override method onClick (line 56) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/activity/CRUDActivity.java class CRUDActivity (line 29) | public class CRUDActivity extends AppCompatActivity implements OnClickLi... method actionStart (line 31) | public static void actionStart(Context context) { method onCreate (line 36) | @Override method onClick (line 50) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/activity/CountSampleActivity.java class CountSampleActivity (line 33) | public class CountSampleActivity extends AppCompatActivity implements On... method actionStart (line 39) | public static void actionStart(Context context) { method onCreate (line 44) | @Override method onClick (line 56) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/activity/DeleteSampleActivity.java class DeleteSampleActivity (line 41) | public class DeleteSampleActivity extends AppCompatActivity implements O... method actionStart (line 55) | public static void actionStart(Context context) { method onCreate (line 60) | @Override method onClick (line 78) | @Override method populateDataFromDB (line 117) | private void populateDataFromDB() { FILE: sample/src/main/java/org/litepal/litepalsample/activity/MainActivity.java class MainActivity (line 27) | public class MainActivity extends AppCompatActivity implements OnClickLi... method onCreate (line 31) | @Override method onClick (line 43) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/activity/ManageTablesActivity.java class ManageTablesActivity (line 29) | public class ManageTablesActivity extends AppCompatActivity implements O... method actionStart (line 31) | public static void actionStart(Context context) { method onCreate (line 36) | @Override method onClick (line 46) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/activity/MaxSampleActivity.java class MaxSampleActivity (line 33) | public class MaxSampleActivity extends AppCompatActivity implements OnCl... method actionStart (line 39) | public static void actionStart(Context context) { method onCreate (line 44) | @Override method onClick (line 56) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/activity/MinSampleActivity.java class MinSampleActivity (line 33) | public class MinSampleActivity extends AppCompatActivity implements OnCl... method actionStart (line 39) | public static void actionStart(Context context) { method onCreate (line 44) | @Override method onClick (line 56) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/activity/ModelListActivity.java class ModelListActivity (line 43) | public class ModelListActivity extends AppCompatActivity { method actionStart (line 47) | public static void actionStart(Context context) { method onCreate (line 52) | @Override method populateMappingClasses (line 68) | private void populateMappingClasses() { method getInputStream (line 97) | private InputStream getInputStream() throws IOException { FILE: sample/src/main/java/org/litepal/litepalsample/activity/ModelStructureActivity.java class ModelStructureActivity (line 39) | public class ModelStructureActivity extends AppCompatActivity { method actionStart (line 47) | public static void actionStart(Context context, String className) { method onCreate (line 53) | @Override method analyzeModelStructure (line 65) | private void analyzeModelStructure() { class MyArrayAdapter (line 85) | class MyArrayAdapter extends ArrayAdapter { method MyArrayAdapter (line 87) | public MyArrayAdapter(Context context, int textViewResourceId, List<... method getView (line 91) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/activity/QuerySampleActivity.java class QuerySampleActivity (line 26) | public class QuerySampleActivity extends AppCompatActivity { method actionStart (line 28) | public static void actionStart(Context context) { method onCreate (line 33) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/activity/SaveSampleActivity.java class SaveSampleActivity (line 40) | public class SaveSampleActivity extends AppCompatActivity implements OnC... method actionStart (line 56) | public static void actionStart(Context context) { method onCreate (line 61) | @Override method onClick (line 77) | @Override method populateDataFromDB (line 100) | private void populateDataFromDB() { method refreshListView (line 148) | private void refreshListView(long id, String name, int age, int isMale) { FILE: sample/src/main/java/org/litepal/litepalsample/activity/SumSampleActivity.java class SumSampleActivity (line 33) | public class SumSampleActivity extends AppCompatActivity implements OnCl... method actionStart (line 39) | public static void actionStart(Context context) { method onCreate (line 44) | @Override method onClick (line 56) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/activity/TableListActivity.java class TableListActivity (line 37) | public class TableListActivity extends AppCompatActivity { method actionStart (line 45) | public static void actionStart(Context context) { method onCreate (line 50) | @Override method populateTables (line 67) | private void populateTables() { FILE: sample/src/main/java/org/litepal/litepalsample/activity/TableStructureActivity.java class TableStructureActivity (line 41) | public class TableStructureActivity extends AppCompatActivity { method actionStart (line 49) | public static void actionStart(Context context, String tableName) { method onCreate (line 55) | @Override method analyzeTableStructure (line 67) | private void analyzeTableStructure() { class MyArrayAdapter (line 73) | class MyArrayAdapter extends ArrayAdapter { method MyArrayAdapter (line 75) | public MyArrayAdapter(Context context, int textViewResourceId, List<... method getView (line 79) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/activity/UpdateSampleActivity.java class UpdateSampleActivity (line 40) | public class UpdateSampleActivity extends AppCompatActivity implements O... method actionStart (line 58) | public static void actionStart(Context context) { method onCreate (line 63) | @Override method onClick (line 83) | @Override method populateDataFromDB (line 127) | private void populateDataFromDB() { FILE: sample/src/main/java/org/litepal/litepalsample/adapter/DataArrayAdapter.java class DataArrayAdapter (line 32) | public class DataArrayAdapter extends ArrayAdapter> { method DataArrayAdapter (line 34) | public DataArrayAdapter(Context context, int textViewResourceId, List<... method getView (line 38) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/adapter/StringArrayAdapter.java class StringArrayAdapter (line 30) | public class StringArrayAdapter extends ArrayAdapter { method StringArrayAdapter (line 32) | public StringArrayAdapter(Context context, int textViewResourceId, Lis... method getView (line 36) | @Override FILE: sample/src/main/java/org/litepal/litepalsample/model/Album.java class Album (line 25) | public class Album extends LitePalSupport { method getId (line 51) | public long getId() { method setId (line 55) | public void setId(long id) { method getName (line 59) | public String getName() { method setName (line 63) | public void setName(String name) { method getPublisher (line 67) | public String getPublisher() { method setPublisher (line 71) | public void setPublisher(String publisher) { method getPrice (line 75) | public double getPrice() { method setPrice (line 79) | public void setPrice(double price) { method getRelease (line 83) | public Date getRelease() { method setRelease (line 87) | public void setRelease(Date release) { method getSinger (line 91) | public Singer getSinger() { method setSinger (line 95) | public void setSinger(Singer singer) { method getSongs (line 99) | public List getSongs() { method setSongs (line 103) | public void setSongs(List songs) { method getSerial (line 107) | public String getSerial() { method setSerial (line 111) | public void setSerial(String serial) { method getSales (line 115) | public int getSales() { method setSales (line 119) | public void setSales(int sales) { FILE: sample/src/main/java/org/litepal/litepalsample/model/Singer.java class Singer (line 24) | public class Singer extends LitePalSupport { method getId (line 36) | public long getId() { method setId (line 40) | public void setId(long id) { method getName (line 44) | public String getName() { method setName (line 48) | public void setName(String name) { method getAge (line 52) | public int getAge() { method setAge (line 56) | public void setAge(int age) { method isMale (line 60) | public boolean isMale() { method setMale (line 64) | public void setMale(boolean isMale) { method getAlbums (line 68) | public List getAlbums() { method setAlbums (line 72) | public void setAlbums(List albums) { FILE: sample/src/main/java/org/litepal/litepalsample/model/Song.java class Song (line 22) | public class Song extends LitePalSupport { method getId (line 36) | public long getId() { method setId (line 40) | public void setId(long id) { method getName (line 44) | public String getName() { method setName (line 48) | public void setName(String name) { method getLyric (line 52) | public String getLyric() { method setLyric (line 56) | public void setLyric(String lyric) { method getDuration (line 60) | public String getDuration() { method setDuration (line 64) | public void setDuration(String duration) { method getAlbum (line 68) | public Album getAlbum() { method setAlbum (line 72) | public void setAlbum(Album album) { FILE: sample/src/main/java/org/litepal/litepalsample/util/Utility.java class Utility (line 21) | public class Utility { method dp2px (line 23) | public static int dp2px(Context context, float dpValue) { method px2dp (line 28) | public static int px2dp(Context context, float pxValue) {