Example usage for org.hibernate.type AbstractSingleColumnStandardBasicType subclass-usage

List of usage examples for org.hibernate.type AbstractSingleColumnStandardBasicType subclass-usage

Introduction

In this page you can find the example usage for org.hibernate.type AbstractSingleColumnStandardBasicType subclass-usage.

Usage

From source file com.github.gekoh.yagen.hibernate.OracleNumericBooleanType.java

/**
 * @author Georg Kohlweiss 
 */
public class OracleNumericBooleanType extends AbstractSingleColumnStandardBasicType<Boolean>
        implements PrimitiveType<Boolean>, DiscriminatorType<Boolean> {
    //private static final org.slf4j.Logger LOG = org.slf4j.LoggerFactory.getLogger(OracleNumericBooleanType.class);

From source file dk.teachus.backend.dao.hibernate.BooleanType.java

/**
 * A type that maps between {@link java.sql.Types#TINYINT} and {@link Boolean}
 */
public class BooleanType extends AbstractSingleColumnStandardBasicType<Boolean>
        implements PrimitiveType<Boolean>, DiscriminatorType<Boolean> {
    private static final long serialVersionUID = 1L;

From source file hibernate.type.InstantType.java

/**
 * A type that maps between {@link java.sql.Types#TIMESTAMP TIMESTAMP} and {@link java.time.LocalDateTime}.
 *
 * @author Steve Ebersole
 */
public class InstantType extends AbstractSingleColumnStandardBasicType<Instant>

From source file io.pivotal.strepsirrhini.chaosloris.data.InstantType.java

public final class InstantType extends AbstractSingleColumnStandardBasicType<Instant>
        implements VersionType<Instant>, LiteralType<Instant> {

    static final DateTimeFormatter FORMATTER = DateTimeFormatter.ofPattern("yyyy-MM-dd HH:mm:ss.S 'Z'",
            Locale.ENGLISH);

From source file it.scoppelletti.programmerpower.data.types.SimpleDateType.java

/**
 * Data.
 * 
 * @since 1.0.0
 */
public final class SimpleDateType extends AbstractSingleColumnStandardBasicType<SimpleDate> {

From source file it.scoppelletti.programmerpower.data.types.SimpleTimestampType.java

/**
 * Istante.
 * 
 * @since 1.0.0
 */
public final class SimpleTimestampType extends AbstractSingleColumnStandardBasicType<SimpleTimestamp> {

From source file it.scoppelletti.programmerpower.data.types.SimpleTimeType.java

/**
 * Orario.
 * 
 * @since 1.0.0
 */
public final class SimpleTimeType extends AbstractSingleColumnStandardBasicType<SimpleTime> {

From source file org.bonitasoft.engine.persistence.PostgresMaterializedBlobType.java

/**
 * @author Guillaume Rosinosky
 */
public class PostgresMaterializedBlobType extends AbstractSingleColumnStandardBasicType<byte[]> {
    public PostgresMaterializedBlobType() {
        // mapping binary to byte[] (for bytea type in Postgres)

From source file org.bonitasoft.engine.persistence.PostgresMaterializedClobType.java

/**
 * @author Guillaume Rosinosky
 */
public class PostgresMaterializedClobType extends AbstractSingleColumnStandardBasicType<String> {
    public PostgresMaterializedClobType() {
        // forcing VARCHAR to String as there is no real CLOB in PSQL

From source file org.bonitasoft.engine.persistence.PostgresXMLType.java

public class PostgresXMLType extends AbstractSingleColumnStandardBasicType<Serializable> {

    public PostgresXMLType() {
        // forcing VARCHAR to String as there is no real CLOB in PSQL
        super(VarcharTypeDescriptor.INSTANCE, new XMLTypeDescriptor());
    }