Class MarshallableColumnTypes
- java.lang.Object
-
- org.pentaho.commons.connection.marshal.MarshallableColumnTypes
-
- All Implemented Interfaces:
Serializable
public class MarshallableColumnTypes extends Object implements Serializable
This class stores a list of the column types for a serializable result set. These types are used to provide metadata about the rows of data stored in a MarshallableResultSet object- Author:
- jamesdixon
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description MarshallableColumnTypes()
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description String[]getColumnType()Returns an array of the column types.static StringgetDataType(String javaType)voidsetColumnType(String[] types)Sets the columns types.
-
-
-
Method Detail
-
setColumnType
public void setColumnType(String[] types)
Sets the columns types. See org.pentaho.commons.connection.IPentahoDataTypes for the types supported.- Parameters:
types-
-
getColumnType
public String[] getColumnType()
Returns an array of the column types. See org.pentaho.commons.connection.IPentahoDataTypes for the types supported.- Returns:
-
-