Interface IScriptedDataSetMetaData
-
public interface IScriptedDataSetMetaData
Interface used by Scripted Data Set's describe handler to define column metadata of the data set.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
addColumn(java.lang.String name, java.lang.Class dataType)
Adds a column to the metadata definition.
-
-
-
Method Detail
-
addColumn
void addColumn(java.lang.String name, java.lang.Class dataType)
Adds a column to the metadata definition. A column is required to have a name and a data type. Acceptable data types are one of these classes or their derived classes: Integer, Double, BigDecimal. String, Date or byte[].- Parameters:
name
- Name of column; must not be null or emptydataType
- data type of column; must be one of the supported types listed in method description.
-
-