Example usage for org.hibernate.engine.jdbc Size Size

List of usage examples for org.hibernate.engine.jdbc Size Size

Introduction

In this page you can find the example usage for org.hibernate.engine.jdbc Size Size.

Prototype

public Size(int precision, int scale, long length, LobMultiplier lobMultiplier) 

Source Link

Document

Complete constructor.

Usage

From source file:org.jboss.as.test.compat.jpa.hibernate.transformer.BooleanSingleColumnType.java

License:Open Source License

@Override
public Size[] defaultSizes(Mapping mapping) throws MappingException {
    return new Size[] { new Size(19, 2, 255, Size.LobMultiplier.NONE) };
}