Example usage for org.hibernate.dialect.function StandardSQLFunction subclass-usage

List of usage examples for org.hibernate.dialect.function StandardSQLFunction subclass-usage

Introduction

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

Usage

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 de.christophbrill.gdp.dialect.HSQLBitwiseAnd.java

/**
 * "bitwise_and" function for HSQL
 * 
 * @author Christoph Brill <egore911@gmail.com>
 */
public class HSQLBitwiseAnd extends StandardSQLFunction {

From source file magoffin.matt.ma2.dao.hbm.BitwiseAndSQLFunction.java

/**
 * SQLFunction for bitwise and operation.
 * 
 * <p>Adapted from http://forum.hibernate.org/viewtopic.php?t=942395&view=previous&sid=f13df7759a4a9abd374b406a35ffc3c2</p>
 * 
 * @author matt.magoffin