Example usage for org.hibernate.type EntityType getName

List of usage examples for org.hibernate.type EntityType getName

Introduction

In this page you can find the example usage for org.hibernate.type EntityType getName.

Prototype

@Override
public String getName() 

Source Link

Document

For entity types, the name correlates to the associated entity name.

Usage

From source file:com.qcadoo.model.internal.HibernateServiceImpl.java

License:Open Source License

private InternalDataDefinition resolveDataDefinitionFromEntityType(final EntityType entityType) {
    return resolveDataDefinitionFromClassType(entityType.getName());
}