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
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
convert(T t, SdkField<T> field)
Converts the value to a string.
-