Class BoundContainerExtractorPath<C,V>
- java.lang.Object
-
- org.hibernate.search.mapper.pojo.extractor.impl.BoundContainerExtractorPath<C,V>
-
- Type Parameters:
C- The container typeV- The extracted value type
public class BoundContainerExtractorPath<C,V> extends Object
AContainerExtractorPathbound to a given source type.Instances are returned by the
bind/tryBindmethods ofContainerExtractorBinder.The
extractor pathis guaranteed to be explicit (ContainerExtractorPath.isDefault()returnsfalse), and to be valid when applied to the source type.The extractor path may be empty, in which case the source type is equal to the extracted type.
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description PojoTypeModel<V>getExtractedType()ContainerExtractorPathgetExtractorPath()static <V> BoundContainerExtractorPath<V,V>noExtractors(PojoTypeModel<V> sourceType)
-
-
-
Method Detail
-
noExtractors
public static <V> BoundContainerExtractorPath<V,V> noExtractors(PojoTypeModel<V> sourceType)
-
getExtractorPath
public ContainerExtractorPath getExtractorPath()
-
getExtractedType
public PojoTypeModel<V> getExtractedType()
-
-