Interface MetaPropertyIntrospector
- All Known Implementing Classes:
AbstractPropertyIntrospector,DatatypePropertyIntrospector,EmbeddedPropertyIntrospector,EnumPropertyIntrospector,RelationPropertyIntrospector
public interface MetaPropertyIntrospector
Converts a single
MetaProperty into a property descriptor.-
Method Summary
Modifier and TypeMethodDescription@Nullable EntityPropertyDescriptorintrospect(MetaProperty property) Introspects aMetaPropertyto an AI-optimized property descriptor.booleansupports(MetaProperty property) Checks if this introspector can handle the givenMetaPropertytype.
-
Method Details
-
supports
Checks if this introspector can handle the givenMetaPropertytype.- Parameters:
property- theMetaPropertyto check- Returns:
- true if this introspector can handle this property type
-
introspect
Introspects aMetaPropertyto an AI-optimized property descriptor.- Parameters:
property- theMetaPropertyto introspect- Returns:
EntityPropertyDescriptorrepresentation of this property ornullif this introspector cannot handle it
-