Open Source Repository

Home /jodd/jodd-3.3.2 | Repository Home



jodd/typeconverter/impl/ClassConverter.java
// Copyright (c) 2003-2012, Jodd Team (jodd.org). All Rights Reserved.

package jodd.typeconverter.impl;

import jodd.typeconverter.TypeConversionException;
import jodd.typeconverter.TypeConverter;
import jodd.util.ClassLoaderUtil;

/**
 * Converts given object to <code>Class</code>.
 * Conversion rules:
 <li><code>null</code> value is returned as <code>null</code>
 <li>object of destination type is simply casted
 <li>string value of the object is trimmed and used for class loading.
 */
public class ClassConverter implements TypeConverter<Class> {

  public Class convert(Object value) {
    if (value == null) {
      return null;
    }

    if (value.getClass() == Class.class) {
      return (Classvalue;
    }
    try {
      return ClassLoaderUtil.loadClass(value.toString().trim());
    catch (ClassNotFoundException cnfex) {
      throw new TypeConversionException(value, cnfex);
    }
  }

}