FileDocCategorySizeDatePackage
BinaryType.javaAPI DocHibernate 3.2.5509Fri Jun 09 22:24:06 BST 2006org.hibernate.type

BinaryType

public class BinaryType extends AbstractBynaryType
binary: A type that maps an SQL VARBINARY to a Java byte[].
author
Gavin King

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

 return "binary"; 
public java.lang.ClassgetReturnedClass()

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

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

		return (byte[]) bytes;