Interface ColumnConverterReactive


public interface ColumnConverterReactive
Interface used in the (@link ConditionBuilder) to help build literal 'value expression' of the Conditions. Converters registered in the (@link DataBaseConfiguration) of the Springboot app will be used for the datatype/data conversion
  • Method Summary

    Modifier and Type
    Method
    Description
    <T> T
    convert(Object value, Class<T> target)
    Converts the value to the target class with the help of the ConversionService.
  • Method Details

    • convert

      <T> T convert(@Nullable Object value, @Nullable Class<T> target)
      Converts the value to the target class with the help of the ConversionService.
      Type Parameters:
      T - the parameter for the intended type.
      Parameters:
      value - to convert.
      target - class.
      Returns:
      the value which can be constructed from the input.