Interface TypeMetadataContributorProvider<C>
-
- Type Parameters:
C
- The Java type of type metadata contributors
public interface TypeMetadataContributorProvider<C>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<C>
get(MappableTypeModel typeModel)
Set<? extends MappableTypeModel>
typesContributedTo()
-
-
-
Method Detail
-
get
Set<C> get(MappableTypeModel typeModel)
- Parameters:
typeModel
- The model of a type to retrieve contributors for, including supertype contributors.- Returns:
- A set of the Java types of the metadata contributors
-
typesContributedTo
Set<? extends MappableTypeModel> typesContributedTo()
- Returns:
- A set containing all the types that were contributed to so far.
-
-