Interface PojoBootstrapIntrospector
-
- All Known Implementing Classes:
AbstractPojoHCAnnBootstrapIntrospector,HibernateOrmBootstrapIntrospector
public interface PojoBootstrapIntrospectorA Pojo introspector used at bootstrap.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Deprecated Methods Modifier and Type Method Description ValueHandleFactoryannotationValueHandleFactory()default ValueReadHandleFactoryannotationValueReadHandleFactory()Deprecated.Use/implementannotationValueHandleFactory()instead.<T> PojoRawTypeModel<T>typeModel(Class<T> clazz)PojoRawTypeModel<?>typeModel(String name)
-
-
-
Method Detail
-
typeModel
<T> PojoRawTypeModel<T> typeModel(Class<T> clazz)
- Type Parameters:
T- The type- Parameters:
clazz- The Java class representing the raw version of the type- Returns:
- A type model for the given type.
-
typeModel
PojoRawTypeModel<?> typeModel(String name)
- Parameters:
name- The name of the type- Returns:
- A type model for the requested type.
-
annotationValueHandleFactory
ValueHandleFactory annotationValueHandleFactory()
- Returns:
- A
ValueHandleFactoryfor reading annotation attributes.
-
annotationValueReadHandleFactory
@Deprecated default ValueReadHandleFactory annotationValueReadHandleFactory()
Deprecated.Use/implementannotationValueHandleFactory()instead.- Returns:
- A
ValueHandleFactoryfor reading annotation attributes.
-
-