public class Record extends AbstractRecord implements Comparable<Record>
Dataset
,
Param
,
Serialized FormModifier and Type | Field and Description |
---|---|
int |
index
Deprecated.
As of MobileFabric 7.3.2, replaced by
getIndex() and
setIndex(int) |
int |
order
Deprecated.
As of MobileFabric 7.3.2, replaced by
getOrder() and
setOrder(int) |
Constructor and Description |
---|
Record() |
Modifier and Type | Method and Description |
---|---|
int |
compareTo(Record o)
Deprecated.
As of MobileFabric 7.3.2, this method is redundant as order is
not used anymore.
|
ArrayList<Dataset> |
getDatasets()
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.getAllDatasets() |
String |
getId()
Gets the id of the Record.
|
int |
getIndex()
Gets the index of the Record in its parent.
|
int |
getOrder()
Gets the order of the Record in its parent.
|
Param |
getParam(String name)
Gets the Param with given param name from the Record.
|
ArrayList<Param> |
getParams()
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.getAllParams() |
ArrayList<Record> |
getRecords()
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.getAllRecords() |
boolean |
removeParam(Param param)
Removes the given Param from the Param list of this Record object.
|
boolean |
removeParamsByName(String name)
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.removeParamByName(String) |
void |
setDataset(Dataset dataset)
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.addDataset(Dataset) |
void |
setDatasets(ArrayList<Dataset> datasets)
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.addAllDatasets(java.util.Collection) |
void |
setId(String id)
Sets the id of the Record.
|
void |
setID(String newId)
Deprecated.
As of MobileFabric 7.3.2, replaced by
setId(String) |
void |
setIndex(int index)
Sets the index of the Record in its parent.
|
void |
setOrder(int order)
Sets the order of the Record in its parent.
|
void |
setParam(Param param)
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.addParam(Param) |
void |
setParams(ArrayList<Param> params)
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.addAllParams(java.util.Collection) |
void |
setRecord(Record record)
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.addRecord(Record) |
void |
setRecords(ArrayList<Record> records)
Deprecated.
As of MobileFabric 7.3.2, replaced by
AbstractRecord.addAllRecords(java.util.Collection) |
String |
toString() |
addAllDatasets, addAllParams, addAllRecords, addDataset, addIntParam, addIntParam, addParam, addParam, addParam, addRecord, addStringParam, clearDatasets, clearParams, clearRecords, getAllDatasets, getAllParams, getAllRecords, getDatasetById, getIdOfAllDatasets, getIdOfAllRecords, getNameOfAllParams, getParamByName, getParamValueByName, getRecordById, hasParamByName, removeDatasetById, removeParamByName, removeRecordById
@Deprecated public int index
getIndex()
and
setIndex(int)
@Deprecated public int order
getOrder()
and
setOrder(int)
public String getId()
public void setId(String id)
id
- The id to set@Deprecated public void setID(String newId)
setId(String)
newId
- The id to setpublic int getIndex()
public void setIndex(int index)
index
- The index to setpublic int getOrder()
public void setOrder(int order)
order
- The order to set@Deprecated public ArrayList<Param> getParams()
AbstractRecord.getAllParams()
Param
@Deprecated public void setParam(Param param)
AbstractRecord.addParam(Param)
param
- The Param to addParam
@Deprecated public void setParams(ArrayList<Param> params)
AbstractRecord.addAllParams(java.util.Collection)
params
- The Param listParam
@Deprecated public boolean removeParamsByName(String name)
AbstractRecord.removeParamByName(String)
name
- The name of the Param to removeParam
@Deprecated public ArrayList<Dataset> getDatasets()
AbstractRecord.getAllDatasets()
Dataset
@Deprecated public void setDataset(Dataset dataset)
AbstractRecord.addDataset(Dataset)
dataset
- The Dataset to addDataset
@Deprecated public void setDatasets(ArrayList<Dataset> datasets)
AbstractRecord.addAllDatasets(java.util.Collection)
datasets
- The Dataset listDataset
@Deprecated public ArrayList<Record> getRecords()
AbstractRecord.getAllRecords()
@Deprecated public void setRecord(Record record)
AbstractRecord.addRecord(Record)
record
- The inner Record to add@Deprecated public void setRecords(ArrayList<Record> records)
AbstractRecord.addAllRecords(java.util.Collection)
records
- The inner Record listpublic Param getParam(String name)
name
- The name of the Param to getParam
public boolean removeParam(Param param)
param
- The Param to removeParam
@Deprecated public int compareTo(Record o)
compareTo
in interface Comparable<Record>
Comparable.compareTo(java.lang.Object)
Copyright © 2019. All rights reserved.