Package io.microsphere.convert
Class StringToStringConverter
- java.lang.Object
-
- io.microsphere.convert.StringToStringConverter
-
- All Implemented Interfaces:
Converter<java.lang.String,java.lang.String>
,StringConverter<java.lang.String>
,Prioritized
,java.lang.Comparable<Prioritized>
public class StringToStringConverter extends java.lang.Object implements StringConverter<java.lang.String>
A class to covertString
toString
value, just no-op- Since:
- 1.0.0
-
-
Field Summary
-
Fields inherited from interface io.microsphere.lang.Prioritized
COMPARATOR, MAX_PRIORITY, MIN_PRIORITY, NORMAL_PRIORITY
-
-
Constructor Summary
Constructors Constructor Description StringToStringConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
convert(java.lang.String source)
Convert the source-typed value to the target-typed value-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface io.microsphere.convert.Converter
accept, getSourceType, getTargetType
-
Methods inherited from interface io.microsphere.lang.Prioritized
compareTo, getPriority
-
-
-
-
Method Detail
-
convert
public java.lang.String convert(java.lang.String source)
Description copied from interface:Converter
Convert the source-typed value to the target-typed value
-
-