com.socks.greendao.PictureCache Java Examples

The following examples show how to use com.socks.greendao.PictureCache. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: PictureCacheDao.java    From JianDan_OkHttpWithVolley with Apache License 2.0 6 votes vote down vote up
/** @inheritdoc */
@Override
protected void bindValues(SQLiteStatement stmt, PictureCache entity) {
    stmt.clearBindings();
 
    Long id = entity.getId();
    if (id != null) {
        stmt.bindLong(1, id);
    }
 
    String result = entity.getResult();
    if (result != null) {
        stmt.bindString(2, result);
    }
 
    Integer page = entity.getPage();
    if (page != null) {
        stmt.bindLong(3, page);
    }
 
    Long time = entity.getTime();
    if (time != null) {
        stmt.bindLong(4, time);
    }
}
 
Example #2
Source File: PictureCacheDao.java    From JianDan_OkHttp with Apache License 2.0 6 votes vote down vote up
/** @inheritdoc */
@Override
protected void bindValues(SQLiteStatement stmt, PictureCache entity) {
    stmt.clearBindings();
 
    Long id = entity.getId();
    if (id != null) {
        stmt.bindLong(1, id);
    }
 
    String result = entity.getResult();
    if (result != null) {
        stmt.bindString(2, result);
    }
 
    Integer page = entity.getPage();
    if (page != null) {
        stmt.bindLong(3, page);
    }
 
    Long time = entity.getTime();
    if (time != null) {
        stmt.bindLong(4, time);
    }
}
 
Example #3
Source File: PictureCacheDao.java    From JianDan with Apache License 2.0 6 votes vote down vote up
/** @inheritdoc */
@Override
protected void bindValues(SQLiteStatement stmt, PictureCache entity) {
    stmt.clearBindings();
 
    Long id = entity.getId();
    if (id != null) {
        stmt.bindLong(1, id);
    }
 
    String result = entity.getResult();
    if (result != null) {
        stmt.bindString(2, result);
    }
 
    Integer page = entity.getPage();
    if (page != null) {
        stmt.bindLong(3, page);
    }
 
    Long time = entity.getTime();
    if (time != null) {
        stmt.bindLong(4, time);
    }
}
 
Example #4
Source File: PictureCacheDao.java    From JianDanRxJava with Apache License 2.0 6 votes vote down vote up
/** @inheritdoc */
@Override
protected void bindValues(SQLiteStatement stmt, PictureCache entity) {
    stmt.clearBindings();
 
    Long id = entity.getId();
    if (id != null) {
        stmt.bindLong(1, id);
    }
 
    String result = entity.getResult();
    if (result != null) {
        stmt.bindString(2, result);
    }
 
    Integer page = entity.getPage();
    if (page != null) {
        stmt.bindLong(3, page);
    }
 
    Long time = entity.getTime();
    if (time != null) {
        stmt.bindLong(4, time);
    }
}
 
Example #5
Source File: DaoSession.java    From JianDan_OkHttp with Apache License 2.0 5 votes vote down vote up
public DaoSession(SQLiteDatabase db, IdentityScopeType type, Map<Class<? extends AbstractDao<?, ?>>, DaoConfig>
        daoConfigMap) {
    super(db);

    jokeCacheDaoConfig = daoConfigMap.get(JokeCacheDao.class).clone();
    jokeCacheDaoConfig.initIdentityScope(type);

    freshNewsCacheDaoConfig = daoConfigMap.get(FreshNewsCacheDao.class).clone();
    freshNewsCacheDaoConfig.initIdentityScope(type);

    pictureCacheDaoConfig = daoConfigMap.get(PictureCacheDao.class).clone();
    pictureCacheDaoConfig.initIdentityScope(type);

    sisterCacheDaoConfig = daoConfigMap.get(SisterCacheDao.class).clone();
    sisterCacheDaoConfig.initIdentityScope(type);

    videoCacheDaoConfig = daoConfigMap.get(VideoCacheDao.class).clone();
    videoCacheDaoConfig.initIdentityScope(type);

    jokeCacheDao = new JokeCacheDao(jokeCacheDaoConfig, this);
    freshNewsCacheDao = new FreshNewsCacheDao(freshNewsCacheDaoConfig, this);
    pictureCacheDao = new PictureCacheDao(pictureCacheDaoConfig, this);
    sisterCacheDao = new SisterCacheDao(sisterCacheDaoConfig, this);
    videoCacheDao = new VideoCacheDao(videoCacheDaoConfig, this);

    registerDao(JokeCache.class, jokeCacheDao);
    registerDao(FreshNewsCache.class, freshNewsCacheDao);
    registerDao(PictureCache.class, pictureCacheDao);
    registerDao(SisterCache.class, sisterCacheDao);
    registerDao(VideoCache.class, videoCacheDao);
}
 
Example #6
Source File: PictureCacheDao.java    From JianDan_OkHttp with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public Long getKey(PictureCache entity) {
    if(entity != null) {
        return entity.getId();
    } else {
        return null;
    }
}
 
Example #7
Source File: PictureCacheDao.java    From JianDan_OkHttp with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public void readEntity(Cursor cursor, PictureCache entity, int offset) {
    entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0));
    entity.setResult(cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1));
    entity.setPage(cursor.isNull(offset + 2) ? null : cursor.getInt(offset + 2));
    entity.setTime(cursor.isNull(offset + 3) ? null : cursor.getLong(offset + 3));
 }
 
Example #8
Source File: PictureCacheDao.java    From JianDan_OkHttp with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public PictureCache readEntity(Cursor cursor, int offset) {
    PictureCache entity = new PictureCache( //
        cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id
        cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1), // result
        cursor.isNull(offset + 2) ? null : cursor.getInt(offset + 2), // page
        cursor.isNull(offset + 3) ? null : cursor.getLong(offset + 3) // time
    );
    return entity;
}
 
Example #9
Source File: DaoSession.java    From JianDanRxJava with Apache License 2.0 5 votes vote down vote up
public DaoSession(SQLiteDatabase db, IdentityScopeType type, Map<Class<? extends AbstractDao<?, ?>>, DaoConfig>
        daoConfigMap) {
    super(db);

    jokeCacheDaoConfig = daoConfigMap.get(JokeCacheDao.class).clone();
    jokeCacheDaoConfig.initIdentityScope(type);

    freshNewsCacheDaoConfig = daoConfigMap.get(FreshNewsCacheDao.class).clone();
    freshNewsCacheDaoConfig.initIdentityScope(type);

    pictureCacheDaoConfig = daoConfigMap.get(PictureCacheDao.class).clone();
    pictureCacheDaoConfig.initIdentityScope(type);

    sisterCacheDaoConfig = daoConfigMap.get(SisterCacheDao.class).clone();
    sisterCacheDaoConfig.initIdentityScope(type);

    videoCacheDaoConfig = daoConfigMap.get(VideoCacheDao.class).clone();
    videoCacheDaoConfig.initIdentityScope(type);

    jokeCacheDao = new JokeCacheDao(jokeCacheDaoConfig, this);
    freshNewsCacheDao = new FreshNewsCacheDao(freshNewsCacheDaoConfig, this);
    pictureCacheDao = new PictureCacheDao(pictureCacheDaoConfig, this);
    sisterCacheDao = new SisterCacheDao(sisterCacheDaoConfig, this);
    videoCacheDao = new VideoCacheDao(videoCacheDaoConfig, this);

    registerDao(JokeCache.class, jokeCacheDao);
    registerDao(FreshNewsCache.class, freshNewsCacheDao);
    registerDao(PictureCache.class, pictureCacheDao);
    registerDao(SisterCache.class, sisterCacheDao);
    registerDao(VideoCache.class, videoCacheDao);
}
 
Example #10
Source File: PictureCacheDao.java    From JianDanRxJava with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public Long getKey(PictureCache entity) {
    if(entity != null) {
        return entity.getId();
    } else {
        return null;
    }
}
 
Example #11
Source File: PictureCacheDao.java    From JianDanRxJava with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public void readEntity(Cursor cursor, PictureCache entity, int offset) {
    entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0));
    entity.setResult(cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1));
    entity.setPage(cursor.isNull(offset + 2) ? null : cursor.getInt(offset + 2));
    entity.setTime(cursor.isNull(offset + 3) ? null : cursor.getLong(offset + 3));
 }
 
Example #12
Source File: PictureCacheDao.java    From JianDanRxJava with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public PictureCache readEntity(Cursor cursor, int offset) {
    PictureCache entity = new PictureCache( //
        cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id
        cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1), // result
        cursor.isNull(offset + 2) ? null : cursor.getInt(offset + 2), // page
        cursor.isNull(offset + 3) ? null : cursor.getLong(offset + 3) // time
    );
    return entity;
}
 
Example #13
Source File: DaoSession.java    From JianDan with Apache License 2.0 5 votes vote down vote up
public DaoSession(SQLiteDatabase db, IdentityScopeType type, Map<Class<? extends AbstractDao<?, ?>>, DaoConfig>
        daoConfigMap) {
    super(db);

    jokeCacheDaoConfig = daoConfigMap.get(JokeCacheDao.class).clone();
    jokeCacheDaoConfig.initIdentityScope(type);

    freshNewsCacheDaoConfig = daoConfigMap.get(FreshNewsCacheDao.class).clone();
    freshNewsCacheDaoConfig.initIdentityScope(type);

    pictureCacheDaoConfig = daoConfigMap.get(PictureCacheDao.class).clone();
    pictureCacheDaoConfig.initIdentityScope(type);

    sisterCacheDaoConfig = daoConfigMap.get(SisterCacheDao.class).clone();
    sisterCacheDaoConfig.initIdentityScope(type);

    videoCacheDaoConfig = daoConfigMap.get(VideoCacheDao.class).clone();
    videoCacheDaoConfig.initIdentityScope(type);

    jokeCacheDao = new JokeCacheDao(jokeCacheDaoConfig, this);
    freshNewsCacheDao = new FreshNewsCacheDao(freshNewsCacheDaoConfig, this);
    pictureCacheDao = new PictureCacheDao(pictureCacheDaoConfig, this);
    sisterCacheDao = new SisterCacheDao(sisterCacheDaoConfig, this);
    videoCacheDao = new VideoCacheDao(videoCacheDaoConfig, this);

    registerDao(JokeCache.class, jokeCacheDao);
    registerDao(FreshNewsCache.class, freshNewsCacheDao);
    registerDao(PictureCache.class, pictureCacheDao);
    registerDao(SisterCache.class, sisterCacheDao);
    registerDao(VideoCache.class, videoCacheDao);
}
 
Example #14
Source File: PictureCacheDao.java    From JianDan with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public Long getKey(PictureCache entity) {
    if(entity != null) {
        return entity.getId();
    } else {
        return null;
    }
}
 
Example #15
Source File: PictureCacheDao.java    From JianDan with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public void readEntity(Cursor cursor, PictureCache entity, int offset) {
    entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0));
    entity.setResult(cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1));
    entity.setPage(cursor.isNull(offset + 2) ? null : cursor.getInt(offset + 2));
    entity.setTime(cursor.isNull(offset + 3) ? null : cursor.getLong(offset + 3));
 }
 
Example #16
Source File: PictureCacheDao.java    From JianDan with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public PictureCache readEntity(Cursor cursor, int offset) {
    PictureCache entity = new PictureCache( //
        cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id
        cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1), // result
        cursor.isNull(offset + 2) ? null : cursor.getInt(offset + 2), // page
        cursor.isNull(offset + 3) ? null : cursor.getLong(offset + 3) // time
    );
    return entity;
}
 
Example #17
Source File: DaoSession.java    From JianDan_OkHttpWithVolley with Apache License 2.0 5 votes vote down vote up
public DaoSession(SQLiteDatabase db, IdentityScopeType type, Map<Class<? extends AbstractDao<?, ?>>, DaoConfig>
        daoConfigMap) {
    super(db);

    jokeCacheDaoConfig = daoConfigMap.get(JokeCacheDao.class).clone();
    jokeCacheDaoConfig.initIdentityScope(type);

    freshNewsCacheDaoConfig = daoConfigMap.get(FreshNewsCacheDao.class).clone();
    freshNewsCacheDaoConfig.initIdentityScope(type);

    pictureCacheDaoConfig = daoConfigMap.get(PictureCacheDao.class).clone();
    pictureCacheDaoConfig.initIdentityScope(type);

    sisterCacheDaoConfig = daoConfigMap.get(SisterCacheDao.class).clone();
    sisterCacheDaoConfig.initIdentityScope(type);

    videoCacheDaoConfig = daoConfigMap.get(VideoCacheDao.class).clone();
    videoCacheDaoConfig.initIdentityScope(type);

    jokeCacheDao = new JokeCacheDao(jokeCacheDaoConfig, this);
    freshNewsCacheDao = new FreshNewsCacheDao(freshNewsCacheDaoConfig, this);
    pictureCacheDao = new PictureCacheDao(pictureCacheDaoConfig, this);
    sisterCacheDao = new SisterCacheDao(sisterCacheDaoConfig, this);
    videoCacheDao = new VideoCacheDao(videoCacheDaoConfig, this);

    registerDao(JokeCache.class, jokeCacheDao);
    registerDao(FreshNewsCache.class, freshNewsCacheDao);
    registerDao(PictureCache.class, pictureCacheDao);
    registerDao(SisterCache.class, sisterCacheDao);
    registerDao(VideoCache.class, videoCacheDao);
}
 
Example #18
Source File: PictureCacheDao.java    From JianDan_OkHttpWithVolley with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public Long getKey(PictureCache entity) {
    if(entity != null) {
        return entity.getId();
    } else {
        return null;
    }
}
 
Example #19
Source File: PictureCacheDao.java    From JianDan_OkHttpWithVolley with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public void readEntity(Cursor cursor, PictureCache entity, int offset) {
    entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0));
    entity.setResult(cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1));
    entity.setPage(cursor.isNull(offset + 2) ? null : cursor.getInt(offset + 2));
    entity.setTime(cursor.isNull(offset + 3) ? null : cursor.getLong(offset + 3));
 }
 
Example #20
Source File: PictureCacheDao.java    From JianDan_OkHttpWithVolley with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public PictureCache readEntity(Cursor cursor, int offset) {
    PictureCache entity = new PictureCache( //
        cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id
        cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1), // result
        cursor.isNull(offset + 2) ? null : cursor.getInt(offset + 2), // page
        cursor.isNull(offset + 3) ? null : cursor.getLong(offset + 3) // time
    );
    return entity;
}
 
Example #21
Source File: PictureCacheDao.java    From JianDan with Apache License 2.0 4 votes vote down vote up
/** @inheritdoc */
@Override
protected Long updateKeyAfterInsert(PictureCache entity, long rowId) {
    entity.setId(rowId);
    return rowId;
}
 
Example #22
Source File: PictureCacheDao.java    From JianDanRxJava with Apache License 2.0 4 votes vote down vote up
/** @inheritdoc */
@Override
protected Long updateKeyAfterInsert(PictureCache entity, long rowId) {
    entity.setId(rowId);
    return rowId;
}
 
Example #23
Source File: PictureCacheDao.java    From JianDan_OkHttpWithVolley with Apache License 2.0 4 votes vote down vote up
/** @inheritdoc */
@Override
protected Long updateKeyAfterInsert(PictureCache entity, long rowId) {
    entity.setId(rowId);
    return rowId;
}
 
Example #24
Source File: PictureCacheDao.java    From JianDan_OkHttp with Apache License 2.0 4 votes vote down vote up
/** @inheritdoc */
@Override
protected Long updateKeyAfterInsert(PictureCache entity, long rowId) {
    entity.setId(rowId);
    return rowId;
}