Method | Description | |
---|---|---|
ConverterFactory ( ) : System |
Constructor for the
|
|
GetConstructor ( Class type ) : Constructor |
This is used to acquire the default no argument constructor for the the provided type. If the constructor is not accessible then it will be made accessible so that it can be instantiated.
|
|
GetConverter ( Class type ) : Converter |
This is used to instantiate the converter based on the type provided. If the type provided can not be instantiated for some reason then an exception is thrown from this method.
|
|
GetConverter ( Class type, Constructor factory ) : Converter |
This is used to instantiate the converter based on the type provided. If the type provided can not be instantiated for some reason then an exception is thrown from this method.
|
|
GetInstance ( Class type ) : Converter |
This is used to instantiate the converter based on the type provided. If the type provided can not be instantiated for some reason then an exception is thrown from this method.
|
|
GetInstance ( Convert convert ) : Converter |
This is used to instantiate the converter based on the type of the
|
public GetConstructor ( Class type ) : Constructor | ||
type | Class | /// this is the type to acquire the constructor for /// |
return | Constructor |
public GetConverter ( Class type ) : Converter | ||
type | Class | /// this is the converter type to be instantiated /// |
return | Converter |
public GetConverter ( Class type, Constructor factory ) : Converter | ||
type | Class | /// this is the converter type to be instantiated /// |
factory | Constructor | /// this is the constructor used to instantiate /// |
return | Converter |
public GetInstance ( Class type ) : Converter | ||
type | Class | /// this is the converter type to be instantiated /// |
return | Converter |
public GetInstance ( Convert convert ) : Converter | ||
convert | Convert | /// this is the annotation containing the type /// |
return | Converter |