public class

EmbeddedComponentType

extends ComponentType
java.lang.Object
   ↳ org.hibernate.type.AbstractType
     ↳ org.hibernate.type.ComponentType
       ↳ org.hibernate.type.EmbeddedComponentType

Summary

[Expand]
Inherited Fields
From class org.hibernate.type.ComponentType
Public Constructors
EmbeddedComponentType(TypeFactory.TypeScope typeScope, ComponentMetamodel metamodel)
Public Methods
Object instantiate(Object parent, SessionImplementor session)
boolean isEmbedded()
Is this component embedded? "embedded" indicates that the component is "virtual", that its properties are "flattened" onto its owner
boolean isMethodOf(Method method)
Is the given method a member of this component's class?
[Expand]
Inherited Methods
From class org.hibernate.type.ComponentType
From class org.hibernate.type.AbstractType
From class java.lang.Object
From interface org.hibernate.type.CompositeType
From interface org.hibernate.type.Type

Public Constructors

public EmbeddedComponentType (TypeFactory.TypeScope typeScope, ComponentMetamodel metamodel)

Public Methods

public Object instantiate (Object parent, SessionImplementor session)

public boolean isEmbedded ()

Is this component embedded? "embedded" indicates that the component is "virtual", that its properties are "flattened" onto its owner

Returns
  • True if this component is embedded; false otherwise.

public boolean isMethodOf (Method method)

Is the given method a member of this component's class?

Parameters
method The method to check
Returns
  • True if the method is a member; false otherwise.