Uses of Interface
org.springframework.data.repository.core.support.RepositoryFragment
Packages that use RepositoryFragment
Package
Description
Core abstractions for repository implementation.
Base classes to implement repositories for various data stores.
-
Uses of RepositoryFragment in org.springframework.data.repository.core
Methods in org.springframework.data.repository.core that return types with arguments of type RepositoryFragment -
Uses of RepositoryFragment in org.springframework.data.repository.core.support
Classes in org.springframework.data.repository.core.support that implement RepositoryFragmentModifier and TypeClassDescriptionstatic class
static class
Methods in org.springframework.data.repository.core.support that return RepositoryFragmentModifier and TypeMethodDescriptionFragmentNotImplementedException.getFragment()
static <T> RepositoryFragment<T>
RepositoryFragment.implemented
(Class<T> interfaceClass, T implementation) static <T> RepositoryFragment<T>
RepositoryFragment.implemented
(T implementation) Create an implementedRepositoryFragment
backed by theimplementation
object.static <T> RepositoryFragment<T>
RepositoryFragment.structural
(Class<T> interfaceOrImplementation) Create a structuralRepositoryFragment
giveninterfaceOrImplementation
.RepositoryFragment.ImplementedRepositoryFragment.withImplementation
(T implementation) RepositoryFragment.StructuralRepositoryFragment.withImplementation
(T implementation) RepositoryFragment.withImplementation
(T implementation) Implement a structuralRepositoryFragment
given itsimplementation
object.Methods in org.springframework.data.repository.core.support that return types with arguments of type RepositoryFragmentModifier and TypeMethodDescriptionAnnotationRepositoryMetadata.getFragments()
DefaultRepositoryMetadata.getFragments()
RepositoryComposition.RepositoryFragments.iterator()
Methods in org.springframework.data.repository.core.support with parameters of type RepositoryFragmentModifier and TypeMethodDescriptionRepositoryComposition.append
(RepositoryFragment<?> fragment) Create a newRepositoryComposition
retaining current configuration and appendRepositoryFragment
to the new composition.RepositoryComposition.RepositoryFragments.append
(RepositoryFragment<?> fragment) Create newRepositoryComposition.RepositoryFragments
from the current content appendingRepositoryFragment
.static RepositoryComposition
RepositoryComposition.of
(RepositoryFragment<?>... fragments) RepositoryComposition.RepositoryFragments.of
(RepositoryFragment<?>... fragments) CreateRepositoryComposition.RepositoryFragments
fromfragments
.Method parameters in org.springframework.data.repository.core.support with type arguments of type RepositoryFragmentModifier and TypeMethodDescriptionRepositoryComposition.RepositoryFragments.from
(List<RepositoryFragment<?>> fragments) static RepositoryComposition
RepositoryComposition.of
(List<RepositoryFragment<?>> fragments) Constructors in org.springframework.data.repository.core.support with parameters of type RepositoryFragmentModifierConstructorDescriptionFragmentNotImplementedException
(String msg, Class<?> repositoryInterface, RepositoryFragment<?> fragment) Constructor for FragmentNotImplementedException.