All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.type.TrueFalseType Maven / Gradle / Ivy

There is a newer version: 4.2.4
Show newest version
//$Id: TrueFalseType.java 3890 2004-06-03 16:31:32Z steveebersole $
package org.hibernate.type;

/**
 * true_false: A type that maps an SQL CHAR(1) to a Java Boolean.
 * @author Gavin King
 */
public class TrueFalseType extends CharBooleanType {

	protected final String getTrueString() {
		return "T";
	}
	protected final String getFalseString() {
		return "F";
	}
	public String getName() { return "true_false"; }

}











© 2015 - 2024 Weber Informatics LLC | Privacy Policy