com.socks.greendao.JokeCache Java Examples

The following examples show how to use com.socks.greendao.JokeCache. 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: JokeCacheDao.java    From JianDan_OkHttpWithVolley with Apache License 2.0 6 votes vote down vote up
/** @inheritdoc */
@Override
protected void bindValues(SQLiteStatement stmt, JokeCache 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: JokeCacheDao.java    From JianDan_OkHttp with Apache License 2.0 6 votes vote down vote up
/** @inheritdoc */
@Override
protected void bindValues(SQLiteStatement stmt, JokeCache 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: JokeCacheDao.java    From JianDan with Apache License 2.0 6 votes vote down vote up
/** @inheritdoc */
@Override
protected void bindValues(SQLiteStatement stmt, JokeCache 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: JokeCacheDao.java    From JianDanRxJava with Apache License 2.0 6 votes vote down vote up
/** @inheritdoc */
@Override
protected void bindValues(SQLiteStatement stmt, JokeCache 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: JokeCacheDao.java    From JianDan_OkHttp with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public Long getKey(JokeCache entity) {
    if(entity != null) {
        return entity.getId();
    } else {
        return null;
    }
}
 
Example #6
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 #7
Source File: JokeCacheDao.java    From JianDan_OkHttp with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public void readEntity(Cursor cursor, JokeCache 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: JokeCacheDao.java    From JianDan_OkHttp with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public JokeCache readEntity(Cursor cursor, int offset) {
    JokeCache entity = new JokeCache( //
        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 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 #10
Source File: JokeCacheDao.java    From JianDanRxJava with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public Long getKey(JokeCache entity) {
    if(entity != null) {
        return entity.getId();
    } else {
        return null;
    }
}
 
Example #11
Source File: JokeCacheDao.java    From JianDanRxJava with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public void readEntity(Cursor cursor, JokeCache 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: JokeCacheDao.java    From JianDanRxJava with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public JokeCache readEntity(Cursor cursor, int offset) {
    JokeCache entity = new JokeCache( //
        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 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 #14
Source File: JokeCacheDao.java    From JianDan with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public Long getKey(JokeCache entity) {
    if(entity != null) {
        return entity.getId();
    } else {
        return null;
    }
}
 
Example #15
Source File: JokeCacheDao.java    From JianDan with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public void readEntity(Cursor cursor, JokeCache 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: JokeCacheDao.java    From JianDan with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public JokeCache readEntity(Cursor cursor, int offset) {
    JokeCache entity = new JokeCache( //
        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 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: JokeCacheDao.java    From JianDan_OkHttpWithVolley with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public Long getKey(JokeCache entity) {
    if(entity != null) {
        return entity.getId();
    } else {
        return null;
    }
}
 
Example #19
Source File: JokeCacheDao.java    From JianDan_OkHttpWithVolley with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public void readEntity(Cursor cursor, JokeCache 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: JokeCacheDao.java    From JianDan_OkHttpWithVolley with Apache License 2.0 5 votes vote down vote up
/** @inheritdoc */
@Override
public JokeCache readEntity(Cursor cursor, int offset) {
    JokeCache entity = new JokeCache( //
        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: JokeCacheDao.java    From JianDan with Apache License 2.0 4 votes vote down vote up
/** @inheritdoc */
@Override
protected Long updateKeyAfterInsert(JokeCache entity, long rowId) {
    entity.setId(rowId);
    return rowId;
}
 
Example #22
Source File: JokeCacheDao.java    From JianDanRxJava with Apache License 2.0 4 votes vote down vote up
/** @inheritdoc */
@Override
protected Long updateKeyAfterInsert(JokeCache entity, long rowId) {
    entity.setId(rowId);
    return rowId;
}
 
Example #23
Source File: JokeCacheDao.java    From JianDan_OkHttpWithVolley with Apache License 2.0 4 votes vote down vote up
/** @inheritdoc */
@Override
protected Long updateKeyAfterInsert(JokeCache entity, long rowId) {
    entity.setId(rowId);
    return rowId;
}
 
Example #24
Source File: JokeCacheDao.java    From JianDan_OkHttp with Apache License 2.0 4 votes vote down vote up
/** @inheritdoc */
@Override
protected Long updateKeyAfterInsert(JokeCache entity, long rowId) {
    entity.setId(rowId);
    return rowId;
}