Package ome.metakit
Class ColumnMap
- java.lang.Object
-
- ome.metakit.ColumnMap
-
public class ColumnMap extends Object
Class representating a column mapping in a Metakit database file.- Author:
- Melissa Linkert melissa at glencoesoftware.com
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ArrayList
getValueList()
Return the list of values in this map's column.Object[]
getValues()
Return an array of the values in this map's column.boolean
isFixedMap()
Return whether or not this map represents a fixed-type column.
-
-
-
Constructor Detail
-
ColumnMap
public ColumnMap(Column col, loci.common.RandomAccessInputStream stream, int rowCount)
-
-
Method Detail
-
getValueList
public ArrayList getValueList()
Return the list of values in this map's column.
-
getValues
public Object[] getValues()
Return an array of the values in this map's column.
-
isFixedMap
public boolean isFixedMap()
Return whether or not this map represents a fixed-type column. Fixed-type columns have type "I", "F", "D", or "L".
-
-