Package io.microsphere.convert
Class StringToClassConverter
- java.lang.Object
-
- io.microsphere.convert.StringToClassConverter
-
- All Implemented Interfaces:
Converter<java.lang.String,java.lang.Class>
,StringConverter<java.lang.Class>
,Prioritized
,java.lang.Comparable<Prioritized>
public class StringToClassConverter extends java.lang.Object implements StringConverter<java.lang.Class>
The class to convertString
toClass
- Since:
- 1.0.0
- Author:
- Mercy
-
-
Field Summary
Fields Modifier and Type Field Description static StringToClassConverter
INSTANCE
-
Fields inherited from interface io.microsphere.lang.Prioritized
COMPARATOR, MAX_PRIORITY, MIN_PRIORITY, NORMAL_PRIORITY
-
-
Constructor Summary
Constructors Constructor Description StringToClassConverter()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Class
convert(java.lang.String className)
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
-
-
-
-
Field Detail
-
INSTANCE
public static final StringToClassConverter INSTANCE
-
-
Method Detail
-
convert
public java.lang.Class convert(java.lang.String className)
Description copied from interface:Converter
Convert the source-typed value to the target-typed value
-
-