FileDocCategorySizeDatePackage
MaterializedBlobType.javaAPI DocHibernate 3.2.5581Tue Nov 21 09:04:46 GMT 2006org.hibernate.test.lob

MaterializedBlobType

public class MaterializedBlobType extends org.hibernate.type.AbstractBynaryType
{@inheritDoc}
author
Steve Ebersole

Fields Summary
Constructors Summary
Methods Summary
public java.lang.StringgetName()

		return "materialized-blob";
	
public java.lang.ClassgetReturnedClass()

		return byte[].class;
	
public intsqlType()

		return Types.BLOB;
	
protected java.lang.ObjecttoExternalFormat(byte[] bytes)

		return bytes;
	
protected byte[]toInternalFormat(java.lang.Object bytes)

		return ( byte[] ) bytes;