public static class ChartJsonBuilder.RowBuilder
extends java.lang.Object
Constructor and Description |
---|
RowBuilder() |
Modifier and Type | Method and Description |
---|---|
void |
addRowElement(double value)
Adds a row element with a double value.
|
void |
addRowElement(long value)
Adds a row element with a long value.
|
void |
addRowElement(java.lang.Number value)
Adds a row element with a Number value.
|
void |
addRowElement(java.lang.Object o) |
void |
addRowElement(java.lang.String value)
Adds a row element with a string value.
|
void |
addRowNullElement()
For when need to add null element to indicate that don't have data
for a cell.
|
public void addRowElement(java.lang.Object o)
public void addRowElement(java.lang.String value)
value
- The value of the element to be added to the rowpublic void addRowElement(double value)
value
- The value of the element to be added to the rowpublic void addRowElement(long value)
value
- The value of the element to be added to the rowpublic void addRowElement(java.lang.Number value)
value
- The value of the element to be added to the rowpublic void addRowNullElement()