Uses of Interface
org.springframework.data.repository.core.support.RepositoryFragment
Packages that use RepositoryFragment
Package
Description
Support classes for repository namespace and JavaConfig integration.
Core abstractions for repository implementation.
Base classes to implement repositories for various data stores.
-
Uses of RepositoryFragment in org.springframework.data.repository.config
Methods in org.springframework.data.repository.config that return types with arguments of type RepositoryFragmentConstructor parameters in org.springframework.data.repository.config with type arguments of type RepositoryFragmentModifierConstructorDescriptionAotRepositoryInformation(RepositoryMetadata repositoryMetadata, Class<?> repositoryBaseClass, Collection<RepositoryFragment<?>> fragments) -
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 classstatic classClasses in org.springframework.data.repository.core.support that implement interfaces with type arguments of type RepositoryFragmentModifier and TypeClassDescriptionstatic classValue object representing an ordered list offragments.Methods in org.springframework.data.repository.core.support that return RepositoryFragmentModifier and TypeMethodDescription@Nullable RepositoryFragment<?> RepositoryComposition.findFragment(Method method) Find theRepositoryFragmentfor the givenMethodinvoked on the composite interface.FragmentNotImplementedException.getFragment()static <T> RepositoryFragment<T> RepositoryFragment.implemented(Class<T> interfaceClass, T implementation) static <T> RepositoryFragment<T> RepositoryFragment.implemented(T implementation) Create an implementedRepositoryFragmentbacked by theimplementationobject.static <T> RepositoryFragment<T> RepositoryFragment.structural(Class<T> interfaceOrImplementation) Create a structuralRepositoryFragmentgiveninterfaceOrImplementation.static <T> RepositoryFragment<T> RepositoryFragment.structural(Class<T> interfaceClass, Class<?> implementationClass) RepositoryFragment.ImplementedRepositoryFragment.withImplementation(T implementation) RepositoryFragment.StructuralRepositoryFragment.withImplementation(T implementation) RepositoryFragment.withImplementation(T implementation) Implement a structuralRepositoryFragmentgiven itsimplementationobject.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 newRepositoryCompositionretaining current configuration and appendRepositoryFragmentto the new composition.RepositoryComposition.RepositoryFragments.append(RepositoryFragment<?> fragment) Create newRepositoryComposition.RepositoryFragmentsfrom the current content appendingRepositoryFragment.static RepositoryCompositionRepositoryComposition.of(RepositoryFragment<?>... fragments) RepositoryComposition.RepositoryFragments.of(RepositoryFragment<?>... fragments) CreateRepositoryComposition.RepositoryFragmentsfromfragments.Method parameters in org.springframework.data.repository.core.support with type arguments of type RepositoryFragmentModifier and TypeMethodDescriptionRepositoryComposition.RepositoryFragments.from(Collection<RepositoryFragment<?>> fragments) static RepositoryCompositionRepositoryComposition.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.