Package | Description |
---|---|
com.konylabs.middleware.convertions | |
com.konylabs.middleware.dataobject |
Modifier and Type | Method and Description |
---|---|
static org.json.JSONObject |
ResultToJSON.convertRecord(Record record)
Deprecated.
Converts the given
Record object to JSON object. |
Modifier and Type | Method and Description |
---|---|
Record |
Dataset.getRecord(int indexToGet)
Gets the Record at the specified index from the list of Records contained
in the Dataset.
|
Record |
AbstractRecord.getRecordById(String id)
Gets the inner Record with given id from this Record/Result object.
|
Record |
Dataset.getRecordOrder(int order)
Deprecated.
As of MobileFabric 7.3.2, this method is redundant as order is
not used anymore. To get Record by index, use
Dataset.getRecord(int) . |
Modifier and Type | Method and Description |
---|---|
List<Record> |
AbstractRecord.getAllRecords()
Gets the read-only list of all inner Records of this Record/Result
object.
|
List<Record> |
Dataset.getAllRecords()
Gets the read-only list of Records contained in the Dataset.
|
ArrayList<Record> |
Dataset.getRecords()
Deprecated.
As of MobileFabric 7.3.2, instead use
Dataset.getAllRecords() . |
ArrayList<Record> |
Record.getRecords()
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.getAllRecords() |
ArrayList<Record> |
Result.getRecords()
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.getAllRecords() |
Modifier and Type | Method and Description |
---|---|
void |
AbstractRecord.addRecord(Record record)
Adds a Record to the Record list of this Record/Result object.
|
void |
Dataset.addRecord(Record record)
Adds a Record to the Dataset.
|
int |
Record.compareTo(Record o)
Deprecated.
As of MobileFabric 7.3.2, this method is redundant as order is
not used anymore.
|
static org.json.JSONObject |
ResultToJSON.convertRecord(Record record)
Converts the given
Record object to JSON object. |
void |
Dataset.setRecord(Record record)
Deprecated.
As of MobileFabric 7.3.2, instead use
Dataset.addRecord(Record) . |
void |
Record.setRecord(Record record)
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.addRecord(Record) |
void |
Result.setRecord(Record record)
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.addRecord(Record) |
Modifier and Type | Method and Description |
---|---|
void |
AbstractRecord.addAllRecords(Collection<Record> records)
Adds all the Records to the Record list of this Record/Result object.
|
void |
Dataset.addAllRecords(Collection<Record> recordsToAdd)
Adds all the Records to the Dataset.
|
void |
Dataset.setRecords(ArrayList<Record> records)
Deprecated.
As of MobileFabric 7.3.2, instead use
Dataset.addAllRecords(Collection) . |
void |
Record.setRecords(ArrayList<Record> records)
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.addAllRecords(java.util.Collection) |
void |
Result.setRecords(ArrayList<Record> records)
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.addAllRecords(java.util.Collection) |
Copyright © 2019. All rights reserved.