Interface ValueToStringConverter.ValueToString<T>

Type Parameters:
T - Type to convert.
All Known Subinterfaces:
ValueToStringConverter.SimpleValueToString<T>
All Known Implementing Classes:
InstantToString
Enclosing class:
ValueToStringConverter
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 ValueToStringConverter.ValueToString<T>
Interface to convert a type to a String.
  • Method Summary

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

    • convert

      String convert(T t, SdkField<T> field)
      Converts the value to a string.
      Parameters:
      t - Value to convert.
      field - SdkField containing metadata about the member being marshalled.
      Returns:
      String value.