Java javax.persistence.metamodel ManagedType fields, constructors, methods, implement or subclass

Example usage for Java javax.persistence.metamodel ManagedType fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for javax.persistence.metamodel ManagedType.

The text is from its open source code.

Method

AttributegetAttribute(String name)
Return the attribute of the managed type that corresponds to the specified name.
Set>getAttributes()
Return the attributes of the managed type.
ListAttributegetDeclaredList(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.
SetAttributegetDeclaredSet(String name)
Return the Set-valued attribute declared by the managed type that corresponds to the specified name.
ClassgetJavaType()
Return the represented Java type.
ListAttributegetList(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.
SingularAttributegetSingularAttribute(String name, Class type)
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.