com.tekann.codegen.pda.db
Interface RowIteratorValues

All Known Implementing Classes:
AbstractDAO

public interface RowIteratorValues

Interface that has the possible row values for a table.

Author:
Guilherme Frantz

Field Summary
static int ROW_STATUS_DELETED
          Represent that the row is deleted.
static int ROW_STATUS_NEW
          Represent that the row is new.
static int ROW_STATUS_NONE
          Represent that the row is just created.
static int ROW_STATUS_SYNCED
          Represent that the row is synchronized
static int ROW_STATUS_UPDATED
          Represent that the row is updated
 

Field Detail

ROW_STATUS_DELETED

static final int ROW_STATUS_DELETED
Represent that the row is deleted.

See Also:
Constant Field Values

ROW_STATUS_NEW

static final int ROW_STATUS_NEW
Represent that the row is new.

See Also:
Constant Field Values

ROW_STATUS_NONE

static final int ROW_STATUS_NONE
Represent that the row is just created. When the DTO is created.

See Also:
Constant Field Values

ROW_STATUS_SYNCED

static final int ROW_STATUS_SYNCED
Represent that the row is synchronized

See Also:
Constant Field Values

ROW_STATUS_UPDATED

static final int ROW_STATUS_UPDATED
Represent that the row is updated

See Also:
Constant Field Values