Class BeanReferenceRegistryForType<T>
- java.lang.Object
-
- org.hibernate.search.engine.environment.bean.impl.BeanReferenceRegistryForType<T>
-
- Type Parameters:
T- The type exposed by beans in this registry.
public class BeanReferenceRegistryForType<T> extends Object
A registry for beans of a given exposed type that were explicitly registered through aBeanConfigurer.
-
-
Constructor Summary
Constructors Constructor Description BeanReferenceRegistryForType(Class<T> exposedType)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<BeanReference<T>>all()Map<String,BeanReference<T>>named()BeanReference<T>named(String name)BeanReference<T>single()
-
-
-
Method Detail
-
all
public final List<BeanReference<T>> all()
-
named
public Map<String,BeanReference<T>> named()
-
single
public BeanReference<T> single()
-
named
public BeanReference<T> named(String name)
-
-