Interface TypeConverter<InputType,OutputType>

Type Parameters:
InputType - type of the value to be converted.
OutputType - type of the converted value.

public interface TypeConverter<InputType,OutputType>
Converter from one type to another. Meant to be used for converting plain values from the mule configuration to specific types required by a runtime object.
  • Method Summary

    Modifier and Type
    Method
    Description
    convert(InputType inputType)
    Converters from one type to another.
  • Method Details

    • convert

      OutputType convert(InputType inputType)
      Converters from one type to another.
      Parameters:
      inputType - the value to be converted.
      Returns:
      the converted value.