Package loxia.core.utils

Source Code of loxia.core.utils.HibernateUtil

package loxia.core.utils;

import java.math.BigDecimal;
import java.util.Calendar;
import java.util.Currency;
import java.util.Date;
import java.util.Locale;
import java.util.TimeZone;

import org.hibernate.type.BigDecimalType;
import org.hibernate.type.BooleanType;
import org.hibernate.type.CalendarType;
import org.hibernate.type.CharacterType;
import org.hibernate.type.CurrencyType;
import org.hibernate.type.DoubleType;
import org.hibernate.type.FloatType;
import org.hibernate.type.IntegerType;
import org.hibernate.type.LocaleType;
import org.hibernate.type.LongType;
import org.hibernate.type.SerializableType;
import org.hibernate.type.ShortType;
import org.hibernate.type.StringType;
import org.hibernate.type.TimeZoneType;
import org.hibernate.type.TimestampType;
import org.hibernate.type.Type;

public class HibernateUtil {
  public static Type translateClass(Class<?> clazz){
    if(clazz == null)
      throw new IllegalArgumentException();
    if(Integer.class.equals(clazz) || int.class.equals(clazz)){
      return new IntegerType();
    }else if(Long.class.equals(clazz) || long.class.equals(clazz)){
      return new LongType();
    }else if(Short.class.equals(clazz) || short.class.equals(clazz)){
      return new ShortType();
    }else if(Character.class.equals(clazz) || char.class.equals(clazz)){
      return new CharacterType();
    }else if(BigDecimal.class.equals(clazz)){
      return new BigDecimalType();
    }else if(Float.class.equals(clazz) || float.class.equals(clazz)){
      return new FloatType();
    }else if(Double.class.equals(clazz) || double.class.equals(clazz)){
      return new DoubleType();
    }else if(Boolean.class.equals(clazz) || boolean.class.equals(clazz)){
      return new BooleanType();
    }else if(String.class.equals(clazz)){
      return new StringType();
    }else if(Date.class.equals(clazz)){
      return new TimestampType();
    }else if(Calendar.class.equals(clazz)){
      return new CalendarType();
    }else if(Locale.class.equals(clazz)){
      return new LocaleType();
    }else if(TimeZone.class.equals(clazz)){
      return new TimeZoneType();
    }else if(Currency.class.equals(clazz)){
      return new CurrencyType();
    }else{
      return new SerializableType(clazz);
    }
  }
}
TOP

Related Classes of loxia.core.utils.HibernateUtil

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.