List of usage examples for org.hibernate.type.descriptor.sql TinyIntTypeDescriptor INSTANCE
TinyIntTypeDescriptor INSTANCE
To view the source code for org.hibernate.type.descriptor.sql TinyIntTypeDescriptor INSTANCE.
Click Source Link
From source file:dk.teachus.backend.dao.hibernate.BooleanType.java
License:Apache License
public BooleanType() { this(TinyIntTypeDescriptor.INSTANCE, BooleanTypeDescriptor.INSTANCE); }
From source file:org.unitedinternet.cosmo.hibernate.BooleanIntegerType.java
License:Apache License
public BooleanIntegerType() { super(TinyIntTypeDescriptor.INSTANCE, BooleanTypeDescriptor.INSTANCE); }