Uses of Interface
st.orm.repository.Projection
Packages that use Projection
-
Uses of Projection in st.orm
Methods in st.orm with type parameters of type ProjectionModifier and TypeMethodDescriptionstatic <P extends Record & Projection<ID>,ID>
Ref<P> Ref.of(P projection, ID id) Creates a fully loaded ref instance that wraps the given projection along with its primary key.static <P extends Record & Projection<ID>,ID>
Ref<P> Ref.ofNullable(P projection, ID id) Creates a ref instance with the specifiedprojectionandid, if both non-null, otherwise returns a null ref instance. -
Uses of Projection in st.orm.repository
Classes in st.orm.repository with type parameters of type ProjectionModifier and TypeInterfaceDescriptioninterfaceProjectionRepository<P extends Record & Projection<ID>,ID> Provides a generic interface with read operations for projections.Methods in st.orm.repository with type parameters of type ProjectionModifier and TypeMethodDescription<T extends Record & Projection<ID>,ID>
ProjectionRepository<T, ID> RepositoryLookup.projection(Class<T> type) Returns the repository for the given projection type. -
Uses of Projection in st.orm.spi
Classes in st.orm.spi with type parameters of type ProjectionModifier and TypeClassDescriptionfinal classProjectionRepositoryImpl<P extends Record & Projection<ID>,ID> Default implementation ofProjectionRepository.Methods in st.orm.spi with type parameters of type ProjectionModifier and TypeMethodDescription<ID,P extends Record & Projection<ID>>
ProjectionRepository<P, ID> DefaultProjectionRepositoryProviderImpl.getProjectionRepository(ORMTemplate ormTemplate, Model<P, ID> model) <ID,P extends Record & Projection<ID>>
ProjectionRepository<P, ID> ProjectionRepositoryProvider.getProjectionRepository(ORMTemplate ormTemplate, Model<P, ID> model) static <ID,P extends Record & Projection<ID>>
ProjectionRepository<P, ID> Providers.getProjectionRepository(ORMTemplate ormTemplate, Model<P, ID> model, Predicate<? super ProjectionRepositoryProvider> filter) -
Uses of Projection in st.orm.template.impl
Methods in st.orm.template.impl with type parameters of type ProjectionModifier and TypeMethodDescription<T extends Record & Projection<ID>,ID>
ProjectionRepository<T, ID> ORMTemplateImpl.projection(Class<T> type) Returns the repository for the given projection type.