Annotation Type MulticonvertedColumnValue



  • @Documented
    @Target(METHOD)
    @Retention(RUNTIME)
    public @interface MulticonvertedColumnValue
    Indicate binding of method (setter) to value of the named column converted by multiple convertors.

    Only public setter method of classes property should be annotated. Method is expected to have one List<ConversionResult> parameter and void return type.

    Annotated method is invoked during UnivalConvertor.fillMulticonvertedValues(java.util.List, java.lang.Class, java.util.List). Value of bound column obtained from ColumnValue annotated getter is converted with each dictionary convertor producing list, which is passed in as parameter.

    • Required Element Summary

      Required Elements 
      Modifier and Type Required Element Description
      java.lang.String name
      Indicate name of the bound column.
    • Element Detail

      • name

        java.lang.String name
        Indicate name of the bound column.
        Returns:
        name of the column