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 classstatic classMethods 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 implementedRepositoryFragmentbacked by theimplementationobject.static <T> RepositoryFragment<T>RepositoryFragment.structural(Class<T> interfaceOrImplementation) Create a structuralRepositoryFragmentgiveninterfaceOrImplementation.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(List<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.