public interface Fillable
fill() method and fillMode attribute accessible from DataSet and
Buffer.| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
FM_APPEND
FILL-MODE constant.
|
static java.lang.String |
FM_EMPTY
FILL-MODE constant.
|
static java.lang.String |
FM_MERGE
FILL-MODE constant.
|
static java.lang.String |
FM_NOFILL
FILL-MODE constant.
|
static java.lang.String |
FM_REPLACE
FILL-MODE constant.
|
| Modifier and Type | Method and Description |
|---|---|
logical |
fill()
Fills a
DataSet object, recursively, based on its defined data sources, data relations, and
queries. |
character |
fillMode()
Obtain the mode in which the
DataSet.fill() method fills a DataSet member buffer. |
void |
fillMode(java.lang.String mode)
Configures the mode in which the
DataSet.fill() method fills a DataSet member buffer. |
void |
fillMode(Text mode)
Configures the mode in which the
DataSet.fill() method fills a DataSet member buffer. |
static final java.lang.String FM_APPEND
static final java.lang.String FM_EMPTY
static final java.lang.String FM_MERGE
static final java.lang.String FM_NOFILL
static final java.lang.String FM_REPLACE
logical fill()
DataSet object, recursively, based on its defined data sources, data relations, and
queries. When invoked on one of its member Buffer objects a partial fill is performed, by
starting at the respective level.true if operation is successful.character fillMode()
DataSet.fill() method fills a DataSet member buffer. The
default mode is MERGE.void fillMode(java.lang.String mode)
DataSet.fill() method fills a DataSet member buffer.
The allowed modes are: APPEND, EMPTY, MERGE, NO-FILL, and
REPLACE.mode - the new fill mode for this buffer.void fillMode(Text mode)
DataSet.fill() method fills a DataSet member buffer.
The allowed modes are: APPEND, EMPTY, MERGE, NO-FILL, and
REPLACE.mode - the new fill mode for this buffer.