Example usage for Java javax.persistence.metamodel ManagedType fields, constructors, methods, implement or subclass
The text is from its open source code.
Attribute super X,?> | getAttribute(String name) Return the attribute of the managed type that corresponds to the specified name. |
Set | getAttributes() Return the attributes of the managed type. |
ListAttribute | getDeclaredList(String name) Return the List-valued attribute declared by the managed type that corresponds to the specified name. |
Set | getDeclaredPluralAttributes() Return all multi-valued attributes (Collection-, Set-, List-, and Map-valued attributes) declared by the managed type. |
SetAttribute | getDeclaredSet(String name) Return the Set-valued attribute declared by the managed type that corresponds to the specified name. |
Class | getJavaType() Return the represented Java type. |
ListAttribute super X,?> | getList(String name) Return the List-valued attribute of the managed type that corresponds to the specified name. |
Set | getPluralAttributes() Return all multi-valued attributes (Collection-, Set-, List-, and Map-valued attributes) of the managed type. |
SingularAttribute super X,Y> | getSingularAttribute(String name, Class Return the single-valued attribute of the managed type that corresponds to the specified name and Java type. |
Set | getSingularAttributes() Return the single-valued attributes of the managed type. |