Class DataCubeData

    • Constructor Detail

      • DataCubeData

        public DataCubeData()
    • Method Detail

      • getVirtualDb

        public VirtualDbData getVirtualDb()
        Get the virtual database this cube belongs to.
        Hibernate: many-to-one
        column="`virtualdb_id`" not-null="true" outer-join="false" update="false" unique-key="DataCube_uniquecube"
      • setVirtualDb

        public void setVirtualDb​(VirtualDbData virtualDb)
      • getCubeNo

        public short getCubeNo()
        The cube number of this cube in the virtual database.
        Hibernate: property
        column="`cube_no`" type="short" not-null="true" update="false" unique-key="DataCube_uniquecube"
      • setCubeNo

        public void setCubeNo​(short cubeNo)
      • getBytes

        public long getBytes()
        The number of bytes the analysed data in this cube occupies on disk. Updates to this column are done through SQL statements and not through this object.
        Hibernate: property
        column="`bytes`" type="long" not-null="true" update="false"
      • setBytes

        public void setBytes​(long bytes)
      • getNumFilters

        public short getNumFilters()
        The number of filters in this data cube. Updates to this column are done through SQL statements and not through this object.
        Hibernate: property
        column="`filters`" type="short" not-null="true" update="false"
      • setNumFilters

        public void setNumFilters​(short numFilters)
      • getNumExtraValues

        public short getNumExtraValues()
        The number of extra values in this data cube. Updates to this column are done through SQL statements and not through this object.
        Hibernate: property
        column="`extravalues`" type="short" not-null="true" update="false"
      • setNumExtraValues

        public void setNumExtraValues​(short numExtraValues)
      • getNumLayers

        public short getNumLayers()
        The number of layers in this data cube. Updates to this column are done through SQL statements and not through this object.
        Hibernate: property
        column="`layers`" type="short" not-null="true" update="false"
      • setNumLayers

        public void setNumLayers​(short numLayers)
      • getNumColumns

        public short getNumColumns()
        The number of columns in this data cube.
        Hibernate: property
        column="`columns`" type="short" not-null="true" update="false"
      • setNumColumns

        public void setNumColumns​(short numColumns)
      • getNumPositions

        public int getNumPositions()
        The number of positions in this data cube.
        Hibernate: property
        column="`positions`" type="int" not-null="true" update="false"
      • setNumPositions

        public void setNumPositions​(int numPositions)
      • getMaxRawMappingsForSpot

        public int getMaxRawMappingsForSpot()
        The maximum number of raw data spots a single spot in this data cube is mapped to.
        Hibernate: property
        column="`max_raw_spots`" type="int" not-null="true" update="false"
      • setMaxRawMappingsForSpot

        public void setMaxRawMappingsForSpot​(int maxRawMappings)
      • getLayers

        Set<DataCubeLayerData> getLayers()
        This is the inverse end.
        See Also:
        DataCubeLayerData.getDataCube()
        Hibernate: set
        lazy="true" inverse="true" cascade="delete"
        Hibernate: collection-key
        column="`datacube_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.DataCubeLayerData"
      • getColumns

        Set<DataCubeColumnData> getColumns()
        This is the inverse end.
        See Also:
        DataCubeColumnData.getDataCube()
        Hibernate: set
        lazy="true" inverse="true" cascade="delete"
        Hibernate: collection-key
        column="`datacube_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.DataCubeColumnData"
      • getFilters

        Set<DataCubeFilterData> getFilters()
        This is the inverse end.
        See Also:
        DataCubeFilterData.getDataCube()
        Hibernate: set
        lazy="true" inverse="true" cascade="delete"
        Hibernate: collection-key
        column="`datacube_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.DataCubeFilterData"
      • getExtraValues

        Set<DataCubeExtraValueData> getExtraValues()
        This is the inverse end.
        See Also:
        DataCubeExtraValueData.getDataCube()
        Hibernate: set
        lazy="true" inverse="true" cascade="delete"
        Hibernate: collection-key
        column="`datacube_id`"
        Hibernate: collection-one-to-many
        class="net.sf.basedb.core.data.DataCubeExtraValueData"