Java javax.persistence InheritanceType fields, constructors, methods, implement or subclass

Example usage for Java javax.persistence InheritanceType fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.persistence InheritanceType.

The text is from its open source code.

Field

InheritanceTypeSINGLE_TABLE
A single table per class hierarchy.
InheritanceTypeTABLE_PER_CLASS
A table per concrete entity class.
InheritanceTypeJOINED
A strategy in which fields that are specific to a subclass are mapped to a separate table than the fields that are common to the parent class, and a join is performed to instantiate the subclass.

Method

StringtoString()
Returns a string representation of the object.