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