Interface ValueConverter<T>

Type Parameters:
T - type to convert to

public interface ValueConverter<T>
Represents a converter which is used to convert requested value to T type.
  • Method Summary

    Modifier and Type
    Method
    Description
    convert(Object value)
    Converts passed in String value to T type.
  • Method Details

    • convert

      T convert(Object value)
      Converts passed in String value to T type.
      Parameters:
      value - value
      Returns:
      converted value