Example usage for org.hibernate.type.descriptor.sql TinyIntTypeDescriptor INSTANCE

List of usage examples for org.hibernate.type.descriptor.sql TinyIntTypeDescriptor INSTANCE

Introduction

In this page you can find the example usage for org.hibernate.type.descriptor.sql TinyIntTypeDescriptor INSTANCE.

Prototype

TinyIntTypeDescriptor INSTANCE

To view the source code for org.hibernate.type.descriptor.sql TinyIntTypeDescriptor INSTANCE.

Click Source Link

Usage

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);
}