/* * 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 org.hibernate.type.descriptor.WrapperOptions; /** * Descriptor for {@link Byte} handling. * * @author Steve Ebersole * @author Lukasz Antoniak (lukasz dot antoniak at gmail dot com) */ public class ByteTypeDescriptor extends AbstractTypeDescriptor<Byte> { public static final ByteTypeDescriptor INSTANCE = new ByteTypeDescriptor(); public ByteTypeDescriptor() { super( Byte.class ); } public String toString(Byte value) { return value == null ? null : value.toString(); } public Byte fromString(String string) { return Byte.valueOf( string ); } @SuppressWarnings({ "unchecked" }) public <X> X unwrap(Byte value, Class<X> type, WrapperOptions options) { if ( value == null ) { return null; } if ( Byte.class.isAssignableFrom( type ) ) { return (X) value; } 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 ( Float.class.isAssignableFrom( type ) ) { return (X) Float.valueOf( value.floatValue() ); } if ( String.class.isAssignableFrom( type ) ) { return (X) value.toString(); } throw unknownUnwrap( type ); } @SuppressWarnings({ "UnnecessaryBoxing" }) public <X> Byte wrap(X value, WrapperOptions options) { if ( value == null ) { return null; } if ( Byte.class.isInstance( value ) ) { return (Byte) value; } if ( Number.class.isInstance( value ) ) { return Byte.valueOf( ( (Number) value ).byteValue() ); } if ( String.class.isInstance( value ) ) { return Byte.valueOf( ( (String) value ) ); } throw unknownWrap( value.getClass() ); } }