Package net.sf.basedb.core.data
Class DataCubeLayerData
java.lang.Object
net.sf.basedb.core.data.BasicData
net.sf.basedb.core.data.DataCubeLayerData
- All Implemented Interfaces:
IdentifiableData
This class holds information about a single layer in a data cube.
- Version:
- 2.0
- Author:
- Nicklas
- See Also:
- Last modified
- $Date: 2014-06-10 13:27:02 +0200 (ti, 10 jun 2014) $
- Hibernate: class
- table="`DataCubeLayers`" lazy="true"
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionlong
getBytes()
The number of bytes the analysed data in this cube occupies on disk.Get the data cube this layer belongs to.short
The layer number of this layer in the data cube.void
setBytes
(long bytes) void
setDataCube
(DataCubeData dataCube) void
setLayerNo
(short layerNo) Methods inherited from class net.sf.basedb.core.data.BasicData
equals, getId, getVersion, hashCode, setId, setVersion, toString
-
Field Details
-
dataCube
-
layerNo
private short layerNo -
bytes
private long bytes
-
-
Constructor Details
-
DataCubeLayerData
public DataCubeLayerData()
-
-
Method Details
-
getDataCube
Get the data cube this layer belongs to.- Hibernate: many-to-one
- column="`datacube_id`" not-null="true" outer-join="false" update="false" unique-key="DataCubeLayer_uniquelayer"
-
setDataCube
-
getLayerNo
public short getLayerNo()The layer number of this layer in the data cube.- Hibernate: property
- column="`layer_no`" type="short" not-null="true" update="false" unique-key="DataCubeLayer_uniquelayer"
-
setLayerNo
public void setLayerNo(short layerNo) -
getBytes
public long getBytes()The number of bytes the analysed data in this cube occupies on disk.- Hibernate: property
- column="`bytes`" type="long" not-null="true"
-
setBytes
public void setBytes(long bytes)
-