Annotation Type BasicMap

    • Optional Element Summary

      Optional Elements 
      Modifier and Type Optional Element Description
      FetchType fetch
      Deprecated.
      (Optional) Defines whether the value of the field or property should be lazily loaded or must be eagerly fetched.
      Column keyColumn
      Deprecated.
      (Optional) The name of the data column that holds the direct map key.
      Convert keyConverter
      Deprecated.
      (Optional) Specify the key converter.
      Column valueColumn
      Deprecated.
      (Optional) The name of the data column that holds the direct collection data.
      Convert valueConverter
      Deprecated.
      (Optional) Specify the value converter.
    • Element Detail

      • fetch

        FetchType fetch
        Deprecated.
        (Optional) Defines whether the value of the field or property should be lazily loaded or must be eagerly fetched. The EAGER strategy is a requirement on the persistence provider runtime that the value must be eagerly fetched. The LAZY strategy is a hint to the persistence provider runtime. If not specified, defaults to LAZY.
        Default:
        javax.persistence.FetchType.LAZY
      • keyColumn

        Column keyColumn
        Deprecated.
        (Optional) The name of the data column that holds the direct map key. If the name on the key column is "", the name will default to: the name of the property or field; "_KEY".
        Default:
        @javax.persistence.Column
      • keyConverter

        Convert keyConverter
        Deprecated.
        (Optional) Specify the key converter. Default is equivalent to specifying @Convert("none"), meaning no converter will be added to the direct map key.
        Default:
        @org.eclipse.persistence.annotations.Convert
      • valueColumn

        Column valueColumn
        Deprecated.
        (Optional) The name of the data column that holds the direct collection data. Defaults to the property or field name.
        Default:
        @javax.persistence.Column
      • valueConverter

        Convert valueConverter
        Deprecated.
        (Optional) Specify the value converter. Default is equivalent to specifying @Convert("none"), meaning no converter will be added to the value column mapping.
        Default:
        @org.eclipse.persistence.annotations.Convert