public interface EntityModel
Modifier and Type | Method and Description |
---|---|
<T> boolean |
containsTypeOf(Class<? extends T> entityClass)
Check if the meta
Type information for the given entity class
is contained in this EntityModel . |
String |
getName() |
Set<Type<?>> |
getTypes() |
<T> Type<T> |
typeOf(Class<? extends T> entityClass)
Retrieves the meta
Type information for the given entity class. |
String getName()
<T> Type<T> typeOf(Class<? extends T> entityClass) throws NotMappedException
Type
information for the given entity class.T
- entity typeentityClass
- entity classType
representing the given entity class.NotMappedException
<T> boolean containsTypeOf(Class<? extends T> entityClass)
Type
information for the given entity class
is contained in this EntityModel
.T
- entity typeentityClass
- entity classType
representing the given entity class exists.