Class DataCubeExtraValueData

    • Field Detail

      • extraNo

        private short extraNo
      • bytes

        private long bytes
      • coordinateType

        private int coordinateType
      • valueType

        private int valueType
    • Constructor Detail

      • DataCubeExtraValueData

        public DataCubeExtraValueData()
    • Method Detail

      • getDataCube

        public DataCubeData 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="DataCubeExtraValue_uniqueextra"
      • setDataCube

        public void setDataCube​(DataCubeData dataCube)
      • getExtraNo

        public short getExtraNo()
        The number of this extra value in the data cube. Must be unique within the data cube.
        Hibernate: property
        column="`extra_no`" type="short" not-null="true" update="false" unique-key="DataCubeExtraValue_uniqueextra"
      • setExtraNo

        public void setExtraNo​(short extraNo)
      • getBytes

        public long getBytes()
        The number of bytes the extra values data occupies on disk.
        Hibernate: property
        column="`bytes`" type="long" not-null="true" update="false"
      • setBytes

        public void setBytes​(long bytes)
      • getCoordinateType

        public int getCoordinateType()
        If the extra value is a spot extra value, a position extra value or a column extra value.
        Hibernate: property
        column="`coordinate_type`" type="int" not-null="true" update="false"
      • setCoordinateType

        public void setCoordinateType​(int coordinateType)
      • getValueType

        public int getValueType()
        The type of value, ie. int, float or string.
        See Also:
        Type
        Hibernate: property
        column="`value_type`" type="int" not-null="true" update="false"
      • setValueType

        public void setValueType​(int valueType)