List of usage examples for org.hibernate.type StandardBasicTypes LONG
LongType LONG
To view the source code for org.hibernate.type StandardBasicTypes LONG.
Click Source Link
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); }