Package io.micronaut.core.beans
Interface BeanMap<T>
-
- Type Parameters:
T
- type Generic
- All Superinterfaces:
java.util.Map<java.lang.String,java.lang.Object>
public interface BeanMap<T> extends java.util.Map<java.lang.String,java.lang.Object>
Simple class that provides a map interface over a bean.- Since:
- 1.0
-
-
Method Summary
All Methods Static Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.Class<T>
getBeanType()
static <B> BeanMap<B>
of(B bean)
Creates aBeanMap
for the given bean.
-