Package net.sf.basedb.core.data
Class DataCubeFilterData
java.lang.Object
net.sf.basedb.core.data.BasicData
net.sf.basedb.core.data.DataCubeFilterData
- All Implemented Interfaces:
IdentifiableData
This class holds information about a single filter 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="`DataCubeFilters`" 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 filter belongs to.short
The number of this filter in the data cube.void
setBytes
(long bytes) void
setDataCube
(DataCubeData dataCube) void
setFilterNo
(short filterNo) Methods inherited from class net.sf.basedb.core.data.BasicData
equals, getId, getVersion, hashCode, setId, setVersion, toString
-
Field Details
-
dataCube
-
filterNo
private short filterNo -
bytes
private long bytes
-
-
Constructor Details
-
DataCubeFilterData
public DataCubeFilterData()
-
-
Method Details
-
getDataCube
Get the data cube this filter belongs to.- Hibernate: many-to-one
- column="`datacube_id`" not-null="true" outer-join="false" update="false" unique-key="DataCubeFilter_uniquefilter"
-
setDataCube
-
getFilterNo
public short getFilterNo()The number of this filter in the data cube. Must be unique within the data cube.- Hibernate: property
- column="`filter_no`" type="short" not-null="true" update="false" unique-key="DataCubeFilter_uniquefilter"
-
setFilterNo
public void setFilterNo(short filterNo) -
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" update="false"
-
setBytes
public void setBytes(long bytes)
-