Example usage for org.hibernate.type StandardBasicTypes LONG

List of usage examples for org.hibernate.type StandardBasicTypes LONG

Introduction

In this page you can find the example usage for org.hibernate.type StandardBasicTypes LONG.

Prototype

LongType LONG

To view the source code for org.hibernate.type StandardBasicTypes LONG.

Click Source Link

Document

The standard Hibernate type for mapping Long to JDBC java.sql.Types#BIGINT BIGINT .

Usage

From source file:org.optaplanner.persistence.jpa.impl.score.buildin.hardmediumsoftlong.HardMediumSoftLongScoreHibernateType.java

License:Apache License

public HardMediumSoftLongScoreHibernateType() {
    scoreDefinition = new HardMediumSoftLongScoreDefinition();
    type = StandardBasicTypes.LONG;
}

From source file:org.optaplanner.persistence.jpa.impl.score.buildin.hardsoftlong.HardSoftLongScoreHibernateType.java

License:Apache License

public HardSoftLongScoreHibernateType() {
    scoreDefinition = new HardSoftLongScoreDefinition();
    type = StandardBasicTypes.LONG;
}

From source file:org.optaplanner.persistence.jpa.impl.score.buildin.simplelong.SimpleLongScoreHibernateType.java

License:Apache License

public SimpleLongScoreHibernateType() {
    scoreDefinition = new SimpleLongScoreDefinition();
    type = StandardBasicTypes.LONG;
}

From source file:org.riotfamily.common.hibernate.FailSafeAnyType.java

License:Apache License

public FailSafeAnyType() {
    super(StandardBasicTypes.STRING, StandardBasicTypes.LONG);
}