Uses of Interface
jakarta.persistence.metamodel.Type
Packages that use Type
Package
Description
Defines the core APIs for the management for persistence and
object/relational mapping.
Defines the Jakarta Persistence Metamodel API, allowing runtime
reflection on the managed types declared by a persistence unit.
-
Uses of Type in jakarta.persistence
Methods in jakarta.persistence with parameters of type TypeModifier and TypeMethodDescription<P> QueryQuery.setParameter(int position, P value, Type<P> type) Bind an argument value to a positional parameter, explicitly specifying the parameter type.<P> QueryQuery.setParameter(String name, P value, Type<P> type) Bind an argument value to a named parameter, explicitly specifying the parameter type.<P> StatementStatement.setParameter(int position, P value, Type<P> type) Bind an argument value to a positional parameter, explicitly specifying the parameter type.<P> StatementStatement.setParameter(String name, P value, Type<P> type) Bind an argument value to a named parameter, explicitly specifying the parameter type.StoredProcedureQuery.setParameter(int position, P value, Type<P> type) Bind an argument value to a positional parameter, explicitly specifying the parameter type.StoredProcedureQuery.setParameter(String name, P value, Type<P> type) Bind an argument value to a named parameter, explicitly specifying the parameter type.<P> TypedQuery<X> TypedQuery.setParameter(int position, P value, Type<P> type) Bind an argument value to a positional parameter, explicitly specifying the parameter type.<P> TypedQuery<X> TypedQuery.setParameter(String name, P value, Type<P> type) Bind an argument value to a named parameter, explicitly specifying the parameter type. -
Uses of Type in jakarta.persistence.metamodel
Subinterfaces of Type in jakarta.persistence.metamodelModifier and TypeInterfaceDescriptioninterfaceBasicType<X>interfaceAn instance ofEmbeddableTyperepresents an embeddable type.interfaceEntityType<X>An instance ofEntityTyperepresents an entity type.interfaceAn instance of the typeIdentifiableTyperepresents an entity or mapped superclass type.interfaceManagedType<X>Instances of the typeManagedTyperepresent entity, mapped superclass, and embeddable types.interfaceAn instance of the typeMappedSuperclassTyperepresents a mapped superclass type.Methods in jakarta.persistence.metamodel that return TypeModifier and TypeMethodDescriptionPluralAttribute.getElementType()Return the type representing the element type of the collection.Type<?> IdentifiableType.getIdType()Return the type that represents the type of the id.MapAttribute.getKeyType()Return the type representing the key type of the map.SingularAttribute.getType()Return the type that represents the type of the attribute.