类 PropertiesToStringConverter
java.lang.Object
cn.taketoday.core.conversion.support.PropertiesToStringConverter
- 所有已实现的接口:
Converter<Properties,String>
Converts from a Properties to a String by calling
Properties.store(java.io.OutputStream, String).
Decodes with the ISO-8859-1 charset before returning the String.- 从以下版本开始:
- 3.0
- 作者:
- Keith Donald
-
构造器详细资料
-
PropertiesToStringConverter
PropertiesToStringConverter()
-
-
方法详细资料
-
convert
从接口复制的说明:ConverterConvert the source object of typeSto target typeT.- 指定者:
convert在接口中Converter<Properties,String> - 参数:
source- the source object to convert, which must be an instance ofS(nevernull)- 返回:
- the converted object, which must be an instance of
T(potentiallynull)
-