Example usage for Java javax.persistence InheritanceType fields, constructors, methods, implement or subclass
The text is from its open source code.
InheritanceType | SINGLE_TABLE A single table per class hierarchy. |
InheritanceType | TABLE_PER_CLASS A table per concrete entity class. |
InheritanceType | JOINED 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. |
String | toString() Returns a string representation of the object. |