public class

SyntheticProperty

extends Property
java.lang.Object
   ↳ org.hibernate.mapping.Property
     ↳ org.hibernate.mapping.SyntheticProperty

Class Overview

Models a property which does not actually exist in the model. It is created by Hibernate during the metamodel binding process.

Summary

Public Constructors
SyntheticProperty()
Public Methods
boolean isSynthetic()
Does this property represent a synthetic property? A synthetic property is one we create during metamodel binding to represent a collection of columns but which does not represent a property physically available on the entity.
[Expand]
Inherited Methods
From class org.hibernate.mapping.Property
From class java.lang.Object
From interface org.hibernate.mapping.MetaAttributable

Public Constructors

public SyntheticProperty ()

Public Methods

public boolean isSynthetic ()

Does this property represent a synthetic property? A synthetic property is one we create during metamodel binding to represent a collection of columns but which does not represent a property physically available on the entity.

Returns
  • True if synthetic; false otherwise.