Example usage for org.hibernate.type CustomType getUserType

List of usage examples for org.hibernate.type CustomType getUserType

Introduction

In this page you can find the example usage for org.hibernate.type CustomType getUserType.

Prototype

public UserType getUserType() 

Source Link

Usage

From source file:org.beangle.orm.hibernate.tool.HbmGenerator.java

License:Open Source License

public boolean isEnumType(CustomType type) {
    return type.getUserType() instanceof EnumType;
}