* @return The DateDecoder instance, or null if no such instance is available.
* @throws DataDecodeException Failed to load alias decoder.
*/
public static DataDecoder create(String typeAlias) throws DataDecodeException {
if(typeAlias == null) {
return new StringDecoder();
}
String className = StringDecoder.class.getPackage().getName() + "." + typeAlias + "Decoder";
try {