public class SimpleBeanDirectory extends java.lang.Object implements BeanDirectory
Constructor and Description |
---|
SimpleBeanDirectory(java.util.function.Function<? super java.lang.String,?> ids,
java.util.function.Function<? super java.lang.Object,? extends java.lang.String> toId,
java.util.function.Supplier<java.util.stream.Stream<?>> components,
PropertyAccessor propertyAccessor,
ArooaConverter converter) |
Modifier and Type | Method and Description |
---|---|
<T> java.lang.Iterable<T> |
getAllByType(java.lang.Class<T> type)
Get all objects in the directory of the required type.
|
java.lang.String |
getIdFor(java.lang.Object component)
Find the id for the given component.
|
java.lang.Object |
lookup(java.lang.String path)
Get the value which is either a bean or the property of a
bean.
|
<T> T |
lookup(java.lang.String path,
java.lang.Class<T> required)
Get a value, as above, but also convert it into to given
type.
|
public SimpleBeanDirectory(java.util.function.Function<? super java.lang.String,?> ids, java.util.function.Function<? super java.lang.Object,? extends java.lang.String> toId, java.util.function.Supplier<java.util.stream.Stream<?>> components, PropertyAccessor propertyAccessor, ArooaConverter converter)
public <T> java.lang.Iterable<T> getAllByType(java.lang.Class<T> type)
BeanDirectory
Why an Iterable not a Collection or Set? It was thought that this would force read only use. Maybe it should be an array...
getAllByType
in interface BeanDirectory
T
- The required type.type
- The type.public java.lang.Object lookup(java.lang.String path) throws ArooaPropertyException
BeanDirectory
The path can be either:
lookup
in interface BeanDirectory
path
- The path.ArooaPropertyException
- If property access fails.public <T> T lookup(java.lang.String path, java.lang.Class<T> required) throws ArooaPropertyException, ArooaConversionException
BeanDirectory
Conversion in the directory is required when the client code has no access to the converters required, for instance in a nested Oddjob.
lookup
in interface BeanDirectory
T
- The required type.path
- The full pathrequired
- The required type.ArooaPropertyException
- If property access fails.ArooaConversionException
- If an object can be found but
it can't be converted into the required type.public java.lang.String getIdFor(java.lang.Object component)
getIdFor
in interface BeanDirectory
component
- The component.