HubNotesDao.java 5.57 KB
package com.locus.town.greendao;

import android.database.Cursor;
import android.database.sqlite.SQLiteStatement;

import org.greenrobot.greendao.AbstractDao;
import org.greenrobot.greendao.Property;
import org.greenrobot.greendao.internal.DaoConfig;
import org.greenrobot.greendao.database.Database;
import org.greenrobot.greendao.database.DatabaseStatement;

import com.lotus.town.dao.HubNotes;

// THIS CODE IS GENERATED BY greenDAO, DO NOT EDIT.
/** 
 * DAO for table "HUB_NOTES".
*/
public class HubNotesDao extends AbstractDao<HubNotes, Long> {

    public static final String TABLENAME = "HUB_NOTES";

    /**
     * Properties of entity HubNotes.<br/>
     * Can be used for QueryBuilder and for referencing column names.
     */
    public static class Properties {
        public final static Property Id = new Property(0, Long.class, "id", true, "_id");
        public final static Property Name = new Property(1, String.class, "name", false, "NAME");
        public final static Property Datetime = new Property(2, long.class, "datetime", false, "DATETIME");
        public final static Property Behaviour = new Property(3, String.class, "behaviour", false, "BEHAVIOUR");
        public final static Property Result = new Property(4, String.class, "result", false, "RESULT");
        public final static Property Type = new Property(5, int.class, "type", false, "TYPE");
    }


    public HubNotesDao(DaoConfig config) {
        super(config);
    }
    
    public HubNotesDao(DaoConfig config, DaoSession daoSession) {
        super(config, daoSession);
    }

    /** Creates the underlying database table. */
    public static void createTable(Database db, boolean ifNotExists) {
        String constraint = ifNotExists? "IF NOT EXISTS ": "";
        db.execSQL("CREATE TABLE " + constraint + "\"HUB_NOTES\" (" + //
                "\"_id\" INTEGER PRIMARY KEY AUTOINCREMENT ," + // 0: id
                "\"NAME\" TEXT," + // 1: name
                "\"DATETIME\" INTEGER NOT NULL ," + // 2: datetime
                "\"BEHAVIOUR\" TEXT," + // 3: behaviour
                "\"RESULT\" TEXT," + // 4: result
                "\"TYPE\" INTEGER NOT NULL );"); // 5: type
    }

    /** Drops the underlying database table. */
    public static void dropTable(Database db, boolean ifExists) {
        String sql = "DROP TABLE " + (ifExists ? "IF EXISTS " : "") + "\"HUB_NOTES\"";
        db.execSQL(sql);
    }

    @Override
    protected final void bindValues(DatabaseStatement stmt, HubNotes entity) {
        stmt.clearBindings();
 
        Long id = entity.getId();
        if (id != null) {
            stmt.bindLong(1, id);
        }
 
        String name = entity.getName();
        if (name != null) {
            stmt.bindString(2, name);
        }
        stmt.bindLong(3, entity.getDatetime());
 
        String behaviour = entity.getBehaviour();
        if (behaviour != null) {
            stmt.bindString(4, behaviour);
        }
 
        String result = entity.getResult();
        if (result != null) {
            stmt.bindString(5, result);
        }
        stmt.bindLong(6, entity.getType());
    }

    @Override
    protected final void bindValues(SQLiteStatement stmt, HubNotes entity) {
        stmt.clearBindings();
 
        Long id = entity.getId();
        if (id != null) {
            stmt.bindLong(1, id);
        }
 
        String name = entity.getName();
        if (name != null) {
            stmt.bindString(2, name);
        }
        stmt.bindLong(3, entity.getDatetime());
 
        String behaviour = entity.getBehaviour();
        if (behaviour != null) {
            stmt.bindString(4, behaviour);
        }
 
        String result = entity.getResult();
        if (result != null) {
            stmt.bindString(5, result);
        }
        stmt.bindLong(6, entity.getType());
    }

    @Override
    public Long readKey(Cursor cursor, int offset) {
        return cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0);
    }    

    @Override
    public HubNotes readEntity(Cursor cursor, int offset) {
        HubNotes entity = new HubNotes( //
            cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0), // id
            cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1), // name
            cursor.getLong(offset + 2), // datetime
            cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3), // behaviour
            cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4), // result
            cursor.getInt(offset + 5) // type
        );
        return entity;
    }
     
    @Override
    public void readEntity(Cursor cursor, HubNotes entity, int offset) {
        entity.setId(cursor.isNull(offset + 0) ? null : cursor.getLong(offset + 0));
        entity.setName(cursor.isNull(offset + 1) ? null : cursor.getString(offset + 1));
        entity.setDatetime(cursor.getLong(offset + 2));
        entity.setBehaviour(cursor.isNull(offset + 3) ? null : cursor.getString(offset + 3));
        entity.setResult(cursor.isNull(offset + 4) ? null : cursor.getString(offset + 4));
        entity.setType(cursor.getInt(offset + 5));
     }
    
    @Override
    protected final Long updateKeyAfterInsert(HubNotes entity, long rowId) {
        entity.setId(rowId);
        return rowId;
    }
    
    @Override
    public Long getKey(HubNotes entity) {
        if(entity != null) {
            return entity.getId();
        } else {
            return null;
        }
    }

    @Override
    public boolean hasKey(HubNotes entity) {
        return entity.getId() != null;
    }

    @Override
    protected final boolean isEntityUpdateable() {
        return true;
    }
    
}