/*
 * Hibernate, Relational Persistence for Idiomatic Java
 *
 * Copyright (c) 2010, Red Hat Inc. or third-party contributors as
 * indicated by the @author tags or express copyright attribution
 * statements applied by the authors.  All third-party contributions are
 * distributed under license by Red Hat Inc.
 *
 * This copyrighted material is made available to anyone wishing to use, modify,
 * copy, or redistribute it subject to the terms and conditions of the GNU
 * Lesser General Public License, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
 * or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License
 * for more details.
 *
 * You should have received a copy of the GNU Lesser General Public License
 * along with this distribution; if not, write to:
 * Free Software Foundation, Inc.
 * 51 Franklin Street, Fifth Floor
 * Boston, MA  02110-1301  USA
 */
package org.hibernate.type.descriptor.java;

import java.math.BigDecimal;
import java.math.BigInteger;

import org.hibernate.type.descriptor.WrapperOptions;

Descriptor for Float handling.
Author:Steve Ebersole
/** * Descriptor for {@link Float} handling. * * @author Steve Ebersole */
public class FloatTypeDescriptor extends AbstractTypeDescriptor<Float> { public static final FloatTypeDescriptor INSTANCE = new FloatTypeDescriptor(); public FloatTypeDescriptor() { super( Float.class ); } @Override public String toString(Float value) { return value == null ? null : value.toString(); } @Override public Float fromString(String string) { return Float.valueOf( string ); } @SuppressWarnings({ "unchecked" }) @Override public <X> X unwrap(Float value, Class<X> type, WrapperOptions options) { if ( value == null ) { return null; } if ( Float.class.isAssignableFrom( type ) ) { return (X) value; } if ( Byte.class.isAssignableFrom( type ) ) { return (X) Byte.valueOf( value.byteValue() ); } if ( Short.class.isAssignableFrom( type ) ) { return (X) Short.valueOf( value.shortValue() ); } if ( Integer.class.isAssignableFrom( type ) ) { return (X) Integer.valueOf( value.intValue() ); } if ( Long.class.isAssignableFrom( type ) ) { return (X) Long.valueOf( value.longValue() ); } if ( Double.class.isAssignableFrom( type ) ) { return (X) Double.valueOf( value.doubleValue() ); } if ( BigInteger.class.isAssignableFrom( type ) ) { return (X) BigInteger.valueOf( value.longValue() ); } if ( BigDecimal.class.isAssignableFrom( type ) ) { return (X) BigDecimal.valueOf( value ); } if ( String.class.isAssignableFrom( type ) ) { return (X) value.toString(); } throw unknownUnwrap( type ); } @Override public <X> Float wrap(X value, WrapperOptions options) { if ( value == null ) { return null; } if ( Float.class.isInstance( value ) ) { return (Float) value; } if ( Number.class.isInstance( value ) ) { return ( (Number) value ).floatValue(); } else if ( String.class.isInstance( value ) ) { return Float.valueOf( ( (String) value ) ); } throw unknownWrap( value.getClass() ); } }