Class ItemParameterValueData

    • Constructor Detail

      • ItemParameterValueData

        public ItemParameterValueData()
      • ItemParameterValueData

        public ItemParameterValueData​(BasicData... values)
    • Method Detail

      • getValueType

        public int getValueType()
        Description copied from class: ParameterValueData
        Get the type of parameter values that are store in this parameter. The value should correspond to one of the Type.getValue() values, or 0 if the parameter has no corresponding type.
        Specified by:
        getValueType in class ParameterValueData<BasicData>
        Returns:
        0 (No corresponding TYPE entry)
        Since:
        2.16
      • getValues

        public List<BasicData> getValues()
        Description copied from class: ParameterValueData
        Get values of this parameter. Hibernate mapped in each subclass to a bag containing all values for the parameter.
        Specified by:
        getValues in class ParameterValueData<BasicData>
        Returns:
        Collection of values.
        Hibernate: collection-key
        column="`id`"
        Hibernate: bag
        table="`ItemValues`" lazy="true"
        Hibernate: many-to-any
        id-type="int" meta-type=""
        Hibernate: many-to-any-column
        name="`data_class`" not-null="true" length="255", name="`data_class_id`" not-null="true"