DataDouble.DataInfoDouble
, DataDoubleArray.DataInfoDoubleArray
, DataDoubleBDArray.DataInfoDoubleBDArray
, DataFunction.DataInfoFunction
, DataGroup.DataInfoGroup
, DataInfo
, DataTable.DataInfoTable
, DataTensor.DataInfoTensor
, DataVector.DataInfoVector
public interface IDataInfo
Modifier and Type | Method | Description |
---|---|---|
void |
addTag(DataTag newTag) |
Adds the tag to this IDataInfo object.
|
void |
addTags(DataTag[] newTags) |
Convenience method to add all of the given tags.
|
void |
clearTags() |
Removes all tags.
|
Dimension |
getDimension() |
|
IDataInfoFactory |
getFactory() |
Returns a mutable factory that can make copies of this instance of
DataInfo.
|
java.lang.String |
getLabel() |
|
int |
getLength() |
Returns the number of numerical values held by the IData object.
|
DataTag[] |
getTags() |
Returns the array of tags held by this DataInfo instance.
|
IData |
makeData() |
Returns a Data object appropriate for this DataInfo instance.
|
java.lang.String |
toString() |
Returns "label (dimension)", where label and dimension are the values
held by this instance.
|
java.lang.String getLabel()
java.lang.String toString()
toString
in class java.lang.Object
int getLength()
IData makeData()
Dimension getDimension()
void addTag(DataTag newTag)
void addTags(DataTag[] newTags)
void clearTags()
DataTag[] getTags()
IDataInfoFactory getFactory()