Example usage for org.hibernate.dialect.function SQLFunction interface-usage

List of usage examples for org.hibernate.dialect.function SQLFunction interface-usage

Introduction

In this page you can find the example usage for org.hibernate.dialect.function SQLFunction interface-usage.

Usage

From source file com.blazebit.persistence.impl.hibernate.function.HibernateJpqlFunctionAdapter.java

/**
 *
 * @author Christian Beikov
 * @since 1.0
 */
public class HibernateJpqlFunctionAdapter implements SQLFunction {

From source file com.blazebit.persistence.integration.hibernate.base.function.HibernateJpqlFunctionAdapter.java

/**
 *
 * @author Christian Beikov
 * @since 1.0.0
 */
public class HibernateJpqlFunctionAdapter implements SQLFunction {

From source file com.krawler.crm.exhibernate.BitwiseAndFunction.java

public class BitwiseAndFunction extends StandardSQLFunction implements SQLFunction {

    public BitwiseAndFunction(String name) {
        super(name);
    }

From source file ru.caramel.juniperbot.core.common.persistence.support.PostgreSQLPlainToTSQueryFunction.java

public class PostgreSQLPlainToTSQueryFunction implements SQLFunction {
    @Override
    public Type getReturnType(Type columnType, Mapping mapping) throws QueryException {
        return BooleanType.INSTANCE;
    }

From source file ru.caramel.juniperbot.core.common.persistence.support.PostgreSQLToRankCDFunction.java

public class PostgreSQLToRankCDFunction implements SQLFunction {

    @Override
    public Type getReturnType(Type columnType, Mapping mapping) throws QueryException {
        return FloatType.INSTANCE;
    }