Package org.hibernate.metamodel.mapping
Interface EmbeddableMappingType.ConcreteEmbeddableType
-
- Enclosing interface:
- EmbeddableMappingType
public static interface EmbeddableMappingType.ConcreteEmbeddableType
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description booleandeclaresAttribute(int attributeIndex)booleandeclaresAttribute(AttributeMapping attributeMapping)Returnstrueif the provided embeddable class contains the specified attribute mapping,falseotherwise.ObjectgetDiscriminatorValue()EmbeddableInstantiatorgetInstantiator()intgetSubclassId()
-
-
-
Method Detail
-
getInstantiator
EmbeddableInstantiator getInstantiator()
-
getSubclassId
int getSubclassId()
-
declaresAttribute
boolean declaresAttribute(AttributeMapping attributeMapping)
Returnstrueif the provided embeddable class contains the specified attribute mapping,falseotherwise.- Parameters:
attributeMapping- the attribute to check- Implementation Note:
- This method always returns
truefor non-polymorphic embeddable types
-
declaresAttribute
boolean declaresAttribute(int attributeIndex)
-
getDiscriminatorValue
Object getDiscriminatorValue()
-
-