Interface StringToValueConverter.StringToValue<T>

Type Parameters:
T - Type to convert to.
All Known Subinterfaces:
StringToValueConverter.SimpleStringToValue<T>
All Known Implementing Classes:
StringToInstant
Enclosing class:
StringToValueConverter
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface StringToValueConverter.StringToValue<T>
Interface to convert a String into another type.
  • Method Summary

    Modifier and Type
    Method
    Description
    convert(String s, SdkField<T> sdkField)
    Converts the value to a string.
  • Method Details

    • convert

      T convert(String s, SdkField<T> sdkField)
      Converts the value to a string.
      Parameters:
      s - Value to convert from.
      sdkField - SdkField containing metadata about the member being unmarshalled.
      Returns:
      Unmarshalled value.