- FieldNamingStrategy - Interface in org.springframework.data.mapping.model
-
SPI to determine how to name document fields in cases the field name is not manually defined.
- filter(Predicate<? super T>) - Method in interface org.springframework.data.util.Streamable
-
- findAll(Predicate) - Method in interface org.springframework.data.querydsl.QuerydslPredicateExecutor
-
Returns all entities matching the given Predicate
.
- findAll(Predicate, Sort) - Method in interface org.springframework.data.querydsl.QuerydslPredicateExecutor
-
Returns all entities matching the given
Predicate
applying the given
Sort
.
- findAll(Predicate, OrderSpecifier<?>...) - Method in interface org.springframework.data.querydsl.QuerydslPredicateExecutor
-
Returns all entities matching the given Predicate
applying the given OrderSpecifier
s.
- findAll(OrderSpecifier<?>...) - Method in interface org.springframework.data.querydsl.QuerydslPredicateExecutor
-
Returns all entities ordered by the given OrderSpecifier
s.
- findAll(Predicate, Pageable) - Method in interface org.springframework.data.querydsl.QuerydslPredicateExecutor
-
Returns a
Page
of entities matching the given
Predicate
.
- findAll(Predicate) - Method in interface org.springframework.data.querydsl.ReactiveQuerydslPredicateExecutor
-
Returns a Flux
emitting all entities matching the given Predicate
.
- findAll(Predicate, Sort) - Method in interface org.springframework.data.querydsl.ReactiveQuerydslPredicateExecutor
-
Returns a
Flux
emitting all entities matching the given
Predicate
applying the given
Sort
.
- findAll(Predicate, OrderSpecifier<?>...) - Method in interface org.springframework.data.querydsl.ReactiveQuerydslPredicateExecutor
-
Returns a Flux
emitting all entities matching the given Predicate
applying the given
OrderSpecifier
s.
- findAll(OrderSpecifier<?>...) - Method in interface org.springframework.data.querydsl.ReactiveQuerydslPredicateExecutor
-
Returns a Flux
emitting all entities ordered by the given OrderSpecifier
s.
- findAll() - Method in interface org.springframework.data.repository.CrudRepository
-
Returns all instances of the type.
- findAll(Sort) - Method in interface org.springframework.data.repository.PagingAndSortingRepository
-
Returns all entities sorted by the given options.
- findAll(Pageable) - Method in interface org.springframework.data.repository.PagingAndSortingRepository
-
Returns a
Page
of entities meeting the paging restriction provided in the
Pageable
object.
- findAll(Example<S>) - Method in interface org.springframework.data.repository.query.QueryByExampleExecutor
-
Returns all entities matching the given
Example
.
- findAll(Example<S>, Sort) - Method in interface org.springframework.data.repository.query.QueryByExampleExecutor
-
Returns all entities matching the given
Example
applying the given
Sort
.
- findAll(Example<S>, Pageable) - Method in interface org.springframework.data.repository.query.QueryByExampleExecutor
-
- findAll(Example<S>) - Method in interface org.springframework.data.repository.query.ReactiveQueryByExampleExecutor
-
Returns all entities matching the given
Example
.
- findAll(Example<S>, Sort) - Method in interface org.springframework.data.repository.query.ReactiveQueryByExampleExecutor
-
Returns all entities matching the given
Example
applying the given
Sort
.
- findAll() - Method in interface org.springframework.data.repository.reactive.ReactiveCrudRepository
-
Returns all instances of the type.
- findAll(Sort) - Method in interface org.springframework.data.repository.reactive.ReactiveSortingRepository
-
Returns all entities sorted by the given options.
- findAll() - Method in interface org.springframework.data.repository.reactive.RxJava2CrudRepository
-
Deprecated.
Returns all instances of the type.
- findAll(Sort) - Method in interface org.springframework.data.repository.reactive.RxJava2SortingRepository
-
Deprecated.
Returns all entities sorted by the given options.
- findAll() - Method in interface org.springframework.data.repository.reactive.RxJava3CrudRepository
-
Returns all instances of the type.
- findAll(Sort) - Method in interface org.springframework.data.repository.reactive.RxJava3SortingRepository
-
Returns all entities sorted by the given options.
- findAllById(Iterable<ID>) - Method in interface org.springframework.data.repository.CrudRepository
-
Returns all instances of the type T
with the given IDs.
- findAllById(Iterable<ID>) - Method in interface org.springframework.data.repository.reactive.ReactiveCrudRepository
-
Returns all instances of the type T
with the given IDs.
- findAllById(Publisher<ID>) - Method in interface org.springframework.data.repository.reactive.ReactiveCrudRepository
-
Returns all instances of the type T
with the given IDs supplied by a Publisher
.
- findAllById(Iterable<ID>) - Method in interface org.springframework.data.repository.reactive.RxJava2CrudRepository
-
Deprecated.
Returns all instances of the type T
with the given IDs.
- findAllById(Flowable<ID>) - Method in interface org.springframework.data.repository.reactive.RxJava2CrudRepository
-
Deprecated.
Returns all instances of the type T
with the given IDs supplied by a Flowable
.
- findAllById(Iterable<ID>) - Method in interface org.springframework.data.repository.reactive.RxJava3CrudRepository
-
Returns all instances of the type T
with the given IDs.
- findAllById(Flowable<ID>) - Method in interface org.springframework.data.repository.reactive.RxJava3CrudRepository
-
Returns all instances of the type T
with the given IDs supplied by a Flowable
.
- findAnnotation(Class<A>) - Method in class org.springframework.data.mapping.model.AnnotationBasedPersistentProperty
-
- findAnnotation(Class<A>) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- findAnnotation(Class<A>) - Method in interface org.springframework.data.mapping.PersistentEntity
-
- findAnnotation(Class<A>) - Method in interface org.springframework.data.mapping.PersistentProperty
-
- findBy(Predicate, Function<FluentQuery.FetchableFluentQuery<S>, R>) - Method in interface org.springframework.data.querydsl.QuerydslPredicateExecutor
-
Returns entities matching the given
Predicate
applying the
queryFunction
that defines the
query and its result type.
- findBy(Predicate, Function<FluentQuery.ReactiveFluentQuery<S>, P>) - Method in interface org.springframework.data.querydsl.ReactiveQuerydslPredicateExecutor
-
Returns entities matching the given
Predicate
applying the
queryFunction
that defines the
query and its result type.
- findBy(Example<S>, Function<FluentQuery.FetchableFluentQuery<S>, R>) - Method in interface org.springframework.data.repository.query.QueryByExampleExecutor
-
Returns entities matching the given
Example
applying the
queryFunction
that defines the
query and its result type.
- findBy(Example<S>, Function<FluentQuery.ReactiveFluentQuery<S>, P>) - Method in interface org.springframework.data.repository.query.ReactiveQueryByExampleExecutor
-
Returns entities matching the given
Example
applying the
queryFunction
that defines the
query and its result type.
- findById(ID) - Method in interface org.springframework.data.repository.CrudRepository
-
Retrieves an entity by its id.
- findById(ID) - Method in interface org.springframework.data.repository.reactive.ReactiveCrudRepository
-
Retrieves an entity by its id.
- findById(Publisher<ID>) - Method in interface org.springframework.data.repository.reactive.ReactiveCrudRepository
-
Retrieves an entity by its id supplied by a Publisher
.
- findById(ID) - Method in interface org.springframework.data.repository.reactive.RxJava2CrudRepository
-
Deprecated.
Retrieves an entity by its id.
- findById(Single<ID>) - Method in interface org.springframework.data.repository.reactive.RxJava2CrudRepository
-
Deprecated.
Retrieves an entity by its id supplied by a Single
.
- findById(ID) - Method in interface org.springframework.data.repository.reactive.RxJava3CrudRepository
-
Retrieves an entity by its id.
- findById(Single<ID>) - Method in interface org.springframework.data.repository.reactive.RxJava3CrudRepository
-
Retrieves an entity by its id supplied by a Single
.
- findConstructor(Class<?>, Object...) - Static method in class org.springframework.data.util.ReflectionUtils
-
Finds a constructor on the given type that matches the given constructor arguments.
- findDynamicProjection() - Method in interface org.springframework.data.repository.query.ParameterAccessor
-
Returns the dynamic projection type to be used when executing the query or null if none is defined.
- findDynamicProjection() - Method in class org.springframework.data.repository.query.ParametersParameterAccessor
-
Returns the dynamic projection type if available, null otherwise.
- findField(Class<?>, ReflectionUtils.FieldFilter) - Static method in class org.springframework.data.util.ReflectionUtils
-
- findField(Class<?>, ReflectionUtils.DescribedFieldFilter) - Static method in class org.springframework.data.util.ReflectionUtils
-
- findField(Class<?>, ReflectionUtils.DescribedFieldFilter, boolean) - Static method in class org.springframework.data.util.ReflectionUtils
-
- findKotlinFunction(Method) - Static method in class org.springframework.data.util.KotlinReflectionUtils
-
Returns a
KFunction
instance corresponding to the given Java
Method
instance, or
null
if
this method cannot be represented by a Kotlin function.
- findLastChangeRevision(ID) - Method in interface org.springframework.data.repository.history.RevisionRepository
-
Returns the revision of the entity it was last changed in.
- findMethod(Method) - Method in class org.springframework.data.repository.core.support.RepositoryComposition
-
Find the implementation method for the given
Method
invoked on the composite interface.
- findOne(Predicate) - Method in interface org.springframework.data.querydsl.QuerydslPredicateExecutor
-
Returns a single entity matching the given
Predicate
or
Optional.empty()
if none was found.
- findOne(Predicate) - Method in interface org.springframework.data.querydsl.ReactiveQuerydslPredicateExecutor
-
Returns a Mono
emitting the entity matching the given Predicate
or Mono.empty()
if none was
found.
- findOne(Example<S>) - Method in interface org.springframework.data.repository.query.QueryByExampleExecutor
-
- findOne(Example<S>) - Method in interface org.springframework.data.repository.query.ReactiveQueryByExampleExecutor
-
Returns a single entity matching the given
Example
or
Mono.empty()
if none was found.
- findPersistentPropertyPaths(Class<T>, Predicate<? super P>) - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
- findPersistentPropertyPaths(Class<T>, Predicate<? super P>) - Method in interface org.springframework.data.mapping.context.MappingContext
-
- findPropertyOrOwnerAnnotation(Class<A>) - Method in class org.springframework.data.mapping.model.AnnotationBasedPersistentProperty
-
- findPropertyOrOwnerAnnotation(Class<A>) - Method in interface org.springframework.data.mapping.PersistentProperty
-
Looks up the annotation of the given type on the property and the owning type if no annotation can be found on it.
- findRequiredField(Class<?>, String) - Static method in class org.springframework.data.util.ReflectionUtils
-
Finds the field of the given name on the given type.
- findRequiredMethod(Class<?>, String, Class<?>...) - Static method in class org.springframework.data.util.ReflectionUtils
-
Returns the method with the given name of the given class and parameter types.
- findRevision(ID, N) - Method in interface org.springframework.data.repository.history.RevisionRepository
-
Returns the entity with the given ID in the given revision number.
- findRevisions(ID) - Method in interface org.springframework.data.repository.history.RevisionRepository
-
Returns all
Revisions
of an entity with the given id.
- findRevisions(ID, Pageable) - Method in interface org.springframework.data.repository.history.RevisionRepository
-
Returns a
Page
of revisions for the entity with the given id.
- findTypes(String...) - Method in class org.springframework.data.util.AnnotatedTypeScanner
-
- findTypes(Iterable<String>) - Method in class org.springframework.data.util.AnnotatedTypeScanner
-
- first() - Method in class org.springframework.data.domain.AbstractPageRequest
-
- first() - Method in interface org.springframework.data.domain.Pageable
-
Returns the
Pageable
requesting the first page.
- first() - Method in class org.springframework.data.domain.PageRequest
-
- first(SingleValueBinding<P, T>) - Method in class org.springframework.data.querydsl.binding.QuerydslBindings.PathBinder
-
- first(SingleValueBinding<P, T>) - Method in class org.springframework.data.querydsl.binding.QuerydslBindings.TypeBinder
-
- first() - Method in class org.springframework.data.querydsl.QPageRequest
-
- first() - Method in interface org.springframework.data.repository.query.FluentQuery.FetchableFluentQuery
-
Get the first or no result.
- first() - Method in interface org.springframework.data.repository.query.FluentQuery.ReactiveFluentQuery
-
Get the first or no result.
- firstNonEmpty(Iterable<S>, Function<S, Optional<T>>) - Static method in interface org.springframework.data.util.Optionals
-
Applies the given function to the elements of the source and returns the first non-empty result.
- firstNonEmpty(Iterable<S>, Function<S, T>, T) - Static method in interface org.springframework.data.util.Optionals
-
Applies the given function to the elements of the source and returns the first non-empty result.
- firstNonEmpty(Supplier<Optional<T>>...) - Static method in interface org.springframework.data.util.Optionals
-
Invokes the given
Supplier
s for
Optional
results one by one and returns the first non-empty one.
- firstNonEmpty(Iterable<Supplier<Optional<T>>>) - Static method in interface org.springframework.data.util.Optionals
-
Invokes the given
Supplier
s for
Optional
results one by one and returns the first non-empty one.
- firstOptional(OptionalValueBinding<P, T>) - Method in class org.springframework.data.querydsl.binding.QuerydslBindings.PathBinder
-
- firstOptional(OptionalValueBinding<P, T>) - Method in class org.springframework.data.querydsl.binding.QuerydslBindings.TypeBinder
-
- firstValue() - Method in interface org.springframework.data.repository.query.FluentQuery.FetchableFluentQuery
-
Get the first or no result.
- flatMap(Function<? super T, Lazy<? extends S>>) - Method in class org.springframework.data.util.Lazy
-
Creates a new
Lazy
with the given
Function
lazily applied to the current one.
- flatMap(Function<? super T, ? extends Stream<? extends R>>) - Method in interface org.springframework.data.util.Streamable
-
- FluentQuery<T> - Interface in org.springframework.data.repository.query
-
Fluent interface to define and run a query along with projection and sorting and.
- FluentQuery.FetchableFluentQuery<T> - Interface in org.springframework.data.repository.query
-
Fetchable extension
FluentQuery
allowing to materialize results from the underlying query.
- FluentQuery.ReactiveFluentQuery<T> - Interface in org.springframework.data.repository.query
-
Reactive extension
FluentQuery
allowing to materialize results from the underlying query.
- flush() - Method in class org.springframework.data.crossstore.ChangeSetBackedTransactionSynchronization
-
- foldIntoExpressions(Sort) - Method in class org.springframework.data.web.SortHandlerMethodArgumentResolverSupport
-
Folds the given
Sort
instance into a
List
of sort expressions, accumulating
Sort.Order
instances
of the same direction into a single expression if they are in order.
- forEach(IntConsumer) - Method in class org.springframework.data.mapping.model.KotlinDefaultMask
-
Callback method to notify
IntConsumer
for each defaulting mask.
- forFragment(String) - Method in interface org.springframework.data.repository.config.ImplementationDetectionConfiguration
-
Returns the final lookup configuration for the given fully-qualified fragment interface name.
- forMethod(String) - Static method in class org.springframework.data.spel.ExpressionDependencies.ExpressionDependency
-
- forPropertyOrField(String) - Static method in class org.springframework.data.spel.ExpressionDependencies.ExpressionDependency
-
- forProxyOf(Class<T>) - Static method in class org.springframework.data.util.MethodInvocationRecorder
-
- forRepositoryConfiguration(RepositoryConfiguration<?>) - Method in interface org.springframework.data.repository.config.ImplementationDetectionConfiguration
-
- FragmentMetadata - Class in org.springframework.data.repository.config
-
Value object for a discovered Repository fragment interface.
- FragmentMetadata(MetadataReaderFactory) - Constructor for class org.springframework.data.repository.config.FragmentMetadata
-
- FragmentNotImplementedException - Exception in org.springframework.data.repository.core.support
-
Exception thrown during repository creation or repository method invocation when invoking a repository method on a
fragment without an implementation.
- FragmentNotImplementedException(String, Class<?>, RepositoryFragment<?>) - Constructor for exception org.springframework.data.repository.core.support.FragmentNotImplementedException
-
Constructor for FragmentNotImplementedException.
- from(Range.Bound<T>) - Static method in class org.springframework.data.domain.Range
-
- from(KFunction<?>, Predicate<KParameter>) - Static method in class org.springframework.data.mapping.model.KotlinDefaultMask
-
Creates defaulting mask(s) used to invoke Kotlin default methods that conditionally apply parameter
values.
- from(String, Class<?>) - Static method in class org.springframework.data.mapping.PropertyPath
-
- from(String, TypeInformation<?>) - Static method in class org.springframework.data.mapping.PropertyPath
-
- from(List<RepositoryFragment<?>>) - Static method in class org.springframework.data.repository.core.support.RepositoryComposition.RepositoryFragments
-
- from(Class<S>) - Static method in class org.springframework.data.util.ClassTypeInformation
-
- fromMetadata(RepositoryMetadata) - Static method in class org.springframework.data.repository.core.support.RepositoryComposition
-
- fromNullable(T) - Static method in interface org.springframework.data.util.StreamUtils
-
Creates a new
Stream
for the given value returning an empty
Stream
if the value is null.
- fromOptionalString(String) - Static method in enum org.springframework.data.domain.Sort.Direction
-
Returns the
Sort.Direction
enum for the given
String
or null if it cannot be parsed into an enum
value.
- fromProperty(String) - Static method in enum org.springframework.data.repository.query.parser.Part.Type
-
Returns the
Part.Type
of the
Part
for the given raw propertyPath.
- fromReturnTypeOf(Method) - Static method in class org.springframework.data.util.ClassTypeInformation
-
- fromString(String) - Static method in enum org.springframework.data.domain.Sort.Direction
-
- Function - Class in org.springframework.data.spel.spi
-
Value object to represent a function.
- Function(Method) - Constructor for class org.springframework.data.spel.spi.Function
-
- Function(Method, Object) - Constructor for class org.springframework.data.spel.spi.Function
-
Creates a new
Function
for the given method on the given target instance.
- generateBeanName(BeanDefinition) - Method in interface org.springframework.data.repository.config.ImplementationDetectionConfiguration
-
- generateBeanName(BeanDefinition) - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
Returns a name for the beanDefinition.
- generateBeanName(BeanDefinition) - Method in class org.springframework.data.repository.config.RepositoryConfigurationSourceSupport
-
- GenericPropertyMatcher() - Constructor for class org.springframework.data.domain.ExampleMatcher.GenericPropertyMatcher
-
- GenericPropertyMatchers() - Constructor for class org.springframework.data.domain.ExampleMatcher.GenericPropertyMatchers
-
- GeoModule - Class in org.springframework.data.geo
-
Custom module to deserialize the geo-spatial value objects using Jackson 2.
- GeoModule() - Constructor for class org.springframework.data.geo.GeoModule
-
Creates a new
GeoModule
registering mixins for common geo-spatial types.
- GeoPage<T> - Class in org.springframework.data.geo
-
- GeoPage(GeoResults<T>) - Constructor for class org.springframework.data.geo.GeoPage
-
- GeoPage(GeoResults<T>, Pageable, long) - Constructor for class org.springframework.data.geo.GeoPage
-
- GeoResult<T> - Class in org.springframework.data.geo
-
Value object capturing some arbitrary object plus a distance.
- GeoResult(T, Distance) - Constructor for class org.springframework.data.geo.GeoResult
-
- GeoResults<T> - Class in org.springframework.data.geo
-
Value object to capture
GeoResult
s as well as the average distance they have.
- GeoResults(List<? extends GeoResult<T>>) - Constructor for class org.springframework.data.geo.GeoResults
-
Creates a new
GeoResults
instance manually calculating the average distance from the distance values of the
given
GeoResult
s.
- GeoResults(List<? extends GeoResult<T>>, Metric) - Constructor for class org.springframework.data.geo.GeoResults
-
Creates a new
GeoResults
instance manually calculating the average distance in the given
Metric
from the distance values of the given
GeoResult
s.
- GeoResults(List<? extends GeoResult<T>>, Distance) - Constructor for class org.springframework.data.geo.GeoResults
-
- get(String, Class<T>, ConversionService) - Method in interface org.springframework.data.crossstore.ChangeSet
-
- get(String, Class<T>, ConversionService) - Method in class org.springframework.data.crossstore.HashMapChangeSet
-
- get() - Method in interface org.springframework.data.repository.util.QueryExecutionConverters.ThrowingSupplier
-
- get() - Method in class org.springframework.data.util.Lazy
-
Returns the value created by the configured
Supplier
.
- get() - Method in interface org.springframework.data.util.Streamable
-
- getAbbreviation() - Method in class org.springframework.data.geo.CustomMetric
-
- getAbbreviation() - Method in interface org.springframework.data.geo.Metric
-
Returns the scientific abbreviation of the unit the
Metric
is in.
- getAbbreviation() - Method in enum org.springframework.data.geo.Metrics
-
- getAccessorForOwner(T) - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getActualType() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getActualType() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns the actual type of the property.
- getActualType() - Method in interface org.springframework.data.util.TypeInformation
-
- getActualTypeInformation() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getAliasFor(TypeInformation<?>) - Method in class org.springframework.data.convert.DefaultTypeMapper
-
- getAllowedPageableTypes() - Static method in class org.springframework.data.repository.util.QueryExecutionConverters
-
Returns the types that are supported on paginating query methods.
- getAlternativeDomainTypes() - Method in interface org.springframework.data.repository.core.RepositoryMetadata
-
Returns the set of types the repository shall be discoverable for when trying to look up a repository by domain
type.
- getAlternativeDomainTypes() - Method in class org.springframework.data.repository.core.support.AbstractRepositoryMetadata
-
- getAnnotation() - Method in class org.springframework.data.auditing.config.AuditingBeanDefinitionRegistrarSupport
-
Return the annotation type to lookup configuration values from.
- getAnnotation() - Method in class org.springframework.data.repository.config.RepositoryBeanDefinitionRegistrarSupport
-
Return the annotation to obtain configuration information from.
- getAnnotation() - Method in class org.springframework.data.util.AnnotationDetectionMethodCallback
-
- getAnnotations() - Method in class org.springframework.data.mapping.PreferredConstructor.Parameter
-
Merged annotations that this parameter is annotated with.
- getArgumentConverter() - Method in class org.springframework.data.repository.core.support.RepositoryComposition
-
- getAssociation() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getAssociation() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getAssociationTargetType() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getAssociationTargetType() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Return the type the property refers to in case it's an association, i.e.
- getAssociationTargetTypeInformation() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getAssociationTargetTypeInformation() - Method in class org.springframework.data.mapping.model.AnnotationBasedPersistentProperty
-
- getAssociationTargetTypeInformation() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Return the type the property refers to in case it's an association, i.e.
- getAttribute(String) - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getAttribute(String, Class<T>) - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getAttribute(String) - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
Returns the value for the
String
attribute with the given name.
- getAttribute(String, Class<T>) - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
Returns the value for the attribute with the given name and type.
- getAttribute(String) - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getAttribute(String, Class<T>) - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getAttributes() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getAuditHandlerBeanDefinitionBuilder(AuditingConfiguration) - Method in class org.springframework.data.auditing.config.AuditingBeanDefinitionRegistrarSupport
-
- getAuditingHandlerBeanName() - Method in class org.springframework.data.auditing.config.AuditingBeanDefinitionRegistrarSupport
-
- getAuditorAwareRef() - Method in class org.springframework.data.auditing.config.AnnotationAuditingConfiguration
-
- getAuditorAwareRef() - Method in interface org.springframework.data.auditing.config.AuditingConfiguration
-
Returns the bean name of the
AuditorAware
instance to be used..
- getAverageDistance() - Method in class org.springframework.data.geo.GeoPage
-
- getAverageDistance() - Method in class org.springframework.data.geo.GeoResults
-
Returns the average distance of all
GeoResult
s in this list.
- getBasePackages() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getBasePackages() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getBasePackages() - Method in interface org.springframework.data.repository.config.ImplementationDetectionConfiguration
-
Return the base packages to be scanned for implementation types.
- getBasePackages() - Method in interface org.springframework.data.repository.config.RepositoryConfiguration
-
Returns the base packages that the repository was scanned under.
- getBasePackages() - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
Returns the base packages the repository interfaces shall be found under.
- getBasePackages() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getBaseProperty() - Method in interface org.springframework.data.mapping.PersistentPropertyPath
-
- getBaseProperty() - Method in exception org.springframework.data.mapping.PropertyReferenceException
-
- getBean() - Method in interface org.springframework.data.auditing.AuditableBeanWrapper
-
Returns the underlying bean that potentially has been modified by the setter methods exposed.
- getBean() - Method in class org.springframework.data.mapping.model.InstantiationAwarePropertyAccessor
-
- getBean() - Method in interface org.springframework.data.mapping.PersistentPropertyAccessor
-
Returns the underlying bean.
- getBeanClass(Element) - Method in class org.springframework.data.auditing.config.AuditingHandlerBeanDefinitionParser
-
- getBeanClass(Element) - Method in class org.springframework.data.auditing.config.IsNewAwareAuditingHandlerBeanDefinitionParser
-
- getBeanClass() - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
- getBeanClassName(Element) - Method in class org.springframework.data.repository.config.ResourceReaderRepositoryPopulatorBeanDefinitionParser
-
- getBeanDefinition() - Method in class org.springframework.data.repository.config.RepositoryFragmentConfiguration
-
- getBeanId() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getBeanWrapperFor(T) - Method in interface org.springframework.data.auditing.AuditableBeanWrapperFactory
-
- getBeanWrapperFor(T) - Method in class org.springframework.data.auditing.MappingAuditableBeanWrapperFactory
-
- getBindableParameter(int) - Method in class org.springframework.data.repository.query.Parameters
-
Returns a bindable parameter with the given index.
- getBindableParameters() - Method in class org.springframework.data.repository.query.Parameters
-
Returns a
Parameters
instance with effectively all special parameters removed.
- getBindableValue(int) - Method in interface org.springframework.data.repository.query.ParameterAccessor
-
Returns the bindable value with the given index.
- getBindableValue(int) - Method in class org.springframework.data.repository.query.ParametersParameterAccessor
-
- getBindingForPath(PathInformation) - Method in class org.springframework.data.querydsl.binding.QuerydslBindings
-
- getBootstrapMode() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getBootstrapMode() - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
- getBootstrapMode() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getCandidates(ResourceLoader) - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
Returns the source
BeanDefinition
s of the repository interfaces to create repository instances for.
- getCandidates(ResourceLoader) - Method in class org.springframework.data.repository.config.RepositoryConfigurationSourceSupport
-
- getCardinality() - Method in class org.springframework.data.repository.util.QueryExecutionConverters.WrapperType
-
- getCenter() - Method in class org.springframework.data.geo.Circle
-
Returns the center of the
Circle
.
- getChangeSet() - Method in interface org.springframework.data.crossstore.ChangeSetBacked
-
- getClassGeneratingEntityInstantiator() - Static method in class org.springframework.data.mapping.model.InternalEntityInstantiatorFactory
-
Deprecated.
- getClassName() - Method in class org.springframework.data.repository.config.RepositoryFragmentConfiguration
-
- getComponent(BeanDefinitionBuilder) - Method in class org.springframework.data.config.BeanComponentDefinitionBuilder
-
- getComponent(BeanDefinitionBuilder, String) - Method in class org.springframework.data.config.BeanComponentDefinitionBuilder
-
- getComponent(BeanDefinitionBuilder, String, Object) - Method in class org.springframework.data.config.BeanComponentDefinitionBuilder
-
- getComponentIdButFallback(BeanDefinitionBuilder, String) - Method in class org.springframework.data.config.BeanComponentDefinitionBuilder
-
- getComponentType() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getComponentType() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns the component type of the type if it is a
Collection
.
- getComponentType() - Method in interface org.springframework.data.util.TypeInformation
-
Returns the component type for
Collection
s or the key type for
Map
s.
- getConfigSource() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getConfiguration(AnnotationMetadata) - Method in class org.springframework.data.auditing.config.AuditingBeanDefinitionRegistrarSupport
-
- getConfigurationInspectionClassLoader(ResourceLoader) - Method in class org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport
-
Returns the
ClassLoader
to load repository interfaces for configuration inspection.
- getConfigurationSource() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getConfigurationSource() - Method in interface org.springframework.data.repository.config.RepositoryConfiguration
-
- getConstructor() - Method in exception org.springframework.data.mapping.model.MappingInstantiationException
-
The constructor used during the instantiation attempt.
- getConstructor() - Method in class org.springframework.data.mapping.PreferredConstructor
-
- getConstructorArguments() - Method in exception org.springframework.data.mapping.model.MappingInstantiationException
-
The constructor arguments used to invoke the constructor.
- getContent() - Method in interface org.springframework.data.domain.Slice
-
Returns the page content as
List
.
- getContent() - Method in class org.springframework.data.geo.GeoResult
-
- getContent() - Method in class org.springframework.data.geo.GeoResults
-
- getContent() - Method in class org.springframework.data.history.Revisions
-
Returns the content of the
Revisions
instance.
- getConversionService() - Method in interface org.springframework.data.convert.EntityConverter
-
- getConverterRegistration() - Method in class org.springframework.data.convert.CustomConversions.ConverterRegistrationIntent
-
- getConverters() - Method in interface org.springframework.data.convert.ConverterBuilder
-
- getConvertersToRegister() - Static method in class org.springframework.data.convert.JMoleculesConverters
-
Returns all jMolecules-specific converters to be registered.
- getConvertersToRegister() - Static method in class org.springframework.data.convert.JodaTimeConverters
-
Deprecated.
Returns the converters to be registered.
- getConvertersToRegister() - Static method in class org.springframework.data.convert.Jsr310Converters
-
Returns the converters to be registered.
- getConvertersToRegister() - Static method in class org.springframework.data.convert.ThreeTenBackPortConverters
-
Deprecated.
Returns the converters to be registered.
- getConvertibleTypes() - Method in class org.springframework.data.repository.support.DomainClassConverter
-
- getCreatedBy() - Method in interface org.springframework.data.domain.Auditable
-
Returns the user who created this entity.
- getCreatedDate() - Method in interface org.springframework.data.domain.Auditable
-
Returns the creation date of the entity.
- getCrudMethods() - Method in interface org.springframework.data.repository.core.RepositoryMetadata
-
Returns
CrudMethods
meta information for the repository.
- getCrudMethods() - Method in class org.springframework.data.repository.core.support.AbstractRepositoryMetadata
-
- getCurrentAuditor() - Method in interface org.springframework.data.domain.AuditorAware
-
Returns the current auditor of the application.
- getCurrentAuditor() - Method in interface org.springframework.data.domain.ReactiveAuditorAware
-
Returns a Mono
publishing the current auditor of the application.
- getCustomImplementationDetector() - Method in class org.springframework.data.repository.cdi.CdiRepositoryExtensionSupport
-
- getCustomWriteTarget(Class<?>) - Method in class org.springframework.data.convert.CustomConversions
-
Returns the target type to convert to in case we have a custom conversion registered to convert the given source
type into a store native one.
- getCustomWriteTarget(Class<?>, Class<?>) - Method in class org.springframework.data.convert.CustomConversions
-
Returns the target type we can read an inject of the given source type to.
- getDateTimeProviderRef() - Method in class org.springframework.data.auditing.config.AnnotationAuditingConfiguration
-
- getDateTimeProviderRef() - Method in interface org.springframework.data.auditing.config.AuditingConfiguration
-
- getDeclaringClass() - Method in class org.springframework.data.repository.core.support.MethodLookup.InvokedMethod
-
- getDeclaringClass() - Method in class org.springframework.data.spel.spi.Function
-
Returns the type declaring the
Function
.
- getDecoratedClass() - Method in interface org.springframework.data.projection.TargetAware
-
- getDefaultFromAnnotationOrFallback(MethodParameter) - Method in class org.springframework.data.web.SortHandlerMethodArgumentResolverSupport
-
- getDefaulting() - Method in class org.springframework.data.mapping.model.KotlinDefaultMask
-
- getDefaultNamedQueryLocation() - Method in interface org.springframework.data.repository.config.RepositoryConfigurationExtension
-
Returns the default location of the Spring Data named queries.
- getDefaultNamedQueryLocation() - Method in class org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport
-
- getDefaultStringMatcher() - Method in interface org.springframework.data.domain.ExampleMatcher
-
- getDefaultStringMatcher() - Method in class org.springframework.data.support.ExampleMatcherAccessor
-
Get defined ExampleMatcher.StringMatcher
.
- getDelegate() - Method in class org.springframework.data.history.AnnotationRevisionMetadata
-
- getDelegate() - Method in interface org.springframework.data.history.RevisionMetadata
-
Returns the underlying revision metadata which might provider more detailed implementation specific information.
- getDeleteMethod() - Method in interface org.springframework.data.repository.core.CrudMethods
-
Returns the delete method of the repository.
- getDeleteMethod() - Method in class org.springframework.data.repository.core.support.DefaultCrudMethods
-
- getDependencyInstance(Bean<S>) - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
Returns an instance of an the given Bean
.
- getDependencyInstance(Bean<S>, Class<?>) - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
Returns an instance of an the given Bean
and allows to be specific about the type that is about to be
created.
- getDescription() - Method in class org.springframework.data.util.ReflectionUtils.AnnotationFieldFilter
-
- getDescription() - Method in interface org.springframework.data.util.ReflectionUtils.DescribedFieldFilter
-
Returns the description of the field filter.
- getDirection() - Method in class org.springframework.data.domain.Sort.Order
-
Returns the order the property shall be sorted for.
- getDistance() - Method in class org.springframework.data.geo.GeoResult
-
- getDomainClass() - Method in class org.springframework.data.repository.query.QueryMethod
-
Returns the domain class the query method is targeted at.
- getDomainType() - Method in interface org.springframework.data.repository.core.RepositoryMetadata
-
Returns the domain class the repository is declared for.
- getDomainType() - Method in class org.springframework.data.repository.core.support.AnnotationRepositoryMetadata
-
- getDomainType() - Method in class org.springframework.data.repository.core.support.DefaultRepositoryMetadata
-
- getDomainType() - Method in class org.springframework.data.repository.query.ReturnedType
-
Returns the entity type.
- getDuration(TimeUnit) - Method in class org.springframework.data.repository.core.support.RepositoryMethodInvocationListener.RepositoryMethodInvocation
-
- getDynamicProjection() - Method in interface org.springframework.data.repository.query.ParameterAccessor
-
- getDynamicProjection() - Method in class org.springframework.data.repository.query.ParametersParameterAccessor
-
Returns the dynamic projection type if available, null otherwise.
- getDynamicProjectionIndex() - Method in class org.springframework.data.repository.query.Parameters
-
Returns the index of the parameter that represents the dynamic projection type.
- getElement() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
Returns the XML element backing the configuration.
- getEnableAnnotationMetadata() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
Returns the
AnnotationMetadata
for the
@Enable
annotation that triggered the configuration.
- getEntity() - Method in class org.springframework.data.history.Revision
-
- getEntityInformation() - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
- getEntityInformation() - Method in interface org.springframework.data.repository.core.support.RepositoryFactoryInformation
-
- getEntityInformation(Class<T>) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- getEntityInformation() - Method in class org.springframework.data.repository.query.QueryMethod
-
- getEntityInformationFor(Class<?>) - Method in class org.springframework.data.repository.support.Repositories
-
- getEntityPathResolver() - Method in class org.springframework.data.querydsl.binding.QuerydslBindingsFactory
-
- getEntityType() - Method in exception org.springframework.data.mapping.model.MappingInstantiationException
-
Returns the type of the entity that was attempted to instantiate.
- getEntityUltimatelyReferredToBy(PersistentProperty<?>) - Method in class org.springframework.data.mapping.context.PersistentEntities
-
- getError() - Method in interface org.springframework.data.repository.core.support.RepositoryMethodInvocationListener.RepositoryMethodInvocationResult
-
- getEvaluationContext(Object) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getEvaluationContext(Object, ExpressionDependencies) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getEvaluationContext(Object) - Method in class org.springframework.data.mapping.model.SpELContext
-
- getEvaluationContext(T, Object[]) - Method in class org.springframework.data.repository.query.ExtensionAwareQueryMethodEvaluationContextProvider
-
- getEvaluationContext(T, Object[], ExpressionDependencies) - Method in class org.springframework.data.repository.query.ExtensionAwareQueryMethodEvaluationContextProvider
-
- getEvaluationContext(T, Object[]) - Method in interface org.springframework.data.repository.query.QueryMethodEvaluationContextProvider
-
- getEvaluationContext(T, Object[], ExpressionDependencies) - Method in interface org.springframework.data.repository.query.QueryMethodEvaluationContextProvider
-
- getEvaluationContext(T, Object[]) - Method in class org.springframework.data.repository.query.ReactiveExtensionAwareQueryMethodEvaluationContextProvider
-
- getEvaluationContext(T, Object[], ExpressionDependencies) - Method in class org.springframework.data.repository.query.ReactiveExtensionAwareQueryMethodEvaluationContextProvider
-
- getEvaluationContext(Object) - Method in interface org.springframework.data.spel.EvaluationContextProvider
-
- getEvaluationContext(Object, ExpressionDependencies) - Method in interface org.springframework.data.spel.EvaluationContextProvider
-
- getEvaluationContext(Object) - Method in class org.springframework.data.spel.ExtensionAwareEvaluationContextProvider
-
- getEvaluationContext(Object, ExpressionDependencies) - Method in class org.springframework.data.spel.ExtensionAwareEvaluationContextProvider
-
- getEvaluationContext(Object) - Method in class org.springframework.data.spel.ReactiveExtensionAwareEvaluationContextProvider
-
- getEvaluationContext(Object, ExpressionDependencies) - Method in class org.springframework.data.spel.ReactiveExtensionAwareEvaluationContextProvider
-
- getEvaluationContextLater(T, Object[]) - Method in class org.springframework.data.repository.query.ReactiveExtensionAwareQueryMethodEvaluationContextProvider
-
- getEvaluationContextLater(T, Object[], ExpressionDependencies) - Method in class org.springframework.data.repository.query.ReactiveExtensionAwareQueryMethodEvaluationContextProvider
-
- getEvaluationContextLater(T, Object[]) - Method in interface org.springframework.data.repository.query.ReactiveQueryMethodEvaluationContextProvider
-
- getEvaluationContextLater(T, Object[], ExpressionDependencies) - Method in interface org.springframework.data.repository.query.ReactiveQueryMethodEvaluationContextProvider
-
- getEvaluationContextLater(Object) - Method in interface org.springframework.data.spel.ReactiveEvaluationContextProvider
-
- getEvaluationContextLater(Object, ExpressionDependencies) - Method in interface org.springframework.data.spel.ReactiveEvaluationContextProvider
-
- getEvaluationContextLater(Object) - Method in class org.springframework.data.spel.ReactiveExtensionAwareEvaluationContextProvider
-
- getEvaluationContextLater(Object, ExpressionDependencies) - Method in class org.springframework.data.spel.ReactiveExtensionAwareEvaluationContextProvider
-
- getEvaluationContextProvider() - Method in interface org.springframework.data.repository.cdi.CdiRepositoryConfiguration
-
- getExcludeFilters() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getExcludeFilters() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getExcludeFilters() - Method in interface org.springframework.data.repository.config.ImplementationDetectionConfiguration
-
Returns the exclude filters to be used for the implementation class scanning.
- getExcludeFilters() - Method in interface org.springframework.data.repository.config.RepositoryConfiguration
-
Returns the
TypeFilter
s to be used to exclude packages from repository scanning.
- getExcludeFilters() - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
Return the
TypeFilter
s to define which types to exclude when scanning for repositories or repository
implementations.
- getExcludeFilters() - Method in class org.springframework.data.repository.config.RepositoryConfigurationSourceSupport
-
Return the
TypeFilter
s to define which types to exclude when scanning for repositories.
- getExcludeFilters() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getExecutionAdapter(Class<?>) - Static method in class org.springframework.data.repository.util.QueryExecutionConverters
-
- getExtension() - Method in class org.springframework.data.repository.config.RepositoryBeanDefinitionRegistrarSupport
-
- getExtension() - Method in interface org.springframework.data.spel.spi.ReactiveEvaluationContextExtension
-
- getExtensionForBaseOf(PersistentPropertyPath<P>) - Method in interface org.springframework.data.mapping.PersistentPropertyPath
-
Returns the sub-path of the current one as if it was based on the given base path.
- getExtensionId() - Method in interface org.springframework.data.spel.spi.ExtensionIdAware
-
Return the identifier of the extension.
- getFallbackIsNewStrategy() - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getFallbackTypeFor(S) - Method in class org.springframework.data.convert.DefaultTypeMapper
-
Returns the type fallback
TypeInformation
in case none could be extracted from the given source.
- getField() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getField() - Method in class org.springframework.data.mapping.model.Property
-
Returns the field of the property if available and if its first (only) parameter matches the type of the property.
- getField() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getField() - Method in class org.springframework.data.util.AnnotationDetectionFieldCallback
-
Returns the detected field.
- getFieldName(PersistentProperty<?>) - Method in class org.springframework.data.mapping.model.CamelCaseSplittingFieldNamingStrategy
-
- getFieldName(PersistentProperty<?>) - Method in interface org.springframework.data.mapping.model.FieldNamingStrategy
-
- getFieldName(PersistentProperty<?>) - Method in enum org.springframework.data.mapping.model.PropertyNameFieldNamingStrategy
-
- getFindAllMethod() - Method in interface org.springframework.data.repository.core.CrudMethods
-
Returns the find all method of the repository.
- getFindAllMethod() - Method in class org.springframework.data.repository.core.support.DefaultCrudMethods
-
- getFindOneMethod() - Method in interface org.springframework.data.repository.core.CrudMethods
-
Returns the find one method of the repository.
- getFindOneMethod() - Method in class org.springframework.data.repository.core.support.DefaultCrudMethods
-
- getFirst() - Method in class org.springframework.data.geo.Box
-
Returns the first
Point
making up the
Box
.
- getFirst() - Method in interface org.springframework.data.mapping.PersistentPropertyPaths
-
- getFirst() - Method in class org.springframework.data.util.Pair
-
Returns the first element of the
Pair
.
- getForPath(String) - Method in class org.springframework.data.domain.ExampleMatcher.PropertySpecifiers
-
- getFragment() - Method in exception org.springframework.data.repository.core.support.FragmentNotImplementedException
-
- getFragmentBeanName() - Method in class org.springframework.data.repository.config.RepositoryFragmentConfiguration
-
- getFragmentInterface() - Method in exception org.springframework.data.repository.core.support.UnsupportedFragmentException
-
- getFragmentInterfaces(String) - Method in class org.springframework.data.repository.config.FragmentMetadata
-
Returns all interfaces to be considered fragment ones for the given source interface.
- getFragments() - Method in class org.springframework.data.repository.core.support.RepositoryComposition
-
- getFunctions() - Method in interface org.springframework.data.spel.spi.EvaluationContextExtension
-
Return the functions exposed by the extension.
- getGetter() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getGetter() - Method in class org.springframework.data.mapping.model.Property
-
Returns the getter of the property if available and if it matches the type of the property.
- getGetter() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns the getter method to access the property value if available.
- getId() - Method in interface org.springframework.data.domain.Persistable
-
Returns the id of the entity.
- getId() - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
- getId(T) - Method in interface org.springframework.data.repository.core.EntityInformation
-
Returns the id of the given entity or null if none can be obtained.
- getId(T) - Method in class org.springframework.data.repository.core.support.DelegatingEntityInformation
-
- getId(T) - Method in class org.springframework.data.repository.core.support.PersistentEntityInformation
-
- getIdentifier() - Method in interface org.springframework.data.mapping.IdentifierAccessor
-
Returns the value of the identifier.
- getIdentifier() - Method in class org.springframework.data.mapping.model.IdPropertyIdentifierAccessor
-
- getIdentifierAccessor(Object) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getIdentifierAccessor(Object) - Method in interface org.springframework.data.mapping.PersistentEntity
-
- getIdentifyingAnnotations() - Method in class org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport
-
Return the annotations to scan domain types for when evaluating repository interfaces for store assignment.
- getIdentifyingTypes() - Method in class org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport
-
Returns the types that indicate a store match when inspecting repositories for strict matches.
- getIdProperty() - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getIdProperty() - Method in interface org.springframework.data.mapping.PersistentEntity
-
- getIdType() - Method in interface org.springframework.data.repository.core.EntityInformation
-
Returns the type of the id of the entity.
- getIdType() - Method in interface org.springframework.data.repository.core.RepositoryMetadata
-
Returns the id class the given class is declared for.
- getIdType() - Method in class org.springframework.data.repository.core.support.AnnotationRepositoryMetadata
-
- getIdType() - Method in class org.springframework.data.repository.core.support.DefaultRepositoryMetadata
-
- getIdType() - Method in class org.springframework.data.repository.core.support.DelegatingEntityInformation
-
- getIdType() - Method in class org.springframework.data.repository.core.support.PersistentEntityInformation
-
- getIgnoreCase() - Method in class org.springframework.data.domain.ExampleMatcher.PropertySpecifier
-
- getIgnoredPaths() - Method in interface org.springframework.data.domain.ExampleMatcher
-
- getImplementation() - Method in interface org.springframework.data.repository.core.support.RepositoryFragment
-
- getImplementation() - Method in class org.springframework.data.repository.core.support.RepositoryFragment.ImplementedRepositoryFragment
-
- getImplementationBasePackages() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getImplementationBasePackages() - Method in interface org.springframework.data.repository.config.RepositoryConfiguration
-
Returns the base packages to scan for repository implementations.
- getImplementationBeanName() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getImplementationBeanName() - Method in interface org.springframework.data.repository.config.ImplementationLookupConfiguration
-
Returns the bean name of the implementation to be looked up.
- getImplementationBeanName() - Method in class org.springframework.data.repository.config.RepositoryFragmentConfiguration
-
- getImplementationClassName() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getImplementationClassName() - Method in interface org.springframework.data.repository.config.ImplementationLookupConfiguration
-
Returns the simple name of the class to be looked up.
- getImplementationPostfix() - Method in interface org.springframework.data.repository.config.ImplementationDetectionConfiguration
-
Returns the postfix to be used to calculate the implementation type's name.
- getIncludeFilters() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getIncludeFilters() - Method in class org.springframework.data.repository.config.RepositoryConfigurationSourceSupport
-
Return the
TypeFilter
s to define which types to include when scanning for repositories.
- getIncludeFilters() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getIndex() - Method in class org.springframework.data.repository.query.Parameter
-
Returns the position index the parameter is bound to in the context of its surrounding
Parameters
.
- getInjectionPoints() - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
- getInputProperties() - Method in interface org.springframework.data.projection.ProjectionInformation
-
Returns the properties that will be consumed by the projection type.
- getInputProperties() - Method in class org.springframework.data.repository.query.ReturnedType
-
Returns the properties required to be used to populate the result.
- getInstantiatorFor(PersistentEntity<?, ?>) - Method in class org.springframework.data.convert.EntityInstantiators
-
Deprecated.
- getInstantiatorFor(PersistentEntity<?, ?>) - Method in class org.springframework.data.mapping.model.EntityInstantiators
-
- getInterfaceName() - Method in class org.springframework.data.repository.config.RepositoryFragmentConfiguration
-
- getInverse() - Method in class org.springframework.data.mapping.Association
-
- getInvokerFor(Class<?>) - Method in class org.springframework.data.repository.support.DefaultRepositoryInvokerFactory
-
- getInvokerFor(Class<?>) - Method in interface org.springframework.data.repository.support.RepositoryInvokerFactory
-
- getJavaType() - Method in interface org.springframework.data.repository.core.EntityMetadata
-
Returns the actual domain class type.
- getJavaType() - Method in class org.springframework.data.repository.core.support.AbstractEntityInformation
-
- getJavaType() - Method in class org.springframework.data.repository.core.support.DelegatingEntityInformation
-
- getJavaType() - Method in class org.springframework.data.repository.core.support.PersistentEntityInformation
-
- getKeywords() - Method in enum org.springframework.data.repository.query.parser.Part.Type
-
Returns all keywords supported by the current
Part.Type
.
- getKotlinClassGeneratingEntityInstantiator() - Static method in class org.springframework.data.mapping.model.InternalEntityInstantiatorFactory
-
Deprecated.
- getLastModifiedBy() - Method in interface org.springframework.data.domain.Auditable
-
Returns the user who modified the entity lastly.
- getLastModifiedDate() - Method in interface org.springframework.data.auditing.AuditableBeanWrapper
-
Returns the date of the last modification date of the backing bean.
- getLastModifiedDate() - Method in interface org.springframework.data.domain.Auditable
-
Returns the date of the last modification.
- getLatestRevision() - Method in class org.springframework.data.history.Revisions
-
Returns the latest revision of the revisions backing the wrapper independently of the order.
- getLeafProperty() - Method in interface org.springframework.data.mapping.PersistentPropertyPath
-
- getLeafProperty() - Method in class org.springframework.data.mapping.PropertyPath
-
- getLeafType() - Method in class org.springframework.data.mapping.PropertyPath
-
Returns the type of the leaf property of the current
PropertyPath
.
- getLength() - Method in interface org.springframework.data.mapping.PersistentPropertyPath
-
- getLinks(Page<?>) - Method in class org.springframework.data.domain.jaxb.PageAdapter
-
- getLookups() - Method in interface org.springframework.data.repository.core.support.MethodLookup
-
- getLowerBound() - Method in class org.springframework.data.domain.Range
-
- getManagedTypes() - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
- getManagedTypes() - Method in interface org.springframework.data.mapping.context.MappingContext
-
- getManagedTypes() - Method in class org.springframework.data.mapping.context.PersistentEntities
-
- getMappingContext() - Method in interface org.springframework.data.convert.EntityConverter
-
- getMapValueType() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getMapValueType() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns the type of the values if the property is a
Map
.
- getMapValueType() - Method in interface org.springframework.data.util.TypeInformation
-
Will return the type of the value in case the underlying type is a
Map
.
- getMaskCount(int) - Static method in class org.springframework.data.mapping.model.KotlinDefaultMask
-
Return the number of defaulting masks required to represent the number of arguments
.
- getMatcher() - Method in interface org.springframework.data.domain.Example
-
- getMatchMode() - Method in interface org.springframework.data.domain.ExampleMatcher
-
- getMaxPageSize() - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
Retrieves the maximum page size to be accepted.
- getMaxResults() - Method in class org.springframework.data.repository.query.parser.PartTree
-
Return the number of maximal results to return or null if not restricted.
- getMessage() - Method in exception org.springframework.data.mapping.PropertyReferenceException
-
- getMetadata() - Method in class org.springframework.data.history.Revision
-
- getMetadata(Class<?>) - Static method in class org.springframework.data.repository.core.support.AbstractRepositoryMetadata
-
- getMetadataReader(String) - Method in class org.springframework.data.type.classreading.MethodsMetadataReaderFactory
-
- getMetadataReader(Resource) - Method in class org.springframework.data.type.classreading.MethodsMetadataReaderFactory
-
- getMetadataReaderFactory() - Method in interface org.springframework.data.repository.config.ImplementationDetectionConfiguration
-
- getMethod() - Method in class org.springframework.data.repository.core.support.MethodLookup.InvokedMethod
-
- getMethod() - Method in class org.springframework.data.repository.core.support.RepositoryMethodInvocationListener.RepositoryMethodInvocation
-
- getMethod() - Method in exception org.springframework.data.repository.query.QueryCreationException
-
- getMethod() - Method in class org.springframework.data.util.AnnotationDetectionMethodCallback
-
- getMethod(Class<?>, String, ResolvableType...) - Static method in class org.springframework.data.util.ReflectionUtils
-
Returns the
Method
with the given name and parameters declared on the given type, if available.
- getMethodLookup() - Method in class org.springframework.data.repository.core.support.RepositoryComposition
-
- getMethodParameter() - Method in class org.springframework.data.web.PagedResourcesAssembler
-
Return the
MethodParameter
to be used to potentially qualify the paging and sorting request parameters to.
- getMethods() - Method in interface org.springframework.data.type.MethodsMetadata
-
Return all methods.
- getMethods(String) - Method in interface org.springframework.data.type.MethodsMetadata
-
Return all methods matching method name
.
- getMethodsMetadata() - Method in interface org.springframework.data.type.classreading.MethodsMetadataReader
-
- getMetric() - Method in class org.springframework.data.geo.Distance
-
- getModuleName() - Method in interface org.springframework.data.repository.config.RepositoryConfigurationExtension
-
Returns the descriptive name of the module.
- getModuleName() - Method in class org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport
-
- getModulePrefix() - Method in class org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport
-
Returns the prefix of the module to be used to create the default location for Spring Data named queries.
- getMultiplier() - Method in class org.springframework.data.geo.CustomMetric
-
- getMultiplier() - Method in interface org.springframework.data.geo.Metric
-
Returns the multiplier to calculate metrics values from a base scale.
- getMultiplier() - Method in enum org.springframework.data.geo.Metrics
-
- getMultiValueTypes() - Static method in class org.springframework.data.repository.util.ReactiveWrappers
-
- getName() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getName() - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getName() - Method in class org.springframework.data.mapping.model.Property
-
Returns the name of the property.
- getName() - Method in interface org.springframework.data.mapping.PersistentEntity
-
The entity name including any package prefix.
- getName() - Method in interface org.springframework.data.mapping.PersistentProperty
-
The name of the property
- getName() - Method in class org.springframework.data.mapping.PreferredConstructor.Parameter
-
Returns the name of the parameter.
- getName() - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
- getName() - Method in class org.springframework.data.repository.core.support.MethodLookup.InvokedMethod
-
- getName() - Method in class org.springframework.data.repository.query.Parameter
-
Returns the name of the parameter (through
Param
annotation).
- getName() - Method in class org.springframework.data.repository.query.QueryMethod
-
Returns the method's name.
- getName() - Method in class org.springframework.data.spel.spi.Function
-
Returns the name of the function.
- getNamedQueries() - Method in interface org.springframework.data.repository.cdi.CdiRepositoryConfiguration
-
- getNamedQueriesLocation() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getNamedQueriesLocation() - Method in interface org.springframework.data.repository.config.RepositoryConfiguration
-
Returns the location of the file containing Spring Data named queries.
- getNamedQueryLocation() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getNamedQueryLocation() - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
- getNamedQueryLocation() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getNamedQueryName() - Method in class org.springframework.data.repository.query.QueryMethod
-
Returns the name of the named query this method belongs to.
- getNormalizedValue() - Method in class org.springframework.data.geo.Distance
-
Returns the normalized value regarding the underlying
Metric
.
- getNoValueTypes() - Static method in class org.springframework.data.repository.util.ReactiveWrappers
-
- getNow() - Method in enum org.springframework.data.auditing.CurrentDateTimeProvider
-
- getNow() - Method in interface org.springframework.data.auditing.DateTimeProvider
-
Returns the current time to be used as modification or creation date.
- getNullable() - Method in class org.springframework.data.util.Lazy
-
Returns the value of the lazy evaluation.
- getNullHandler() - Method in interface org.springframework.data.domain.ExampleMatcher
-
Get defined null handling.
- getNullHandler() - Method in class org.springframework.data.support.ExampleMatcherAccessor
-
Get defined null handling.
- getNullHandling() - Method in class org.springframework.data.domain.Sort.Order
-
Returns the used
Sort.NullHandling
hint, which can but may not be respected by the used datastore.
- getNullHandling() - Method in class org.springframework.data.mapping.AccessOptions.SetOptions
-
- getNullValues() - Method in class org.springframework.data.mapping.AccessOptions.GetOptions
-
- getNumber() - Method in interface org.springframework.data.domain.Slice
-
Returns the number of the current
Slice
.
- getNumberOfArguments() - Method in class org.springframework.data.repository.query.parser.Part
-
Returns how many method parameters are bound by this part.
- getNumberOfArguments() - Method in enum org.springframework.data.repository.query.parser.Part.Type
-
Returns the number of arguments the propertyPath binds.
- getNumberOfElements() - Method in interface org.springframework.data.domain.Slice
-
Returns the number of elements currently on this
Slice
.
- getNumberOfOccurences(Method, Class<?>) - Static method in class org.springframework.data.repository.util.ClassUtils
-
Returns the number of occurences of the given type in the given
Method
s parameters.
- getNumberOfParameters() - Method in class org.springframework.data.repository.query.Parameters
-
Returns the number of parameters.
- getObject() - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
- getObject() - Method in class org.springframework.data.repository.core.support.RepositoryFragmentsFactoryBean
-
- getObjectFactoryBeanDefinition(String, Object) - Static method in class org.springframework.data.config.ParsingUtils
-
- getObjectType() - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
- getObjectType() - Method in class org.springframework.data.repository.core.support.RepositoryFragmentsFactoryBean
-
- getObjectType() - Method in class org.springframework.data.repository.init.AbstractRepositoryPopulatorFactoryBean
-
- getObverse() - Method in class org.springframework.data.mapping.Association
-
- getOffset() - Method in class org.springframework.data.domain.AbstractPageRequest
-
- getOffset() - Method in interface org.springframework.data.domain.Pageable
-
Returns the offset to be taken according to the underlying page and page size.
- getOptional() - Method in class org.springframework.data.util.Lazy
-
- GetOptions(Map<PersistentProperty<?>, Function<Object, Object>>, AccessOptions.GetOptions.GetNulls) - Constructor for class org.springframework.data.mapping.AccessOptions.GetOptions
-
- getOrderFor(String) - Method in class org.springframework.data.domain.Sort
-
Returns the order registered for the given property.
- getOrderSpecifiers() - Method in class org.springframework.data.querydsl.QSort
-
- getOwner() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getOwner() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getOwningType() - Method in class org.springframework.data.mapping.PropertyPath
-
- getPage(List<T>, Pageable, LongSupplier) - Static method in class org.springframework.data.repository.support.PageableExecutionUtils
-
Deprecated.
- getPage(List<T>, Pageable, LongSupplier) - Static method in class org.springframework.data.support.PageableExecutionUtils
-
- getPageable() - Method in interface org.springframework.data.domain.Slice
-
Returns the
Pageable
that's been used to request the current
Slice
.
- getPageable() - Method in interface org.springframework.data.repository.query.ParameterAccessor
-
Returns the
Pageable
of the parameters, if available.
- getPageable() - Method in class org.springframework.data.repository.query.ParametersParameterAccessor
-
- getPageable(MethodParameter, String, String) - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
- getPageableIndex() - Method in class org.springframework.data.repository.query.Parameters
-
- getPageNumber() - Method in class org.springframework.data.domain.AbstractPageRequest
-
- getPageNumber() - Method in interface org.springframework.data.domain.Pageable
-
Returns the page to be returned.
- getPageParameterName() - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
Retrieves the parameter name to be used to find the page number in the request.
- getPageSize() - Method in class org.springframework.data.domain.AbstractPageRequest
-
- getPageSize() - Method in interface org.springframework.data.domain.Pageable
-
Returns the number of items to be returned.
- getPaginationTemplateVariables(MethodParameter, UriComponents) - Method in class org.springframework.data.web.HateoasPageableHandlerMethodArgumentResolver
-
Returns the template variable for the pagination parameters.
- getParameter(int) - Method in class org.springframework.data.repository.query.Parameters
-
Returns the parameter with the given index.
- getParameter(String) - Method in class org.springframework.data.repository.query.SpelQueryContext.SpelExtractor
-
- getParameter() - Method in exception org.springframework.data.repository.support.QueryMethodParameterConversionException
-
- getParameterCount() - Method in class org.springframework.data.repository.core.support.MethodLookup.InvokedMethod
-
- getParameterCount() - Method in class org.springframework.data.spel.spi.Function
-
Returns the number of parameters required by the underlying method.
- getParameterNameToUse(String, MethodParameter) - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
Returns the name of the request parameter to find the
Pageable
information in.
- getParameters() - Method in class org.springframework.data.mapping.PreferredConstructor
-
- getParameters() - Method in class org.springframework.data.repository.query.ParametersParameterAccessor
-
Returns the
Parameters
instance backing the accessor.
- getParameters() - Method in class org.springframework.data.repository.query.QueryMethod
-
Returns the
Parameters
wrapper to gain additional information about
Method
parameters.
- getParameterTypes() - Method in class org.springframework.data.repository.core.support.MethodLookup.InvokedMethod
-
- getParameterTypes(Constructor<?>) - Method in interface org.springframework.data.util.TypeInformation
-
- getParameterTypes(Method) - Method in interface org.springframework.data.util.TypeInformation
-
- getParameterValue(PreferredConstructor.Parameter<T, P>) - Method in interface org.springframework.data.mapping.model.ParameterValueProvider
-
- getParameterValue(PreferredConstructor.Parameter<T, P>) - Method in class org.springframework.data.mapping.model.PersistentEntityParameterValueProvider
-
- getParameterValue(PreferredConstructor.Parameter<T, P>) - Method in class org.springframework.data.mapping.model.SpELExpressionParameterValueProvider
-
- getParent() - Method in class org.springframework.data.util.ParameterTypes
-
- getParent(TypeDescriptor) - Method in class org.springframework.data.util.ParameterTypes
-
- getParentPath() - Method in interface org.springframework.data.mapping.PersistentPropertyPath
-
- getParser() - Method in class org.springframework.data.mapping.model.SpELContext
-
- getParts() - Method in class org.springframework.data.repository.query.parser.PartTree
-
- getParts(Part.Type) - Method in class org.springframework.data.repository.query.parser.PartTree
-
- getPath() - Method in class org.springframework.data.domain.ExampleMatcher.PropertySpecifier
-
Get the properties Dot-Path.
- getPersistenceConstructor() - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getPersistenceConstructor() - Method in interface org.springframework.data.mapping.PersistentEntity
-
- getPersistentEntities() - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
- getPersistentEntities() - Method in interface org.springframework.data.mapping.context.MappingContext
-
- getPersistentEntity(Class<?>) - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
- getPersistentEntity(TypeInformation<?>) - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
- getPersistentEntity(P) - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
- getPersistentEntity(Class<?>) - Method in interface org.springframework.data.mapping.context.MappingContext
-
- getPersistentEntity(TypeInformation<?>) - Method in interface org.springframework.data.mapping.context.MappingContext
-
- getPersistentEntity(P) - Method in interface org.springframework.data.mapping.context.MappingContext
-
- getPersistentEntity() - Method in class org.springframework.data.mapping.context.MappingContextEvent
-
- getPersistentEntity(Class<?>) - Method in class org.springframework.data.mapping.context.PersistentEntities
-
- getPersistentEntity() - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
- getPersistentEntity() - Method in interface org.springframework.data.repository.core.support.RepositoryFactoryInformation
-
- getPersistentEntity(Class<?>) - Method in class org.springframework.data.repository.support.Repositories
-
- getPersistentEntityTypeInformation() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getPersistentEntityTypeInformation() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getPersistentEntityTypes() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getPersistentEntityTypes() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getPersistentId(ChangeSetBacked, ChangeSet) - Method in interface org.springframework.data.crossstore.ChangeSetPersister
-
Return id
- getPersistentProperties(Class<? extends Annotation>) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getPersistentProperties(Class<? extends Annotation>) - Method in interface org.springframework.data.mapping.PersistentEntity
-
Returns all properties equipped with an
Annotation
of the given type.
- getPersistentProperty(String) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getPersistentProperty(String) - Method in interface org.springframework.data.mapping.PersistentEntity
-
- getPersistentProperty(Class<? extends Annotation>) - Method in interface org.springframework.data.mapping.PersistentEntity
-
Returns the first property equipped with an
Annotation
of the given type.
- getPersistentPropertyPath(PropertyPath) - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
- getPersistentPropertyPath(String, Class<?>) - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
- getPersistentPropertyPath(PropertyPath) - Method in interface org.springframework.data.mapping.context.MappingContext
-
- getPersistentPropertyPath(String, Class<?>) - Method in interface org.springframework.data.mapping.context.MappingContext
-
- getPersistentState(Class<? extends ChangeSetBacked>, K, ChangeSet) - Method in interface org.springframework.data.crossstore.ChangeSetPersister
-
TODO how to tell when not found?
- getPlaceholder() - Method in class org.springframework.data.repository.query.Parameter
-
Returns the placeholder to be used for the parameter.
- getPoints() - Method in class org.springframework.data.geo.Polygon
-
- getPredicate(TypeInformation<?>, MultiValueMap<String, ?>, QuerydslBindings) - Method in class org.springframework.data.querydsl.binding.QuerydslPredicateBuilder
-
- getPrimitiveDefault(Class<?>) - Static method in class org.springframework.data.util.ReflectionUtils
-
Get default value for a primitive type.
- getProbe() - Method in interface org.springframework.data.domain.Example
-
Get the example used.
- getProbeType() - Method in interface org.springframework.data.domain.Example
-
Get the actual type for the probe used.
- getProjectionFactory(ClassLoader, BeanFactory) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- getProjectionFactory() - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- getProjectionInformation(Class<?>) - Method in interface org.springframework.data.projection.ProjectionFactory
-
- getProperties() - Method in interface org.springframework.data.spel.spi.EvaluationContextExtension
-
Return the properties exposed by the extension.
- getProperty() - Method in class org.springframework.data.domain.Sort.Order
-
Returns the property to order for.
- getProperty() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getProperty(PersistentProperty<?>, Class<S>) - Method in class org.springframework.data.mapping.model.ConvertingPropertyAccessor
-
- getProperty(PersistentProperty<?>) - Method in class org.springframework.data.mapping.model.InstantiationAwarePropertyAccessor
-
- getProperty(PersistentProperty<?>) - Method in interface org.springframework.data.mapping.PersistentPropertyAccessor
-
- getProperty(PersistentPropertyPath<? extends PersistentProperty<?>>) - Method in interface org.springframework.data.mapping.PersistentPropertyAccessor
-
- getProperty(PersistentPropertyPath<? extends PersistentProperty<?>>, TraversalContext) - Method in interface org.springframework.data.mapping.PersistentPropertyAccessor
-
- getProperty(PersistentPropertyPath<? extends PersistentProperty<?>>) - Method in interface org.springframework.data.mapping.PersistentPropertyPathAccessor
-
- getProperty(PersistentPropertyPath<? extends PersistentProperty<?>>, AccessOptions.GetOptions) - Method in interface org.springframework.data.mapping.PersistentPropertyPathAccessor
-
- getProperty() - Method in class org.springframework.data.repository.query.parser.Part
-
- getProperty(String) - Method in interface org.springframework.data.util.TypeInformation
-
Returns the property information for the property with the given name.
- getPropertyAccessor(B) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getPropertyAccessor(PersistentEntity<?, ?>, T) - Method in enum org.springframework.data.mapping.model.BeanWrapperPropertyAccessorFactory
-
- getPropertyAccessor(PersistentEntity<?, ?>, T) - Method in class org.springframework.data.mapping.model.ClassGeneratingPropertyAccessorFactory
-
- getPropertyAccessor(PersistentEntity<?, ?>, T) - Method in class org.springframework.data.mapping.model.InstantiationAwarePropertyAccessorFactory
-
- getPropertyAccessor(PersistentEntity<?, ?>, T) - Method in interface org.springframework.data.mapping.model.PersistentPropertyAccessorFactory
-
- getPropertyAccessor(B) - Method in interface org.springframework.data.mapping.PersistentEntity
-
- getPropertyDelimiter() - Method in class org.springframework.data.web.SortHandlerMethodArgumentResolverSupport
-
- getPropertyName() - Method in exception org.springframework.data.mapping.PropertyReferenceException
-
Returns the name of the property not found.
- getPropertyName() - Method in class org.springframework.data.projection.Accessor
-
Returns the name of the property this accessor handles.
- getPropertyName(Method) - Method in interface org.springframework.data.util.MethodInvocationRecorder.PropertyNameDetectionStrategy
-
- getPropertyPath() - Method in class org.springframework.data.util.MethodInvocationRecorder.Recorded
-
- getPropertyPath(MethodInvocationRecorder.PropertyNameDetectionStrategy) - Method in class org.springframework.data.util.MethodInvocationRecorder.Recorded
-
- getPropertyPath(List<MethodInvocationRecorder.PropertyNameDetectionStrategy>) - Method in class org.springframework.data.util.MethodInvocationRecorder.Recorded
-
- getPropertyPathAccessor(B) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getPropertyPathAccessor(B) - Method in interface org.springframework.data.mapping.PersistentEntity
-
- getPropertySpecifier(String) - Method in class org.springframework.data.support.ExampleMatcherAccessor
-
Get the ExampleMatcher.PropertySpecifier
for given path.
- getPropertySpecifiers() - Method in interface org.springframework.data.domain.ExampleMatcher
-
- getPropertySpecifiers() - Method in class org.springframework.data.support.ExampleMatcherAccessor
-
- getPropertyValue(P) - Method in interface org.springframework.data.mapping.model.PropertyValueProvider
-
- getPropertyValue(String) - Method in class org.springframework.data.util.DirectFieldAccessFallbackBeanWrapper
-
- getPropertyValueTransformer() - Method in class org.springframework.data.domain.ExampleMatcher.PropertySpecifier
-
Get the property transformer to be applied.
- getQualifiers() - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
- getQuery(String) - Method in interface org.springframework.data.repository.core.NamedQueries
-
Returns the named query with the given name.
- getQuery(String) - Method in class org.springframework.data.repository.core.support.PropertiesBasedNamedQueries
-
- getQueryCreationListeners() - Method in interface org.springframework.data.repository.cdi.CdiRepositoryConfiguration
-
- getQueryLookupStrategy() - Method in interface org.springframework.data.repository.cdi.CdiRepositoryConfiguration
-
Return the QueryLookupStrategy.Key
to lookup queries.
- getQueryLookupStrategy(QueryLookupStrategy.Key, QueryMethodEvaluationContextProvider) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- getQueryLookupStrategyKey() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getQueryLookupStrategyKey() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getQueryLookupStrategyKey() - Method in interface org.springframework.data.repository.config.RepositoryConfiguration
-
- getQueryLookupStrategyKey() - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
Returns the QueryLookupStrategy.Key
to define how query methods shall be resolved.
- getQueryLookupStrategyKey() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getQueryMethod() - Method in interface org.springframework.data.repository.query.RepositoryQuery
-
- getQueryMethods() - Method in interface org.springframework.data.repository.core.RepositoryInformation
-
Returns all methods considered to be query methods.
- getQueryMethods() - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
- getQueryMethods() - Method in interface org.springframework.data.repository.core.support.RepositoryFactoryInformation
-
- getQueryMethods() - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- getQueryMethodsFor(Class<?>) - Method in class org.springframework.data.repository.support.Repositories
-
Returns the
QueryMethod
s contained in the repository managing the given domain class.
- getQueryString() - Method in class org.springframework.data.repository.query.SpelEvaluator
-
Returns the query string produced by the intermediate SpEL expression collection step.
- getQueryString() - Method in class org.springframework.data.repository.query.SpelQueryContext.SpelExtractor
-
The query with all the SpEL expressions replaced with bind parameters.
- getRadius() - Method in class org.springframework.data.geo.Circle
-
Returns the radius of the
Circle
.
- getRawType() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getRawType() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns the raw type as it's pulled from from the reflected property.
- getRawType() - Method in class org.springframework.data.mapping.PreferredConstructor.Parameter
-
Returns the raw resolved type of the parameter.
- getRawTypeInformation() - Method in class org.springframework.data.util.ClassTypeInformation
-
- getRawTypeInformation() - Method in interface org.springframework.data.util.TypeInformation
-
- getReadingConverter() - Method in interface org.springframework.data.convert.ConverterBuilder.ReadingConverterAware
-
Returns the reading converter already created.
- getReflectionEntityInstantiator() - Static method in class org.springframework.data.mapping.model.InternalEntityInstantiatorFactory
-
Deprecated.
- getRegistrationsFor(Object) - Method in class org.springframework.data.convert.CustomConversions.StoreConversions
-
Returns ConverterRegistration
s for the given converter.
- getRepositories() - Method in class org.springframework.data.repository.init.RepositoriesPopulatedEvent
-
- getRepository(Class<T>) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
Returns a repository instance for the given interface.
- getRepository(Class<T>, Object) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
Returns a repository instance for the given interface backed by a single instance providing implementation logic
for custom logic.
- getRepository(Class<T>, RepositoryComposition.RepositoryFragments) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
Returns a repository instance for the given interface backed by an instance providing implementation logic for
custom logic.
- getRepositoryBaseClass() - Method in interface org.springframework.data.repository.core.RepositoryInformation
-
Returns the base class to be used to create the proxy backing instance.
- getRepositoryBaseClass(RepositoryMetadata) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
Returns the base class backing the actual repository instance.
- getRepositoryBaseClassName() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getRepositoryBaseClassName() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getRepositoryBaseClassName() - Method in interface org.springframework.data.repository.config.RepositoryConfiguration
-
Returns the name of the repository base class to be used or null if the store specific defaults shall be
applied.
- getRepositoryBaseClassName() - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
Returns the name of the repository base class to be used or
Optional.empty()
if the store specific defaults
shall be applied.
- getRepositoryBaseClassName() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getRepositoryBeanClass() - Method in interface org.springframework.data.repository.cdi.CdiRepositoryConfiguration
-
- getRepositoryConfiguration(BeanDefinition, T) - Method in class org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport
-
- getRepositoryConfigurations(T, ResourceLoader, boolean) - Method in interface org.springframework.data.repository.config.RepositoryConfigurationExtension
-
- getRepositoryConfigurations(T, ResourceLoader) - Method in class org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport
-
- getRepositoryConfigurations(T, ResourceLoader, boolean) - Method in class org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport
-
- getRepositoryContext() - Method in class org.springframework.data.repository.cdi.CdiRepositoryExtensionSupport
-
- getRepositoryFactoryBeanClassName() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getRepositoryFactoryBeanClassName() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getRepositoryFactoryBeanClassName() - Method in interface org.springframework.data.repository.config.RepositoryConfiguration
-
Returns the name of the repository factory bean class to be used.
- getRepositoryFactoryBeanClassName() - Method in interface org.springframework.data.repository.config.RepositoryConfigurationExtension
-
Returns the name of the repository factory class to be used.
- getRepositoryFactoryBeanClassName() - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
Returns the name of the repository factory bean class or
Optional.empty()
if not defined in the source.
- getRepositoryFactoryBeanClassName() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getRepositoryFactoryBeanName() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getRepositoryFor(Class<?>) - Method in class org.springframework.data.repository.support.Repositories
-
Returns the repository managing the given domain class.
- getRepositoryFragments(Class<T>) - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
- getRepositoryFragments(RepositoryMetadata) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- getRepositoryImplementationPostfix() - Method in interface org.springframework.data.repository.cdi.CdiRepositoryConfiguration
-
Returns the configured postfix to be used for looking up custom implementation classes.
- getRepositoryImplementationPostfix() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getRepositoryImplementationPostfix() - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
Returns the configured postfix to be used for looking up custom implementation classes.
- getRepositoryImplementationPostfix() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getRepositoryInformation() - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
- getRepositoryInformation() - Method in interface org.springframework.data.repository.core.support.RepositoryFactoryInformation
-
- getRepositoryInformation(RepositoryMetadata, RepositoryComposition.RepositoryFragments) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- getRepositoryInformation(Class<?>) - Method in class org.springframework.data.repository.support.Repositories
-
- getRepositoryInformationFor(Class<?>) - Method in class org.springframework.data.repository.support.Repositories
-
- getRepositoryInterface() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getRepositoryInterface() - Method in interface org.springframework.data.repository.config.RepositoryConfiguration
-
Returns the interface name of the repository.
- getRepositoryInterface() - Method in exception org.springframework.data.repository.core.RepositoryCreationException
-
- getRepositoryInterface() - Method in interface org.springframework.data.repository.core.RepositoryMetadata
-
Returns the repository interface.
- getRepositoryInterface() - Method in class org.springframework.data.repository.core.support.AbstractRepositoryMetadata
-
- getRepositoryInterface() - Method in class org.springframework.data.repository.core.support.RepositoryMethodInvocationListener.RepositoryMethodInvocation
-
- getRepositoryMetadata(Class<?>) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- getRepositoryProxyPostProcessors() - Method in interface org.springframework.data.repository.cdi.CdiRepositoryConfiguration
-
- getRepositoryTypes() - Method in class org.springframework.data.repository.cdi.CdiRepositoryExtensionSupport
-
Provides access to all repository types as well as their qualifiers.
- getRequiredActualType() - Method in interface org.springframework.data.util.TypeInformation
-
- getRequiredAnnotation(Class<A>) - Method in interface org.springframework.data.mapping.PersistentEntity
-
- getRequiredAnnotation(Class<A>) - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getRequiredAssociation() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getRequiredAttribute(String, Class<T>) - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
Returns the attribute value for the attribute of the given name.
- getRequiredBeanClassName(BeanDefinition) - Static method in interface org.springframework.data.config.ConfigurationUtils
-
- getRequiredClassLoader(XmlReaderContext) - Static method in interface org.springframework.data.config.ConfigurationUtils
-
- getRequiredClassLoader(ResourceLoader) - Static method in interface org.springframework.data.config.ConfigurationUtils
-
- getRequiredComponentType() - Method in interface org.springframework.data.util.TypeInformation
-
Returns the component type for
Collection
s, the key type for
Map
s or the single
generic type if available.
- getRequiredField() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getRequiredField() - Method in class org.springframework.data.util.AnnotationDetectionFieldCallback
-
Returns the field that was detected.
- getRequiredGetter() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getRequiredId(T) - Method in interface org.springframework.data.repository.core.EntityInformation
-
Returns the identifier of the given entity.
- getRequiredIdentifier() - Method in interface org.springframework.data.mapping.IdentifierAccessor
-
Returns the identifier of the underlying instance.
- getRequiredIdentifier() - Method in class org.springframework.data.mapping.TargetAwareIdentifierAccessor
-
- getRequiredIdProperty() - Method in interface org.springframework.data.mapping.PersistentEntity
-
- getRequiredLeafProperty() - Method in interface org.springframework.data.mapping.PersistentPropertyPath
-
- getRequiredMapValueType() - Method in interface org.springframework.data.util.TypeInformation
-
Will return the type of the value in case the underlying type is a
Map
or throw
IllegalStateException
if the map value type cannot be resolved.
- getRequiredMethod() - Method in class org.springframework.data.util.AnnotationDetectionMethodCallback
-
Returns the method with the configured annotation.
- getRequiredPersistentEntity(Class<?>) - Method in interface org.springframework.data.mapping.context.MappingContext
-
- getRequiredPersistentEntity(TypeInformation<?>) - Method in interface org.springframework.data.mapping.context.MappingContext
-
- getRequiredPersistentEntity(P) - Method in interface org.springframework.data.mapping.context.MappingContext
-
- getRequiredPersistentEntity(Class<?>) - Method in class org.springframework.data.mapping.context.PersistentEntities
-
- getRequiredPersistentProperty(String) - Method in interface org.springframework.data.mapping.PersistentEntity
-
- getRequiredProperty(String) - Method in interface org.springframework.data.util.TypeInformation
-
Returns the property information for the property with the given name or throw
IllegalArgumentException
if
the type information cannot be resolved.
- getRequiredRepositoryInformation(Class<?>) - Method in class org.springframework.data.repository.support.Repositories
-
- getRequiredResourceLoader(XmlReaderContext) - Static method in interface org.springframework.data.config.ConfigurationUtils
-
- getRequiredRevisionInstant() - Method in class org.springframework.data.history.Revision
-
Returns the timestamp of the revision, immediately failing on absence.
- getRequiredRevisionInstant() - Method in interface org.springframework.data.history.RevisionMetadata
-
Returns the time stamp of the revision, immediately failing on absence.
- getRequiredRevisionNumber() - Method in class org.springframework.data.history.Revision
-
Returns the revision number of the revision, immediately failing on absence.
- getRequiredRevisionNumber() - Method in interface org.springframework.data.history.RevisionMetadata
-
Returns the revision number of the revision, immediately failing on absence.
- getRequiredSetter() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getRequiredSuperTypeInformation(Class<?>) - Method in interface org.springframework.data.util.TypeInformation
-
- getRequiredType() - Method in class org.springframework.data.util.AnnotationDetectionFieldCallback
-
- getRequiredVersionProperty() - Method in interface org.springframework.data.mapping.PersistentEntity
-
- getRequiredWither() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getResolvedBeanName() - Method in class org.springframework.data.auditing.config.AuditingHandlerBeanDefinitionParser
-
Returns the name of the bean definition the
AuditingHandler
was registered under.
- getResolvedPath() - Method in exception org.springframework.data.mapping.context.InvalidPersistentPropertyPath
-
Returns the part of the source path until which the source property path could be resolved.
- getResourceDescription() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getResourceDescription() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getResourceDescription() - Method in interface org.springframework.data.repository.config.RepositoryConfiguration
-
Returns a human readable description of the repository interface declaration for error reporting purposes.
- getResourceDescription() - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
Returns a human readable description of the repository configuration source for error reporting purposes.
- getResourceDescription() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getResourceReader() - Method in class org.springframework.data.repository.init.AbstractRepositoryPopulatorFactoryBean
-
- getResourceReader() - Method in class org.springframework.data.repository.init.Jackson2RepositoryPopulatorFactoryBean
-
- getResourceReader() - Method in class org.springframework.data.repository.init.UnmarshallerRepositoryPopulatorFactoryBean
-
- getResult() - Method in class org.springframework.data.repository.core.support.RepositoryMethodInvocationListener.RepositoryMethodInvocation
-
- getResultProcessor() - Method in class org.springframework.data.repository.query.QueryMethod
-
- getReturnedDomainClass(Method) - Method in interface org.springframework.data.repository.core.RepositoryMetadata
-
Returns the domain class returned by the given
Method
.
- getReturnedDomainClass(Method) - Method in class org.springframework.data.repository.core.support.AbstractRepositoryMetadata
-
- getReturnedObjectType() - Method in class org.springframework.data.repository.query.QueryMethod
-
Returns the type of the object that will be returned.
- getReturnedType() - Method in class org.springframework.data.repository.query.ResultProcessor
-
- getReturnedType() - Method in class org.springframework.data.repository.query.ReturnedType
-
Returns the type of the individual objects to return.
- getReturnType(Method) - Method in interface org.springframework.data.repository.core.RepositoryMetadata
-
Returns the type
Method
return type as it is declared in the repository.
- getReturnType(Method) - Method in class org.springframework.data.repository.core.support.AbstractRepositoryMetadata
-
- getReturnType(Method) - Static method in class org.springframework.data.util.KotlinReflectionUtils
-
- getReturnType(Method) - Method in interface org.springframework.data.util.TypeInformation
-
- getRevisionDirection(Sort) - Static method in class org.springframework.data.history.RevisionSort
-
Returns in which direction to sort revisions for the given
Sort
instance.
- getRevisionEntityClass() - Method in interface org.springframework.data.repository.history.support.RevisionEntityInformation
-
- getRevisionInstant() - Method in class org.springframework.data.history.AnnotationRevisionMetadata
-
- getRevisionInstant() - Method in class org.springframework.data.history.Revision
-
Returns the timestamp of the revision.
- getRevisionInstant() - Method in interface org.springframework.data.history.RevisionMetadata
-
Returns the timestamp of the revision.
- getRevisionNumber() - Method in class org.springframework.data.history.AnnotationRevisionMetadata
-
- getRevisionNumber() - Method in class org.springframework.data.history.Revision
-
Returns the revision number of the revision.
- getRevisionNumber() - Method in interface org.springframework.data.history.RevisionMetadata
-
Returns the revision number of the revision.
- getRevisionNumberType() - Method in interface org.springframework.data.repository.history.support.RevisionEntityInformation
-
- getRevisionType() - Method in class org.springframework.data.history.AnnotationRevisionMetadata
-
- getRevisionType() - Method in interface org.springframework.data.history.RevisionMetadata
-
- getRootObject() - Method in interface org.springframework.data.spel.spi.EvaluationContextExtension
-
Return the root object to be exposed by the extension.
- getSaveMethod() - Method in interface org.springframework.data.repository.core.CrudMethods
-
Returns the method to be used for saving entities.
- getSaveMethod() - Method in class org.springframework.data.repository.core.support.DefaultCrudMethods
-
- getScope() - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
- getSecond() - Method in class org.springframework.data.geo.Box
-
Returns the second
Point
making up the
Box
.
- getSecond() - Method in class org.springframework.data.util.Pair
-
Returns the second element of the
Pair
.
- getSegment() - Method in class org.springframework.data.mapping.PropertyPath
-
- getSetter() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getSetter() - Method in class org.springframework.data.mapping.model.Property
-
Returns the setter of the property if available and if its first (only) parameter matches the type of the property.
- getSetter() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns the setter method to set a property value.
- getSignatureContributor() - Method in interface org.springframework.data.repository.core.support.RepositoryFragment
-
- getSignatureContributor() - Method in class org.springframework.data.repository.core.support.RepositoryFragment.ImplementedRepositoryFragment
-
- getSignatureContributor() - Method in class org.springframework.data.repository.core.support.RepositoryFragment.StructuralRepositoryFragment
-
- getSimpleTypeHolder() - Method in class org.springframework.data.convert.CustomConversions
-
- getSingleValueTypes() - Static method in class org.springframework.data.repository.util.ReactiveWrappers
-
- getSize() - Method in interface org.springframework.data.domain.Slice
-
Returns the size of the
Slice
.
- getSizeParameterName() - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
Retrieves the parameter name to be used to find the page size in the request.
- getSort() - Method in interface org.springframework.data.domain.Pageable
-
Returns the sorting parameters.
- getSort() - Method in class org.springframework.data.domain.PageRequest
-
- getSort() - Method in interface org.springframework.data.domain.Slice
-
Returns the sorting parameters for the
Slice
.
- getSort() - Method in class org.springframework.data.querydsl.QPageRequest
-
- getSort() - Method in interface org.springframework.data.repository.query.ParameterAccessor
-
Returns the sort instance to be used for query creation.
- getSort() - Method in class org.springframework.data.repository.query.ParametersParameterAccessor
-
- getSort() - Method in class org.springframework.data.repository.query.parser.PartTree
-
Returns the
Sort
specification parsed from the source.
- getSortIndex() - Method in class org.springframework.data.repository.query.Parameters
-
Returns the index of the
Sort
Method
parameter if available.
- getSortOr(Sort) - Method in interface org.springframework.data.domain.Pageable
-
Returns the current
Sort
or the given one if the current one is unsorted.
- getSortParameter(MethodParameter) - Method in class org.springframework.data.web.SortHandlerMethodArgumentResolverSupport
-
Returns the sort parameter to be looked up from the request.
- getSortTemplateVariables(MethodParameter, UriComponents) - Method in class org.springframework.data.web.HateoasSortHandlerMethodArgumentResolver
-
Returns the template variables for the sort parameter.
- getSource() - Method in exception org.springframework.data.mapping.context.InvalidPersistentPropertyPath
-
Returns the source property path.
- getSource() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- getSource() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- getSource() - Method in interface org.springframework.data.repository.config.RepositoryConfiguration
-
- getSource() - Method in interface org.springframework.data.repository.config.RepositoryConfigurationSource
-
Returns the actual source object that the configuration originated from.
- getSource() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- getSource() - Method in class org.springframework.data.repository.init.RepositoriesPopulatedEvent
-
- getSource() - Method in exception org.springframework.data.repository.support.QueryMethodParameterConversionException
-
Returns the source value that we failed converting.
- getSourceBeanDefinition(BeanDefinitionBuilder, ParserContext, Element) - Static method in class org.springframework.data.config.ParsingUtils
-
- getSourceBeanDefinition(BeanDefinitionBuilder, Object) - Static method in class org.springframework.data.config.ParsingUtils
-
- getSpecifiers() - Method in class org.springframework.data.domain.ExampleMatcher.PropertySpecifiers
-
- getSpelExpression() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getSpelExpression() - Method in class org.springframework.data.mapping.model.AnnotationBasedPersistentProperty
-
Inspects a potentially available
Value
annotation at the property and returns the
String
value of
it.
- getSpelExpression() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getSpelExpression() - Method in class org.springframework.data.mapping.PreferredConstructor.Parameter
-
Returns the key to be used when looking up a source data structure to populate the actual parameter value.
- getState() - Method in interface org.springframework.data.repository.core.support.RepositoryMethodInvocationListener.RepositoryMethodInvocationResult
-
- getStereotypes() - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
- getStringMatcher() - Method in class org.springframework.data.domain.ExampleMatcher.PropertySpecifier
-
- getStringMatcherForPath(String) - Method in class org.springframework.data.support.ExampleMatcherAccessor
-
Get the ExampleMatcher.StringMatcher
for a given path or return the default one if none defined.
- getSuperTypeInformation(Class<?>) - Method in interface org.springframework.data.util.TypeInformation
-
- getSymbol() - Method in class org.springframework.data.spel.ExpressionDependencies.ExpressionDependency
-
- getTarget() - Method in interface org.springframework.data.projection.TargetAware
-
Returns the proxy target.
- getTargetClass() - Method in interface org.springframework.data.projection.TargetAware
-
Returns the type of the proxy target.
- getTargetClassMethod(Method) - Method in interface org.springframework.data.repository.core.RepositoryInformation
-
Returns the target class method that is backing the given method.
- getTargetRepository(RepositoryInformation) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
Create a repository instance as backing for the query proxy.
- getTargetRepositoryViaReflection(RepositoryInformation, Object...) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
Creates a repository of the repository base class defined in the given
RepositoryInformation
using
reflection.
- getTargetRepositoryViaReflection(Class<?>, Object...) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- getTotalElements() - Method in interface org.springframework.data.domain.Page
-
Returns the total amount of elements.
- getTotalElements() - Method in class org.springframework.data.domain.PageImpl
-
- getTotalPages() - Method in interface org.springframework.data.domain.Page
-
Returns the number of total pages.
- getTotalPages() - Method in class org.springframework.data.domain.PageImpl
-
- getTransaction(TransactionDefinition) - Method in class org.springframework.data.transaction.ChainedTransactionManager
-
Deprecated.
- getType() - Method in exception org.springframework.data.mapping.context.InvalidPersistentPropertyPath
-
Returns the type the source property path was attempted to be resolved on.
- getType() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getType() - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getType() - Method in class org.springframework.data.mapping.model.Property
-
Returns the type of the property.
- getType() - Method in interface org.springframework.data.mapping.PersistentEntity
-
Returns the resolved Java type of this entity.
- getType() - Method in interface org.springframework.data.mapping.PersistentProperty
-
The type of the property
- getType() - Method in class org.springframework.data.mapping.PreferredConstructor.Parameter
-
- getType() - Method in class org.springframework.data.mapping.PropertyPath
-
Returns the type of the property will return the plain resolved type for simple properties, the component type for
any
Iterable
or the value type of a
Map
if the property is one.
- getType() - Method in exception org.springframework.data.mapping.PropertyReferenceException
-
Returns the type the property could not be found on.
- getType() - Method in interface org.springframework.data.projection.ProjectionInformation
-
Returns the projection type.
- getType() - Method in class org.springframework.data.repository.query.Parameter
-
- getType() - Method in class org.springframework.data.repository.query.parser.Part
-
- getType() - Method in class org.springframework.data.repository.util.QueryExecutionConverters.WrapperType
-
- getType() - Method in class org.springframework.data.util.AnnotationDetectionFieldCallback
-
Returns the type of the field.
- getType() - Method in class org.springframework.data.util.ClassTypeInformation
-
- getType() - Method in interface org.springframework.data.util.TypeInformation
-
Returns the type of the property.
- getTypeAlias() - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getTypeAlias() - Method in interface org.springframework.data.mapping.PersistentEntity
-
Returns the alias to be used when storing type information.
- getTypeArguments() - Method in interface org.springframework.data.util.TypeInformation
-
- getTypedProperty(PersistentProperty<?>, Class<S>) - Method in class org.springframework.data.mapping.model.ConvertingPropertyAccessor
-
- getTypeInformation() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getTypeInformation() - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getTypeInformation() - Method in interface org.springframework.data.mapping.PersistentEntity
-
- getTypeInformation() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- getTypeInformation() - Method in class org.springframework.data.mapping.PropertyPath
-
- getTypes() - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
- getTypeToRead() - Method in class org.springframework.data.repository.query.ReturnedType
-
Returns the type that the query execution is supposed to pass to the underlying infrastructure.
- getTypeUltimatelyReferredToBy(PersistentProperty<?>) - Method in class org.springframework.data.mapping.context.PersistentEntities
-
- getUnit() - Method in class org.springframework.data.geo.Distance
-
Returns a
String
representation of the unit the distance is in.
- getUnresolvableSegment() - Method in exception org.springframework.data.mapping.context.InvalidPersistentPropertyPath
-
Returns the segment of the source property path that could not be resolved.
- getUpperBound() - Method in class org.springframework.data.domain.Range
-
- getUserClass(Class<?>) - Static method in class org.springframework.data.util.ProxyUtils
-
Returns the user class for the given type.
- getUserClass(Object) - Static method in class org.springframework.data.util.ProxyUtils
-
Returns the user class for the given source object.
- getUserType(Class<?>) - Method in interface org.springframework.data.util.ProxyUtils.ProxyDetector
-
Returns the user class for the given type.
- getUserTypeInformation() - Method in interface org.springframework.data.util.TypeInformation
-
Returns the user type of the property if proxied.
- getValue() - Method in class org.springframework.data.domain.Range.Bound
-
- getValue() - Method in class org.springframework.data.geo.Distance
-
- getValue() - Method in class org.springframework.data.mapping.Alias
-
- getValue(int) - Method in class org.springframework.data.repository.query.ParametersParameterAccessor
-
Returns the value with the given index.
- getValue(Object) - Method in class org.springframework.data.util.AnnotationDetectionFieldCallback
-
Retrieves the value of the field by reflection.
- getValue() - Method in class org.springframework.data.util.NullableWrapper
-
Returns the backing value.
- getValues() - Method in interface org.springframework.data.crossstore.ChangeSet
-
- getValues() - Method in class org.springframework.data.crossstore.HashMapChangeSet
-
- getValues() - Method in class org.springframework.data.repository.query.ParametersParameterAccessor
-
Returns the potentially unwrapped values.
- getValueTransformerForPath(String) - Method in class org.springframework.data.support.ExampleMatcherAccessor
-
Get the ignore case flag for a given path or return ExampleMatcher.NoOpPropertyValueTransformer
if none
defined.
- getValueType() - Method in class org.springframework.data.util.NullableWrapper
-
Returns the type of the contained value.
- getVersionProperty() - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- getVersionProperty() - Method in interface org.springframework.data.mapping.PersistentEntity
-
- getWither() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- getWither() - Method in class org.springframework.data.mapping.model.Property
-
Returns the wither of the property if available and if its first (only) parameter matches the type of the property.
- getWither() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns the with
Method
to set a property value on a new object instance.
- getWritingConverter() - Method in interface org.springframework.data.convert.ConverterBuilder.WritingConverterAware
-
Returns the writing converter already created.
- getX() - Method in class org.springframework.data.geo.Point
-
Returns the x-coordinate of the
Point
.
- getY() - Method in class org.springframework.data.geo.Point
-
Returns the y-coordinate of the
Point
.
- Id - Annotation Type in org.springframework.data.annotation
-
Demarcates an identifier.
- ID_KEY - Static variable in interface org.springframework.data.crossstore.ChangeSetPersister
-
- IdentifierAccessor - Interface in org.springframework.data.mapping
-
Interface for a component allowing the access of identifier values.
- IdPropertyIdentifierAccessor - Class in org.springframework.data.mapping.model
-
- IdPropertyIdentifierAccessor(PersistentEntity<?, ?>, Object) - Constructor for class org.springframework.data.mapping.model.IdPropertyIdentifierAccessor
-
- ifAllPresent(Optional<T>, Optional<S>, BiConsumer<T, S>) - Static method in interface org.springframework.data.util.Optionals
-
- ifPresent(String, ClassLoader, Consumer<Class<?>>) - Static method in class org.springframework.data.repository.util.ClassUtils
-
Determine whether the
Class
identified by the supplied
className
is present * and can be loaded and
call the
action
if the
Class
could be loaded.
- ifPresentOrElse(Optional<T>, Consumer<? super T>, Runnable) - Static method in interface org.springframework.data.util.Optionals
-
- ignoreCase() - Method in class org.springframework.data.domain.ExampleMatcher.GenericPropertyMatcher
-
Sets ignores case to true.
- ignoreCase(boolean) - Method in class org.springframework.data.domain.ExampleMatcher.GenericPropertyMatcher
-
Sets ignores case to ignoreCase
.
- ignoreCase() - Static method in class org.springframework.data.domain.ExampleMatcher.GenericPropertyMatchers
-
- ignoreCase() - Method in class org.springframework.data.domain.Sort.Order
-
Returns a new
Sort.Order
with case insensitive sorting enabled.
- Immutable - Annotation Type in org.springframework.data.annotation
-
Annotation for persistent entities to indicate the class is designed in immutable way.
- ImplementationDetectionConfiguration - Interface in org.springframework.data.repository.config
-
Expresses configuration to be used to detect implementation classes for repositories and repository fragments.
- ImplementationLookupConfiguration - Interface in org.springframework.data.repository.config
-
Configuration that's used to lookup an implementation type for a repository or fragment interface.
- implemented(T) - Static method in interface org.springframework.data.repository.core.support.RepositoryFragment
-
- implemented(Class<T>, T) - Static method in interface org.springframework.data.repository.core.support.RepositoryFragment
-
Create an implemented
RepositoryFragment
from a
interfaceClass
backed by the
implementation
object.
- ImplementedRepositoryFragment(Optional<Class<T>>, T) - Constructor for class org.springframework.data.repository.core.support.RepositoryFragment.ImplementedRepositoryFragment
-
- in(Metric) - Method in class org.springframework.data.geo.Distance
-
- including(Path<?>...) - Method in class org.springframework.data.querydsl.binding.QuerydslBindings
-
Include properties for binding.
- inclusive(T) - Static method in class org.springframework.data.domain.Range.Bound
-
Creates a boundary including value
.
- inclusive(int) - Static method in class org.springframework.data.domain.Range.Bound
-
Creates a boundary including value
.
- inclusive(long) - Static method in class org.springframework.data.domain.Range.Bound
-
Creates a boundary including value
.
- inclusive(float) - Static method in class org.springframework.data.domain.Range.Bound
-
Creates a boundary including value
.
- inclusive(double) - Static method in class org.springframework.data.domain.Range.Bound
-
Creates a boundary including value
.
- IncompleteRepositoryCompositionException - Exception in org.springframework.data.repository.core.support
-
Exception thrown during repository creation when a the repository has custom methods that are not backed by a
fragment or if no fragment could be found for a repository method invocation.
- IncompleteRepositoryCompositionException(String, Class<?>) - Constructor for exception org.springframework.data.repository.core.support.IncompleteRepositoryCompositionException
-
Constructor for IncompleteRepositoryCompositionException.
- init() - Method in class org.springframework.data.repository.config.RepositoryNameSpaceHandler
-
- initialize() - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
Initializes the mapping context.
- initialize() - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
Forces the initialization of bean target.
- INSTANCE - Static variable in class org.springframework.data.domain.jaxb.OrderAdapter
-
- INSTANCE - Static variable in class org.springframework.data.domain.jaxb.SortAdapter
-
- INSTANCE - Static variable in class org.springframework.data.querydsl.SimpleEntityPathResolver
-
- instantiateClass(Class<?>, Object...) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
Convenience method to instantiate a class using the given constructorArguments
by looking up a matching
constructor.
- InstantiationAwarePropertyAccessor<T> - Class in org.springframework.data.mapping.model
-
- InstantiationAwarePropertyAccessor(PersistentPropertyAccessor<T>, EntityInstantiators) - Constructor for class org.springframework.data.mapping.model.InstantiationAwarePropertyAccessor
-
- InstantiationAwarePropertyAccessor(T, Function<T, PersistentPropertyAccessor<T>>, EntityInstantiators) - Constructor for class org.springframework.data.mapping.model.InstantiationAwarePropertyAccessor
-
- InstantiationAwarePropertyAccessorFactory - Class in org.springframework.data.mapping.model
-
- InstantiationAwarePropertyAccessorFactory(PersistentPropertyAccessorFactory, EntityInstantiators) - Constructor for class org.springframework.data.mapping.model.InstantiationAwarePropertyAccessorFactory
-
- InternalEntityInstantiatorFactory - Class in org.springframework.data.mapping.model
-
- InternalEntityInstantiatorFactory() - Constructor for class org.springframework.data.mapping.model.InternalEntityInstantiatorFactory
-
Deprecated.
- InvalidPersistentPropertyPath - Exception in org.springframework.data.mapping.context
-
- InvalidPersistentPropertyPath(String, TypeInformation<?>, String, PersistentPropertyPath<? extends PersistentProperty<?>>) - Constructor for exception org.springframework.data.mapping.context.InvalidPersistentPropertyPath
-
- invalidProperty(QueryMethod, String) - Static method in exception org.springframework.data.repository.query.QueryCreationException
-
Rejects the given domain class property.
- invoke(MethodInvocation) - Method in class org.springframework.data.projection.DefaultMethodInvokingMethodInterceptor
-
- invoke(MethodInvocation) - Method in class org.springframework.data.repository.core.support.MethodInvocationValidator
-
- invoke(Method, Object...) - Method in class org.springframework.data.repository.core.support.RepositoryComposition
-
Invoke a method on the repository by routing the invocation to the appropriate
RepositoryFragment
.
- invoke(Method, Method, Object[]) - Method in class org.springframework.data.repository.core.support.RepositoryComposition.RepositoryFragments
-
Invoke
Method
by resolving the fragment that implements a suitable method.
- invoke(MethodInvocation) - Method in enum org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor
-
- invoke(Object[]) - Method in class org.springframework.data.spel.spi.Function
-
Invokes the function with the given arguments.
- invokeDeleteById(Object) - Method in class org.springframework.data.querydsl.QuerydslRepositoryInvokerAdapter
-
- invokeDeleteById(Object) - Method in interface org.springframework.data.repository.support.RepositoryInvoker
-
- invokeFindAll(Pageable) - Method in class org.springframework.data.querydsl.QuerydslRepositoryInvokerAdapter
-
- invokeFindAll(Sort) - Method in class org.springframework.data.querydsl.QuerydslRepositoryInvokerAdapter
-
- invokeFindAll(Pageable) - Method in interface org.springframework.data.repository.support.RepositoryInvoker
-
- invokeFindAll(Sort) - Method in interface org.springframework.data.repository.support.RepositoryInvoker
-
- invokeFindById(Object) - Method in class org.springframework.data.querydsl.QuerydslRepositoryInvokerAdapter
-
- invokeFindById(Object) - Method in interface org.springframework.data.repository.support.RepositoryInvoker
-
- invokeQueryMethod(Method, MultiValueMap<String, ? extends Object>, Pageable, Sort) - Method in class org.springframework.data.querydsl.QuerydslRepositoryInvokerAdapter
-
- invokeQueryMethod(Method, MultiValueMap<String, ? extends Object>, Pageable, Sort) - Method in interface org.springframework.data.repository.support.RepositoryInvoker
-
Invokes the query method backed by the given
Method
using the given parameters,
Pageable
and
Sort
.
- invokeSave(T) - Method in class org.springframework.data.querydsl.QuerydslRepositoryInvokerAdapter
-
- invokeSave(T) - Method in interface org.springframework.data.repository.support.RepositoryInvoker
-
- is(Version) - Method in class org.springframework.data.util.Version
-
Returns whether the current
Version
is the same as the given one.
- isAllMatching() - Method in interface org.springframework.data.domain.ExampleMatcher
-
Returns whether all of the predicates of the
Example
are supposed to match.
- isAlternative() - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
- isAnnotationPresent(Class<? extends Annotation>) - Method in class org.springframework.data.mapping.model.AnnotationBasedPersistentProperty
-
Returns whether the property carries the an annotation of the given type.
- isAnnotationPresent(Class<A>) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- isAnnotationPresent(Class<A>) - Method in interface org.springframework.data.mapping.PersistentEntity
-
Checks whether the annotation of the given type is present on the
PersistentEntity
.
- isAnnotationPresent(Class<? extends Annotation>) - Method in interface org.springframework.data.mapping.PersistentProperty
-
- isAnyMatching() - Method in interface org.springframework.data.domain.ExampleMatcher
-
Returns whether it's sufficient that any of the predicates of the
Example
match.
- isAnyPresent(Optional<?>...) - Static method in interface org.springframework.data.util.Optionals
-
Returns whether any of the given
Optional
s is present.
- isArray() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- isArray() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns whether the property is an array.
- isAscending() - Method in enum org.springframework.data.domain.Sort.Direction
-
Returns whether the direction is ascending.
- isAscending() - Method in class org.springframework.data.domain.Sort.Order
-
Returns whether sorting for this property shall be ascending.
- isAssignableFrom(TypeInformation<?>) - Method in class org.springframework.data.util.ClassTypeInformation
-
- isAssignableFrom(TypeInformation<?>) - Method in interface org.springframework.data.util.TypeInformation
-
Returns if the current
TypeInformation
can be safely assigned to the given one.
- isAssociation() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- isAssociation() - Method in class org.springframework.data.mapping.model.AnnotationBasedPersistentProperty
-
- isAssociation() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- isAuditable(Object) - Method in class org.springframework.data.auditing.AuditingHandlerSupport
-
Returns whether the given source is considered to be auditable in the first place.
- isAvailable() - Static method in class org.springframework.data.repository.util.ReactiveWrappers
-
Returns true if reactive support is available.
- isAvailable(ReactiveWrappers.ReactiveLibrary) - Static method in class org.springframework.data.repository.util.ReactiveWrappers
-
- isBaseClassMethod(Method) - Method in interface org.springframework.data.repository.core.RepositoryInformation
-
Returns whether the given method is logically a base class method.
- isBasePathOf(PersistentPropertyPath<P>) - Method in interface org.springframework.data.mapping.PersistentPropertyPath
-
- isBindable() - Method in class org.springframework.data.repository.query.Parameter
-
Returns whether the
Parameter
is to be bound to a query.
- isBindable(Class<?>) - Static method in class org.springframework.data.repository.query.Parameters
-
Returns whether the given type is a bindable parameter.
- isBounded() - Method in class org.springframework.data.domain.Range.Bound
-
Returns whether this boundary is bounded.
- isClosed() - Method in interface org.springframework.data.projection.ProjectionInformation
-
- isCollection() - Method in class org.springframework.data.mapping.PropertyPath
-
- isCollectionLike() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- isCollectionLike() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- isCollectionLike() - Method in interface org.springframework.data.util.TypeInformation
-
Returns whether the type can be considered a collection, which means it's a container of elements, e.g. a
Collection
and
Array
or anything implementing
Iterable
.
- isCollectionQuery() - Method in class org.springframework.data.repository.query.QueryMethod
-
Returns whether the finder will actually return a collection of entities or a single one.
- isConstructorArgument(PersistentProperty<?>) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- isConstructorArgument(PersistentProperty<?>) - Method in interface org.springframework.data.mapping.PersistentEntity
-
- isConstructorParameter(PersistentProperty<?>) - Method in class org.springframework.data.mapping.PreferredConstructor
-
- isCountProjection() - Method in class org.springframework.data.repository.query.parser.PartTree
-
Returns whether a count projection shall be applied.
- isCustomMethod(Method) - Method in interface org.springframework.data.repository.core.RepositoryInformation
-
Returns whether the given method is a custom repository method.
- isDataClass(Class<?>) - Static method in class org.springframework.data.util.KotlinReflectionUtils
-
Return true if the specified class is a Kotlin data class.
- isDefaultConverter() - Method in class org.springframework.data.convert.CustomConversions.ConverterRegistrationIntent
-
- isDefaultRevisionEntity() - Method in interface org.springframework.data.repository.history.support.RevisionEntityInformation
-
- isDelete() - Method in class org.springframework.data.repository.query.parser.PartTree
-
return true if the created
PartTree
is meant to be used for delete operation.
- isDescending() - Method in enum org.springframework.data.domain.Sort.Direction
-
Returns whether the direction is descending.
- isDescending() - Method in class org.springframework.data.domain.Sort.Order
-
Returns whether sorting for this property shall be descending.
- isDistinct() - Method in class org.springframework.data.repository.query.parser.PartTree
-
Returns whether we indicate distinct lookup of entities.
- isDynamicProjectionParameter() - Method in class org.springframework.data.repository.query.Parameter
-
Returns whether the current
Parameter
is the one used for dynamic projections.
- isEmpty() - Method in class org.springframework.data.domain.Sort
-
- isEmpty() - Method in class org.springframework.data.domain.Sort.TypedSort
-
- isEmpty(Predicate) - Static method in class org.springframework.data.querydsl.binding.QuerydslPredicateBuilder
-
Returns whether the given Predicate
represents an empty predicate instance.
- isEmpty() - Method in class org.springframework.data.querydsl.QSort
-
- isEmpty() - Method in class org.springframework.data.repository.core.support.RepositoryComposition
-
- isEmpty() - Method in interface org.springframework.data.util.Streamable
-
- isEnclosingClassParameter(PreferredConstructor.Parameter<?, P>) - Method in class org.springframework.data.mapping.PreferredConstructor
-
- isEntity() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- isEntity() - Method in interface org.springframework.data.mapping.PersistentProperty
-
- isExistsProjection() - Method in class org.springframework.data.repository.query.parser.PartTree
-
Returns whether an exists projection shall be applied.
- isExplicitlyAnnotated() - Method in class org.springframework.data.mapping.PreferredConstructor
-
- isExplicitlyNamed() - Method in class org.springframework.data.repository.query.Parameter
-
Returns whether the parameter is named explicitly, i.e. annotated with
Param
.
- isExplicitNullable(MethodParameter) - Static method in class org.springframework.data.util.NullableUtils
-
Determine whether a
MethodParameter
is explicitly annotated to be considered nullable.
- isFallbackPageable(Pageable) - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
Returns whether the given
Pageable
is the fallback one.
- isFieldBacked() - Method in class org.springframework.data.mapping.model.Property
-
Returns whether the property is backed by a field.
- isFirst() - Method in interface org.springframework.data.domain.Slice
-
Returns whether the current
Slice
is the first one.
- isGenericRepositoryInterface(Class<?>) - Static method in class org.springframework.data.repository.util.ClassUtils
-
Returns wthere the given type is the
Repository
interface.
- isGenericRepositoryInterface(String) - Static method in class org.springframework.data.repository.util.ClassUtils
-
Returns whether the given type name is a repository interface name.
- isGetter() - Method in class org.springframework.data.projection.Accessor
-
Returns whether the accessor is a getter.
- isGreaterThan(Version) - Method in class org.springframework.data.util.Version
-
Returns whether the current
Version
is greater (newer) than the given one.
- isGreaterThanOrEqualTo(Version) - Method in class org.springframework.data.util.Version
-
Returns whether the current
Version
is greater (newer) or the same as the given one.
- isIdProperty() - Method in class org.springframework.data.mapping.model.AnnotationBasedPersistentProperty
-
- isIdProperty(PersistentProperty<?>) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- isIdProperty(PersistentProperty<?>) - Method in interface org.springframework.data.mapping.PersistentEntity
-
- isIdProperty() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns whether the property is a
potential identifier property of the owning
PersistentEntity
.
- isIgnoreCase() - Method in class org.springframework.data.domain.Sort.Order
-
Returns whether or not the sort will be case sensitive.
- isIgnoreCaseEnabled() - Method in interface org.springframework.data.domain.ExampleMatcher
-
- isIgnoreCaseEnabled() - Method in class org.springframework.data.support.ExampleMatcherAccessor
-
- isIgnoreCaseForPath(String) - Method in class org.springframework.data.support.ExampleMatcherAccessor
-
Get the ignore case flag for a given path or return the default one if none defined.
- isIgnoredPath(String) - Method in interface org.springframework.data.domain.ExampleMatcher
-
- isIgnoredPath(String) - Method in class org.springframework.data.support.ExampleMatcherAccessor
-
- isImmutable() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- isImmutable() - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- isImmutable() - Method in interface org.springframework.data.mapping.PersistentEntity
-
- isImmutable() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns whether the current property is immutable, i.e. if there is no setter or the backing
Field
is
final
.
- isInclusive() - Method in class org.springframework.data.domain.Range.Bound
-
- isInputProperty(PropertyDescriptor) - Method in class org.springframework.data.projection.SpelAwareProxyProjectionFactory.SpelAwareProjectionInformation
-
- isInstance(Object) - Method in class org.springframework.data.repository.query.ReturnedType
-
Returns whether the given source object is an instance of the returned type.
- isKotlinClass(Class<?>) - Static method in class org.springframework.data.util.ReflectionUtils
-
- isLast() - Method in class org.springframework.data.domain.PageImpl
-
- isLast() - Method in interface org.springframework.data.domain.Slice
-
Returns whether the current
Slice
is the last one.
- isLazyInit() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- isLazyInit() - Method in interface org.springframework.data.repository.config.RepositoryConfiguration
-
Returns whether to initialize the repository proxy lazily.
- isLessThan(Version) - Method in class org.springframework.data.util.Version
-
Returns whether the current
Version
is less (older) than the given one.
- isLessThanOrEqualTo(Version) - Method in class org.springframework.data.util.Version
-
Returns whether the current
Version
is less (older) or equal to the current one.
- isLimiting() - Method in class org.springframework.data.repository.query.parser.PartTree
-
Return true if the create
PartTree
is meant to be used for a query with limited maximal results.
- isMap() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- isMap() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns whether the property is a
Map
.
- isMap() - Method in interface org.springframework.data.util.TypeInformation
-
Returns whether the property is a
Map
.
- isMethod() - Method in class org.springframework.data.spel.ExpressionDependencies.ExpressionDependency
-
- isModifyingQuery() - Method in class org.springframework.data.repository.query.QueryMethod
-
Returns whether the query method is a modifying one.
- isModifyOnCreate() - Method in class org.springframework.data.auditing.config.AnnotationAuditingConfiguration
-
- isModifyOnCreate() - Method in interface org.springframework.data.auditing.config.AuditingConfiguration
-
Returns whether the entity shall be marked as modified on creation.
- isMultiValueType(Class<?>) - Static method in class org.springframework.data.repository.util.ReactiveWrappers
-
Returns true if type
is a reactive wrapper type supporting multiple values (0..N
elements).
- isNamedParameter() - Method in class org.springframework.data.repository.query.Parameter
-
Returns whether the parameter is annotated with
Param
.
- isNested() - Method in class org.springframework.data.spel.ExpressionDependencies.ExpressionDependency
-
- isNew() - Method in interface org.springframework.data.domain.Persistable
-
Returns if the Persistable
is new or was persisted already.
- isNew(Object) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- isNew(Object) - Method in interface org.springframework.data.mapping.PersistentEntity
-
Returns whether the given bean is considered new according to the static metadata.
- isNew(T) - Method in interface org.springframework.data.repository.core.EntityInformation
-
Returns whether the given entity is considered to be new.
- isNew(T) - Method in class org.springframework.data.repository.core.support.AbstractEntityInformation
-
- isNew(T) - Method in class org.springframework.data.repository.core.support.DelegatingEntityInformation
-
- isNew(T) - Method in class org.springframework.data.repository.core.support.PersistentEntityInformation
-
- isNew(Object) - Method in interface org.springframework.data.support.IsNewStrategy
-
Returns whether the given entity is new, i.e. has never been persisted before or not.
- isNew(Object) - Method in enum org.springframework.data.support.PersistableIsNewStrategy
-
- IsNewAwareAuditingHandler - Class in org.springframework.data.auditing
-
- IsNewAwareAuditingHandler(MappingContext<? extends PersistentEntity<?, ?>, ? extends PersistentProperty<?>>) - Constructor for class org.springframework.data.auditing.IsNewAwareAuditingHandler
-
- IsNewAwareAuditingHandler(PersistentEntities) - Constructor for class org.springframework.data.auditing.IsNewAwareAuditingHandler
-
- IsNewAwareAuditingHandlerBeanDefinitionParser - Class in org.springframework.data.auditing.config
-
- IsNewAwareAuditingHandlerBeanDefinitionParser(String) - Constructor for class org.springframework.data.auditing.config.IsNewAwareAuditingHandlerBeanDefinitionParser
-
- IsNewStrategy - Interface in org.springframework.data.support
-
Strategy interface to determine whether a given entity is to be considered new.
- isNoArgConstructor() - Method in class org.springframework.data.mapping.PreferredConstructor
-
Returns whether the constructor does not have any arguments.
- isNonNull(Method, ElementType) - Static method in class org.springframework.data.util.NullableUtils
-
- isNonNull(Class<?>, ElementType) - Static method in class org.springframework.data.util.NullableUtils
-
Determine whether
ElementType
in the scope of
type
requires non-null values.
- isNonNull(AnnotatedElement, ElementType) - Static method in class org.springframework.data.util.NullableUtils
-
- isNoValueType(Class<?>) - Static method in class org.springframework.data.repository.util.ReactiveWrappers
-
Returns true if type
is a reactive wrapper type that contains no value.
- isNullable() - Method in class org.springframework.data.repository.cdi.CdiRepositoryBean
-
- isNullable(MethodParameter) - Static method in class org.springframework.data.util.ReflectionUtils
-
- isOfType(Object, Collection<Class<?>>) - Static method in class org.springframework.data.repository.util.ClassUtils
-
Returns whether the given object is of one of the given types.
- isOneIndexedParameters() - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
Indicates whether to expose and assume 1-based page number indexes in the request parameters.
- isPaged() - Method in interface org.springframework.data.domain.Pageable
-
Returns whether the current
Pageable
contains pagination information.
- isPageQuery() - Method in class org.springframework.data.repository.query.QueryMethod
-
Returns whether the finder will return a
Page
of results.
- isPagingRepository() - Method in interface org.springframework.data.repository.core.RepositoryMetadata
-
Returns whether the repository is a paging one.
- isPagingRepository() - Method in class org.springframework.data.repository.core.support.AbstractRepositoryMetadata
-
- isPresent() - Method in class org.springframework.data.mapping.Alias
-
- isPresentButDifferent(Alias) - Method in class org.springframework.data.mapping.Alias
-
Checks whether this
Alias
has a value but is different from the
other
value.
- isPrimary() - Method in class org.springframework.data.repository.config.DefaultRepositoryConfiguration
-
- isPrimary() - Method in interface org.springframework.data.repository.config.RepositoryConfiguration
-
Returns whether the repository is the primary one for its type.
- isProjecting() - Method in class org.springframework.data.repository.query.ReturnedType
-
Returns whether the type is projecting, i.e. not of the domain type.
- isPropertyOrField() - Method in class org.springframework.data.spel.ExpressionDependencies.ExpressionDependency
-
- isQueryForEntity() - Method in class org.springframework.data.repository.query.QueryMethod
-
Returns whether the query for this method actually returns entities.
- isQueryMethod(Method) - Method in interface org.springframework.data.repository.core.RepositoryInformation
-
Returns whether the given method is a query method.
- isQuoted(int) - Method in class org.springframework.data.repository.query.SpelQueryContext.SpelExtractor
-
Return whether the
query
at
index
is quoted.
- isReactiveRepository() - Method in interface org.springframework.data.repository.core.RepositoryMetadata
-
Returns whether the repository is a reactive one, i.e. if it uses reactive types in one of its methods.
- isReactiveRepository() - Method in class org.springframework.data.repository.core.support.AbstractRepositoryMetadata
-
- isReading() - Method in class org.springframework.data.convert.CustomConversions.ConverterRegistrationIntent
-
- isSetDates() - Method in class org.springframework.data.auditing.config.AnnotationAuditingConfiguration
-
- isSetDates() - Method in interface org.springframework.data.auditing.config.AuditingConfiguration
-
Returns whether the creation and modification dates shall be set.
- isSetter() - Method in class org.springframework.data.projection.Accessor
-
Returns whether the accessor is a setter.
- isSignatureEqual(Function) - Method in class org.springframework.data.spel.spi.Function
-
Checks whether this Function
has the same signature as another Function
.
- isSimpleSourceType() - Method in class org.springframework.data.convert.CustomConversions.ConverterRegistrationIntent
-
- isSimpleTargetType() - Method in class org.springframework.data.convert.CustomConversions.ConverterRegistrationIntent
-
- isSimpleType(Class<?>) - Method in class org.springframework.data.convert.CustomConversions
-
Returns whether the given type is considered to be simple.
- isSimpleType(Class<?>) - Method in class org.springframework.data.mapping.model.SimpleTypeHolder
-
Returns whether the given type is considered a simple one.
- isSingleton() - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
- isSingleValue(Class<?>) - Static method in class org.springframework.data.repository.util.QueryExecutionConverters
-
- isSingleValue(Class<?>) - Static method in class org.springframework.data.util.NullableWrapperConverters
-
- isSingleValueType(Class<?>) - Static method in class org.springframework.data.repository.util.ReactiveWrappers
-
Returns true if type
is a reactive wrapper type for a single value.
- isSliceQuery() - Method in class org.springframework.data.repository.query.QueryMethod
-
Returns whether the query method will return a
Slice
.
- isSorted() - Method in class org.springframework.data.domain.Sort
-
- isSpecialParameter() - Method in class org.springframework.data.repository.query.Parameter
-
Returns whether the parameter is a special parameter.
- isStoreConverter() - Method in class org.springframework.data.convert.CustomConversions.ConverterRegistrationIntent
-
- isStreamQuery() - Method in class org.springframework.data.repository.query.QueryMethod
-
Returns whether the method returns a Stream.
- isStrictRepositoryCandidate(RepositoryMetadata) - Method in class org.springframework.data.repository.config.RepositoryConfigurationExtensionSupport
-
Returns whether the given repository metadata is a candidate for bean definition creation in the strict repository
detection mode.
- isSubTypeOf(Class<?>) - Method in interface org.springframework.data.util.TypeInformation
-
Returns whether the current type is a sub type of the given one, i.e. whether it's assignable but not the same one.
- isSupported(PersistentEntity<?, ?>) - Method in enum org.springframework.data.mapping.model.BeanWrapperPropertyAccessorFactory
-
- isSupported(PersistentEntity<?, ?>) - Method in class org.springframework.data.mapping.model.ClassGeneratingPropertyAccessorFactory
-
Checks whether an accessor class can be generated.
- isSupported(PersistentEntity<?, ?>) - Method in class org.springframework.data.mapping.model.InstantiationAwarePropertyAccessorFactory
-
- isSupported(PersistentEntity<?, ?>) - Method in interface org.springframework.data.mapping.model.PersistentPropertyAccessorFactory
-
- isSupportedKotlinClass(Class<?>) - Static method in class org.springframework.data.util.KotlinReflectionUtils
-
Return true if the specified class is a supported Kotlin class.
- isSupportedKotlinClass(Class<?>) - Static method in class org.springframework.data.util.ReflectionUtils
-
- isSurroundingTransactionActive() - Method in enum org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor
-
Returns whether a transaction was active before the method call entered the repository proxy.
- isSuspend(Method) - Static method in class org.springframework.data.util.KotlinReflectionUtils
-
Returns whether the
Method
is declared as suspend (Kotlin Coroutine).
- isTopLevel() - Method in class org.springframework.data.spel.ExpressionDependencies.ExpressionDependency
-
- isTransient() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- isTransient() - Method in class org.springframework.data.mapping.model.AnnotationBasedPersistentProperty
-
- isTransient() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns whether the property is transient.
- isUnpaged() - Method in interface org.springframework.data.domain.Pageable
-
Returns whether the current
Pageable
does not contain pagination information.
- isUnsorted() - Method in class org.springframework.data.domain.Sort
-
- isUserConverter() - Method in class org.springframework.data.convert.CustomConversions.ConverterRegistrationIntent
-
- isVersionProperty() - Method in class org.springframework.data.mapping.model.AnnotationBasedPersistentProperty
-
- isVersionProperty(PersistentProperty<?>) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- isVersionProperty(PersistentProperty<?>) - Method in interface org.springframework.data.mapping.PersistentEntity
-
- isVersionProperty() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns whether the current property is a
potential version property of the owning
PersistentEntity
.
- isVoid(Class<?>) - Static method in class org.springframework.data.util.ReflectionUtils
-
Check whether the given
type
represents a void type such as
void
,
Void
or Kotlin
Unit
.
- isWritable() - Method in class org.springframework.data.mapping.model.AbstractPersistentProperty
-
- isWritable() - Method in class org.springframework.data.mapping.model.AnnotationBasedPersistentProperty
-
- isWritable() - Method in interface org.springframework.data.mapping.PersistentProperty
-
Returns whether the current property is writable, i.e. if the value held for it shall be written to the data store.
- isWriting() - Method in class org.springframework.data.convert.CustomConversions.ConverterRegistrationIntent
-
- iterator() - Method in class org.springframework.data.domain.Sort
-
- iterator() - Method in class org.springframework.data.domain.Sort.TypedSort
-
- iterator() - Method in class org.springframework.data.geo.GeoResults
-
- iterator() - Method in class org.springframework.data.geo.Polygon
-
- iterator() - Method in class org.springframework.data.history.Revisions
-
- iterator() - Method in class org.springframework.data.mapping.context.PersistentEntities
-
- iterator() - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- iterator() - Method in class org.springframework.data.mapping.PropertyPath
-
- iterator() - Method in class org.springframework.data.repository.core.support.RepositoryComposition.RepositoryFragments
-
- iterator() - Method in interface org.springframework.data.repository.query.ParameterAccessor
-
Returns an iterator over all bindable parameters.
- iterator() - Method in class org.springframework.data.repository.query.Parameters
-
- iterator() - Method in class org.springframework.data.repository.query.ParametersParameterAccessor
-
- iterator() - Method in class org.springframework.data.repository.query.parser.PartTree
-
- iterator() - Method in class org.springframework.data.repository.query.parser.PartTree.OrPart
-
- iterator() - Method in class org.springframework.data.repository.support.Repositories
-
- iterator() - Method in class org.springframework.data.spel.ExpressionDependencies
-
- OBJECT - Static variable in class org.springframework.data.util.ClassTypeInformation
-
- of(SimpleTypeHolder, Object...) - Static method in class org.springframework.data.convert.CustomConversions.StoreConversions
-
- of(SimpleTypeHolder, Collection<?>) - Static method in class org.springframework.data.convert.CustomConversions.StoreConversions
-
- of(T) - Static method in interface org.springframework.data.domain.Example
-
Create a new
Example
including all non-null properties by default.
- of(T, ExampleMatcher) - Static method in interface org.springframework.data.domain.Example
-
- of(ExampleMatcher.StringMatcher, boolean) - Static method in class org.springframework.data.domain.ExampleMatcher.GenericPropertyMatcher
-
- of(ExampleMatcher.StringMatcher) - Static method in class org.springframework.data.domain.ExampleMatcher.GenericPropertyMatcher
-
- of(int, int) - Static method in class org.springframework.data.domain.PageRequest
-
- of(int, int, Sort) - Static method in class org.springframework.data.domain.PageRequest
-
Creates a new
PageRequest
with sort parameters applied.
- of(int, int, Sort.Direction, String...) - Static method in class org.springframework.data.domain.PageRequest
-
Creates a new
PageRequest
with sort direction and properties applied.
- of(Range.Bound<T>, Range.Bound<T>) - Static method in class org.springframework.data.domain.Range
-
Creates a new
Range
with the given lower and upper bound.
- of(RevisionMetadata<N>, T) - Static method in class org.springframework.data.history.Revision
-
- of(List<? extends Revision<N, T>>) - Static method in class org.springframework.data.history.Revisions
-
- of(Object) - Static method in class org.springframework.data.mapping.Alias
-
Create an
Alias
given the
alias
object.
- of(MappingContext<?, ?>...) - Static method in class org.springframework.data.mapping.context.PersistentEntities
-
- of(TypeInformation<?>, Field) - Static method in class org.springframework.data.mapping.model.Property
-
Creates a new
Property
backed by the given field.
- of(TypeInformation<?>, Field, PropertyDescriptor) - Static method in class org.springframework.data.mapping.model.Property
-
- of(TypeInformation<?>, PropertyDescriptor) - Static method in class org.springframework.data.mapping.model.Property
-
- of(int, int) - Static method in class org.springframework.data.querydsl.QPageRequest
-
- of(int, int, OrderSpecifier<?>...) - Static method in class org.springframework.data.querydsl.QPageRequest
-
Creates a new
QPageRequest
with the given
OrderSpecifier
s applied.
- of(int, int, QSort) - Static method in class org.springframework.data.querydsl.QPageRequest
-
- of(Method) - Static method in class org.springframework.data.repository.core.support.MethodLookup.InvokedMethod
-
- of(RepositoryFragment<?>...) - Static method in class org.springframework.data.repository.core.support.RepositoryComposition
-
- of(List<RepositoryFragment<?>>) - Static method in class org.springframework.data.repository.core.support.RepositoryComposition
-
- of(RepositoryComposition.RepositoryFragments) - Static method in class org.springframework.data.repository.core.support.RepositoryComposition
-
- of(RepositoryFragment<?>...) - Static method in class org.springframework.data.repository.core.support.RepositoryComposition.RepositoryFragments
-
- of(BiFunction<Integer, String, String>, BiFunction<String, String, String>) - Static method in class org.springframework.data.repository.query.SpelQueryContext
-
- of(Collection<ExpressionDependencies.ExpressionDependency>) - Static method in class org.springframework.data.spel.ExpressionDependencies
-
- of(Supplier<? extends T>) - Static method in class org.springframework.data.util.Lazy
-
Creates a new
Lazy
to produce an object lazily.
- of(T) - Static method in class org.springframework.data.util.Lazy
-
Creates a new
Lazy
to return the given value.
- of(S, T) - Static method in class org.springframework.data.util.Pair
-
Creates a new
Pair
for the given elements.
- of(List<TypeDescriptor>) - Static method in class org.springframework.data.util.ParameterTypes
-
- of(T...) - Static method in interface org.springframework.data.util.Streamable
-
- of(Iterable<T>) - Static method in interface org.springframework.data.util.Streamable
-
- of(Supplier<? extends Stream<T>>) - Static method in interface org.springframework.data.util.Streamable
-
- ofNullable(Object) - Static method in class org.springframework.data.mapping.Alias
-
Create an
Alias
from a possibly present
alias
object.
- ofSize(int) - Static method in interface org.springframework.data.domain.Pageable
-
Creates a new
Pageable
for the first page (page number
0
) given
pageSize
.
- ofSize(int) - Static method in class org.springframework.data.domain.PageRequest
-
Creates a new
PageRequest
for the first page (page number
0
) given
pageSize
.
- ofSize(int) - Static method in class org.springframework.data.querydsl.QPageRequest
-
Creates a new
QPageRequest
for the first page (page number
0
) given
pageSize
.
- onApplicationEvent(ContextRefreshedEvent) - Method in class org.springframework.data.repository.init.AbstractRepositoryPopulatorFactoryBean
-
- onCreation(T) - Method in interface org.springframework.data.repository.core.support.QueryCreationListener
-
- one() - Method in interface org.springframework.data.repository.query.FluentQuery.FetchableFluentQuery
-
Get exactly zero or one result.
- one() - Method in interface org.springframework.data.repository.query.FluentQuery.ReactiveFluentQuery
-
Get exactly zero or one result.
- oneValue() - Method in interface org.springframework.data.repository.query.FluentQuery.FetchableFluentQuery
-
Get exactly zero or one result.
- open(T, T) - Static method in class org.springframework.data.domain.Range
-
Creates a new
Range
with exclusive bounds for both values.
- Optionals - Interface in org.springframework.data.util
-
- OptionalValueBinding<T extends com.querydsl.core.types.Path<? extends S>,S> - Interface in org.springframework.data.querydsl.binding
-
- or(S, S) - Method in class org.springframework.data.repository.query.parser.AbstractQueryCreator
-
Or-concatenates the given base criteria to the given new criteria.
- or(Supplier<? extends T>) - Method in class org.springframework.data.util.Lazy
-
Returns a new Lazy that will consume the given supplier in case the current one does not yield in a result.
- or(T) - Method in class org.springframework.data.util.Lazy
-
Returns a new Lazy that will return the given value in case the current one does not yield in a result.
- Order(Sort.Direction, String) - Constructor for class org.springframework.data.domain.Sort.Order
-
- Order(Sort.Direction, String, Sort.NullHandling) - Constructor for class org.springframework.data.domain.Sort.Order
-
- OrderAdapter - Class in org.springframework.data.domain.jaxb
-
- OrderAdapter() - Constructor for class org.springframework.data.domain.jaxb.OrderAdapter
-
- OrderDto() - Constructor for class org.springframework.data.domain.jaxb.SpringDataJaxb.OrderDto
-
- orElse(T) - Method in class org.springframework.data.util.Lazy
-
Returns the value of the lazy computation or the given default value in case the computation yields
null.
- org.springframework.data.annotation - package org.springframework.data.annotation
-
Core annotations being used by Spring Data.
- org.springframework.data.auditing - package org.springframework.data.auditing
-
General support for entity auditing.
- org.springframework.data.auditing.config - package org.springframework.data.auditing.config
-
Types to abstract authentication concepts.
- org.springframework.data.config - package org.springframework.data.config
-
Basic support for creating custom Spring namespaces and JavaConfig.
- org.springframework.data.convert - package org.springframework.data.convert
-
General purpose conversion framework to read objects from a data store abstraction and write it back.
- org.springframework.data.crossstore - package org.springframework.data.crossstore
-
Support for cross-store persistence.
- org.springframework.data.domain - package org.springframework.data.domain
-
Central domain abstractions especially to be used in combination with the
Repository
abstraction.
- org.springframework.data.domain.jaxb - package org.springframework.data.domain.jaxb
-
Central domain abstractions especially to be used in combination with the
Repository
abstraction.
- org.springframework.data.geo - package org.springframework.data.geo
-
Value types representing geo-spatial concepts.
- org.springframework.data.geo.format - package org.springframework.data.geo.format
-
Formatters for geo-spatial types.
- org.springframework.data.history - package org.springframework.data.history
-
Basic interfaces and value objects for histography API.
- org.springframework.data.mapping - package org.springframework.data.mapping
-
Base package for the mapping subsystem.
- org.springframework.data.mapping.callback - package org.springframework.data.mapping.callback
-
Mapping callback API and implementation base classes.
- org.springframework.data.mapping.context - package org.springframework.data.mapping.context
-
Mapping context API and implementation base classes.
- org.springframework.data.mapping.model - package org.springframework.data.mapping.model
-
Core implementation of the mapping subsystem's model.
- org.springframework.data.projection - package org.springframework.data.projection
-
Projection subsystem.
- org.springframework.data.querydsl - package org.springframework.data.querydsl
-
Querydsl integration support classes.
- org.springframework.data.querydsl.binding - package org.springframework.data.querydsl.binding
-
Base classes to implement CDI support for repositories.
- org.springframework.data.repository - package org.springframework.data.repository
-
Central interfaces for repository abstraction.
- org.springframework.data.repository.cdi - package org.springframework.data.repository.cdi
-
Base classes to implement CDI support for repositories.
- org.springframework.data.repository.config - package org.springframework.data.repository.config
-
Support classes for repository namespace and JavaConfig integration.
- org.springframework.data.repository.core - package org.springframework.data.repository.core
-
Core abstractions for repository implementation.
- org.springframework.data.repository.core.support - package org.springframework.data.repository.core.support
-
Base classes to implement repositories for various data stores.
- org.springframework.data.repository.history - package org.springframework.data.repository.history
-
API for repositories using historiography.
- org.springframework.data.repository.history.support - package org.springframework.data.repository.history.support
-
Value objects to implement core repository interfaces for historiography.
- org.springframework.data.repository.init - package org.springframework.data.repository.init
-
Support for repository initialization using XML and JSON.
- org.springframework.data.repository.kotlin - package org.springframework.data.repository.kotlin
-
Support for Kotlin Coroutines repositories.
- org.springframework.data.repository.query - package org.springframework.data.repository.query
-
Support classes to work with query methods.
- org.springframework.data.repository.query.parser - package org.springframework.data.repository.query.parser
-
Support classes for parsing queries from method names.
- org.springframework.data.repository.reactive - package org.springframework.data.repository.reactive
-
Support for reactive repositories.
- org.springframework.data.repository.support - package org.springframework.data.repository.support
-
Support classes for integration of the repository programming model with 3rd party frameworks.
- org.springframework.data.repository.util - package org.springframework.data.repository.util
-
Utility classes for repository implementations.
- org.springframework.data.spel - package org.springframework.data.spel
-
- org.springframework.data.spel.spi - package org.springframework.data.spel.spi
-
Service provider interfaces to extend the query execution mechanism.
- org.springframework.data.support - package org.springframework.data.support
-
Core support classes.
- org.springframework.data.transaction - package org.springframework.data.transaction
-
Contains advanced support for transactions, e.g. a best-effort delegating transaction manager.
- org.springframework.data.type - package org.springframework.data.type
-
Core support package for type introspection.
- org.springframework.data.type.classreading - package org.springframework.data.type.classreading
-
Support classes for reading annotation and class-level metadata.
- org.springframework.data.util - package org.springframework.data.util
-
Core utility APIs such as a type information framework to resolve generic types.
- org.springframework.data.web - package org.springframework.data.web
-
Integration with Spring MVC.
- org.springframework.data.web.config - package org.springframework.data.web.config
-
Spring Data web configuration.
- org.springframework.data.web.querydsl - package org.springframework.data.web.querydsl
-
Querydsl-specific web support.
- save(S) - Method in interface org.springframework.data.repository.CrudRepository
-
Saves a given entity.
- save(S) - Method in interface org.springframework.data.repository.reactive.ReactiveCrudRepository
-
Saves a given entity.
- save(S) - Method in interface org.springframework.data.repository.reactive.RxJava2CrudRepository
-
Deprecated.
Saves a given entity.
- save(S) - Method in interface org.springframework.data.repository.reactive.RxJava3CrudRepository
-
Saves a given entity.
- saveAll(Iterable<S>) - Method in interface org.springframework.data.repository.CrudRepository
-
Saves all given entities.
- saveAll(Iterable<S>) - Method in interface org.springframework.data.repository.reactive.ReactiveCrudRepository
-
Saves all given entities.
- saveAll(Publisher<S>) - Method in interface org.springframework.data.repository.reactive.ReactiveCrudRepository
-
Saves all given entities.
- saveAll(Iterable<S>) - Method in interface org.springframework.data.repository.reactive.RxJava2CrudRepository
-
Deprecated.
Saves all given entities.
- saveAll(Flowable<S>) - Method in interface org.springframework.data.repository.reactive.RxJava2CrudRepository
-
Deprecated.
Saves all given entities.
- saveAll(Iterable<S>) - Method in interface org.springframework.data.repository.reactive.RxJava3CrudRepository
-
Saves all given entities.
- saveAll(Flowable<S>) - Method in interface org.springframework.data.repository.reactive.RxJava3CrudRepository
-
Saves all given entities.
- selectImports(AnnotationMetadata) - Method in class org.springframework.data.web.config.EnableSpringDataWebSupport.QuerydslActivator
-
- selectImports(AnnotationMetadata) - Method in class org.springframework.data.web.config.EnableSpringDataWebSupport.SpringDataWebConfigurationImportSelector
-
- set(String, Object) - Method in interface org.springframework.data.crossstore.ChangeSet
-
- set(String, Object) - Method in class org.springframework.data.crossstore.HashMapChangeSet
-
- SET - Static variable in class org.springframework.data.util.ClassTypeInformation
-
- setApplicationContext(ApplicationContext) - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
- setApplicationContext(ApplicationContext) - Method in class org.springframework.data.querydsl.binding.QuerydslBindingsFactory
-
- setApplicationContext(ApplicationContext) - Method in class org.springframework.data.repository.init.AbstractRepositoryPopulatorFactoryBean
-
- setApplicationContext(ApplicationContext) - Method in class org.springframework.data.repository.support.DomainClassConverter
-
- setApplicationEventPublisher(ApplicationEventPublisher) - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
- setApplicationEventPublisher(ApplicationEventPublisher) - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
- setApplicationEventPublisher(ApplicationEventPublisher) - Method in class org.springframework.data.repository.init.ResourceReaderRepositoryPopulator
-
- setAuditorAware(AuditorAware<?>) - Method in class org.springframework.data.auditing.AuditingHandler
-
Setter to inject a AuditorAware
component to retrieve the current auditor.
- setAuditorAware(ReactiveAuditorAware<?>) - Method in class org.springframework.data.auditing.ReactiveAuditingHandler
-
- setBeanClassLoader(ClassLoader) - Method in class org.springframework.data.convert.DefaultTypeMapper
-
- setBeanClassLoader(ClassLoader) - Method in class org.springframework.data.convert.SimpleTypeInformationMapper
-
- setBeanClassLoader(ClassLoader) - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
- setBeanClassLoader(ClassLoader) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- setBeanClassLoader(ClassLoader) - Method in class org.springframework.data.web.config.SpringDataWebConfiguration
-
- setBeanClassLoader(ClassLoader) - Method in class org.springframework.data.web.ProjectingJackson2HttpMessageConverter
-
- setBeanClassLoader(ClassLoader) - Method in class org.springframework.data.web.ProxyingHandlerMethodArgumentResolver
-
- setBeanFactory(BeanFactory) - Method in class org.springframework.data.projection.SpelAwareProxyProjectionFactory
-
- setBeanFactory(BeanFactory) - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
- setBeanFactory(BeanFactory) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- setBeanFactory(BeanFactory) - Method in class org.springframework.data.repository.core.support.RepositoryFragmentsFactoryBean
-
- setBeanFactory(BeanFactory) - Method in class org.springframework.data.repository.core.support.TransactionalRepositoryFactoryBeanSupport
-
- setBeanFactory(BeanFactory) - Method in class org.springframework.data.web.ProjectingJackson2HttpMessageConverter
-
- setBeanFactory(BeanFactory) - Method in class org.springframework.data.web.ProxyingHandlerMethodArgumentResolver
-
- setCreatedBy(Object) - Method in interface org.springframework.data.auditing.AuditableBeanWrapper
-
Set the creator of the object.
- setCreatedBy(U) - Method in interface org.springframework.data.domain.Auditable
-
Sets the user who created this entity.
- setCreatedDate(TemporalAccessor) - Method in interface org.springframework.data.auditing.AuditableBeanWrapper
-
Set the date the object was created.
- setCreatedDate(T) - Method in interface org.springframework.data.domain.Auditable
-
Sets the creation date of the entity.
- setCustomImplementation(Object) - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
Setter to inject a custom repository implementation.
- setDateTimeForNow(boolean) - Method in class org.springframework.data.auditing.AuditingHandlerSupport
-
- setDateTimeProvider(DateTimeProvider) - Method in class org.springframework.data.auditing.AuditingHandlerSupport
-
- setEnableDefaultTransactions(boolean) - Method in class org.springframework.data.repository.core.support.TransactionalRepositoryFactoryBeanSupport
-
Configures whether to enable the default transactions configured at the repository base implementation class.
- setEnvironment(Environment) - Method in class org.springframework.data.repository.config.RepositoryBeanDefinitionRegistrarSupport
-
- setEnvironment(Environment) - Method in class org.springframework.data.util.AnnotatedTypeScanner
-
- setEvaluationContextProvider(EvaluationContextProvider) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- setEvaluationContextProvider(EvaluationContextProvider) - Method in interface org.springframework.data.mapping.model.MutablePersistentEntity
-
- setEvaluationContextProvider(QueryMethodEvaluationContextProvider) - Method in class org.springframework.data.repository.core.support.ReactiveRepositoryFactorySupport
-
- setEvaluationContextProvider(QueryMethodEvaluationContextProvider) - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
- setEvaluationContextProvider(QueryMethodEvaluationContextProvider) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- setFallbackPageable(Pageable) - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
Configures the
Pageable
to be used as fallback in case no
PageableDefault
can be found at the
method parameter to be resolved.
- setFallbackSort(Sort) - Method in class org.springframework.data.web.SortHandlerMethodArgumentResolverSupport
-
- setField(Field, Object, Object) - Static method in class org.springframework.data.util.ReflectionUtils
-
Sets the given field on the given object to the given value.
- setForceFirstAndLastRels(boolean) - Method in class org.springframework.data.web.PagedResourcesAssembler
-
Configures whether to always add first
and last
links to the PagedModel
created.
- setInitialEntitySet(Set<? extends Class<?>>) - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
Sets the
Set
of types to populate the context initially.
- setLastModifiedBy(Object) - Method in interface org.springframework.data.auditing.AuditableBeanWrapper
-
Set the last modifier of the object.
- setLastModifiedBy(U) - Method in interface org.springframework.data.domain.Auditable
-
Sets the user who modified the entity lastly.
- setLastModifiedDate(TemporalAccessor) - Method in interface org.springframework.data.auditing.AuditableBeanWrapper
-
Set the last modification date.
- setLastModifiedDate(T) - Method in interface org.springframework.data.domain.Auditable
-
Sets the date of the last modification.
- setLazyInit(boolean) - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
Configures whether to initialize the repository proxy lazily.
- setLocations(String) - Method in class org.springframework.data.repository.config.NamedQueriesBeanDefinitionBuilder
-
Sets the (comma-separated) locations to load the properties files from to back the
NamedQueries
instance.
- setMapper(ObjectMapper) - Method in class org.springframework.data.repository.init.Jackson2RepositoryPopulatorFactoryBean
-
Configures the ObjectMapper
to be used.
- setMappingContext(MappingContext<?, ?>) - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
- setMaxPageSize(int) - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
Configures the maximum page size to be accepted.
- setModifyOnCreation(boolean) - Method in class org.springframework.data.auditing.AuditingHandlerSupport
-
Set this to true if you want to treat entity creation as modification and thus setting the current date as
modification date during creation, too.
- setNamedQueries(NamedQueries) - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
- setNamedQueries(NamedQueries) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- setOneIndexedParameters(boolean) - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
Configures whether to expose and assume 1-based page number indexes in the request parameters.
- SetOptions(AccessOptions.SetOptions.SetNulls, AccessOptions.SetOptions.Propagation, AccessOptions.SetOptions.Propagation) - Constructor for class org.springframework.data.mapping.AccessOptions.SetOptions
-
- setPageParameterName(String) - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
Configures the parameter name to be used to find the page number in the request.
- setPersistentPropertyAccessorFactory(PersistentPropertyAccessorFactory) - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- setPersistentPropertyAccessorFactory(PersistentPropertyAccessorFactory) - Method in interface org.springframework.data.mapping.model.MutablePersistentEntity
-
- setPrefix(String) - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
Configures a general prefix to be prepended to the page number and page size parameters.
- setProperty(PersistentProperty<?>, Object) - Method in class org.springframework.data.mapping.model.ConvertingPropertyAccessor
-
- setProperty(PersistentPropertyPath<? extends PersistentProperty<?>>, Object) - Method in class org.springframework.data.mapping.model.ConvertingPropertyAccessor
-
- setProperty(PersistentProperty<?>, Object) - Method in class org.springframework.data.mapping.model.InstantiationAwarePropertyAccessor
-
- setProperty(PersistentProperty<?>, Object) - Method in interface org.springframework.data.mapping.PersistentPropertyAccessor
-
- setProperty(PersistentPropertyPath<? extends PersistentProperty<?>>, Object) - Method in interface org.springframework.data.mapping.PersistentPropertyAccessor
-
- setProperty(PersistentPropertyPath<? extends PersistentProperty<?>>, Object) - Method in interface org.springframework.data.mapping.PersistentPropertyPathAccessor
-
- setProperty(PersistentPropertyPath<? extends PersistentProperty<?>>, Object, AccessOptions.SetOptions) - Method in interface org.springframework.data.mapping.PersistentPropertyPathAccessor
-
- setPropertyDelimiter(String) - Method in class org.springframework.data.web.SortHandlerMethodArgumentResolverSupport
-
Configures the delimiter used to separate property references and the direction to be sorted by.
- setPropertyReference(BeanDefinitionBuilder, Element, String, String) - Static method in class org.springframework.data.config.ParsingUtils
-
Configures a bean property reference with the value of the attribute of the given name if it is configured.
- setPropertyValue(BeanDefinitionBuilder, Element, String, String) - Static method in class org.springframework.data.config.ParsingUtils
-
Configures a property value for the given property name reading the attribute of the given name from the given
Element
if the attribute is configured.
- setPropertyValue(BeanDefinitionBuilder, Element, String) - Static method in class org.springframework.data.config.ParsingUtils
-
Sets the property with the given attribute name on the given
BeanDefinitionBuilder
to the value of the
attribute with the given name if the attribute is configured.
- setPropertyValue(String, Object) - Method in class org.springframework.data.util.DirectFieldAccessFallbackBeanWrapper
-
- setQualifierDelimiter(String) - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
The delimiter to be used between the qualifier and the actual page number and size properties.
- setQualifierDelimiter(String) - Method in class org.springframework.data.web.SortHandlerMethodArgumentResolverSupport
-
Configures the delimiter used to separate the qualifier from the sort parameter.
- setQueryLookupStrategyKey(QueryLookupStrategy.Key) - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
Set the QueryLookupStrategy.Key
to be used.
- setQueryLookupStrategyKey(QueryLookupStrategy.Key) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
Sets the strategy of how to lookup a query to execute finders.
- setRepositoryBaseClass(Class<?>) - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
Configures the repository base class to be used.
- setRepositoryBaseClass(Class<?>) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
Configures the repository base class to use when creating the repository proxy.
- setRepositoryFragments(RepositoryComposition.RepositoryFragments) - Method in class org.springframework.data.repository.core.support.RepositoryFactoryBeanSupport
-
Setter to inject repository fragments.
- setResourceLoader(ResourceLoader) - Method in class org.springframework.data.repository.config.RepositoryBeanDefinitionRegistrarSupport
-
- setResourceLoader(ResourceLoader) - Method in class org.springframework.data.util.AnnotatedTypeScanner
-
- setResourceLoader(ResourceLoader) - Method in class org.springframework.data.web.config.EnableSpringDataWebSupport.SpringDataWebConfigurationImportSelector
-
- setResourceLocation(String) - Method in class org.springframework.data.repository.init.ResourceReaderRepositoryPopulator
-
Configures the location of the
Resource
s to be used to initialize the repositories.
- setResources(Resource[]) - Method in class org.springframework.data.repository.init.AbstractRepositoryPopulatorFactoryBean
-
Configures the
Resource
s to be used to load objects from and initialize the repositories eventually.
- setResources(Resource...) - Method in class org.springframework.data.repository.init.ResourceReaderRepositoryPopulator
-
Configures the
Resource
s to be used to initialize the repositories.
- setSimpleTypeHolder(SimpleTypeHolder) - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
- setSizeParameterName(String) - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolverSupport
-
Configures the parameter name to be used to find the page size in the request.
- setSortParameter(String) - Method in class org.springframework.data.web.SortHandlerMethodArgumentResolverSupport
-
propertyDel Configure the request parameter to lookup sort information from.
- setStrict(boolean) - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
- setTransactionManager(String) - Method in class org.springframework.data.repository.core.support.TransactionalRepositoryFactoryBeanSupport
-
Setter to configure which transaction manager to be used.
- setTypeKey(String) - Method in class org.springframework.data.repository.init.Jackson2ResourceReader
-
Configures the JSON document's key to lookup the type to instantiate the object.
- setUnmarshaller(Unmarshaller) - Method in class org.springframework.data.repository.init.UnmarshallerRepositoryPopulatorFactoryBean
-
- Shape - Interface in org.springframework.data.geo
-
Common interface for all shapes.
- shouldConsiderNestedRepositories() - Method in class org.springframework.data.repository.config.AnnotationRepositoryConfigurationSource
-
- shouldConsiderNestedRepositories() - Method in class org.springframework.data.repository.config.RepositoryConfigurationSourceSupport
-
Returns whether we should consider nested repositories, i.e. repository interface definitions nested in other
classes.
- shouldConsiderNestedRepositories() - Method in class org.springframework.data.repository.config.XmlRepositoryConfigurationSource
-
- shouldCreatePersistentEntityFor(TypeInformation<?>) - Method in class org.springframework.data.mapping.context.AbstractMappingContext
-
- shouldGenerateId() - Method in class org.springframework.data.auditing.config.AuditingHandlerBeanDefinitionParser
-
- shouldGenerateIdAsFallback() - Method in class org.springframework.data.repository.config.ResourceReaderRepositoryPopulatorBeanDefinitionParser
-
- shouldIgnoreCase() - Method in class org.springframework.data.repository.query.parser.Part
-
Returns whether the
PropertyPath
referenced should be matched ignoring case.
- SimpleAssociationHandler - Interface in org.springframework.data.mapping
-
- SimpleEntityPathResolver - Class in org.springframework.data.querydsl
-
Simple implementation of
EntityPathResolver
to lookup a query class by reflection and using the static field
of the same type.
- SimpleEntityPathResolver(String) - Constructor for class org.springframework.data.querydsl.SimpleEntityPathResolver
-
- SimplePropertyHandler - Interface in org.springframework.data.mapping
-
- SimpleTypeHolder - Class in org.springframework.data.mapping.model
-
Simple container to hold a set of types to be considered simple types.
- SimpleTypeHolder() - Constructor for class org.springframework.data.mapping.model.SimpleTypeHolder
-
- SimpleTypeHolder(Set<? extends Class<?>>, boolean) - Constructor for class org.springframework.data.mapping.model.SimpleTypeHolder
-
- SimpleTypeHolder(Set<? extends Class<?>>, SimpleTypeHolder) - Constructor for class org.springframework.data.mapping.model.SimpleTypeHolder
-
Copy constructor to create a new
SimpleTypeHolder
that carries the given additional custom simple types.
- SimpleTypeInformationMapper - Class in org.springframework.data.convert
-
- SimpleTypeInformationMapper() - Constructor for class org.springframework.data.convert.SimpleTypeInformationMapper
-
- singleValue(Class<?>) - Static method in class org.springframework.data.repository.util.QueryExecutionConverters.WrapperType
-
- SingleValueBinding<T extends com.querydsl.core.types.Path<? extends S>,S> - Interface in org.springframework.data.querydsl.binding
-
- size() - Method in class org.springframework.data.repository.core.support.RepositoryComposition.RepositoryFragments
-
- skipAndLogNulls() - Method in class org.springframework.data.mapping.AccessOptions.SetOptions
-
Returns a new
AccessOptions
that will cause paths that contain null values to be skipped when
setting a property but a log message produced in TRACE level.
- skipNulls() - Method in class org.springframework.data.mapping.AccessOptions.SetOptions
-
Returns a new
AccessOptions
that will cause paths that contain null values to be skipped when
setting a property.
- Slice<T> - Interface in org.springframework.data.domain
-
A slice of data that indicates whether there's a next or previous slice available.
- SliceImpl<T> - Class in org.springframework.data.domain
-
Default implementation of
Slice
.
- SliceImpl(List<T>, Pageable, boolean) - Constructor for class org.springframework.data.domain.SliceImpl
-
- SliceImpl(List<T>) - Constructor for class org.springframework.data.domain.SliceImpl
-
Creates a new
SliceImpl
with the given content.
- SnakeCaseFieldNamingStrategy - Class in org.springframework.data.mapping.model
-
FieldNamingStrategy
that translates typical camel case Java property names to lower case JSON element names,
separated by underscores.
- SnakeCaseFieldNamingStrategy() - Constructor for class org.springframework.data.mapping.model.SnakeCaseFieldNamingStrategy
-
- Sort - Class in org.springframework.data.domain
-
Sort option for queries.
- Sort(List<Sort.Order>) - Constructor for class org.springframework.data.domain.Sort
-
- sort(Class<T>) - Static method in class org.springframework.data.domain.Sort
-
- Sort.Direction - Enum in org.springframework.data.domain
-
Enumeration for sort directions.
- Sort.NullHandling - Enum in org.springframework.data.domain
-
Enumeration for null handling hints that can be used in
Sort.Order
expressions.
- Sort.Order - Class in org.springframework.data.domain
-
PropertyPath implements the pairing of an
Sort.Direction
and a property.
- Sort.TypedSort<T> - Class in org.springframework.data.domain
-
Extension of Sort to use method handles to define properties to sort by.
- SortAdapter - Class in org.springframework.data.domain.jaxb
-
- SortAdapter() - Constructor for class org.springframework.data.domain.jaxb.SortAdapter
-
- SortArgumentResolver - Interface in org.springframework.data.web
-
- sortBy(Sort) - Method in interface org.springframework.data.repository.query.FluentQuery.FetchableFluentQuery
-
- sortBy(Sort) - Method in interface org.springframework.data.repository.query.FluentQuery.ReactiveFluentQuery
-
- sortBy(Sort) - Method in interface org.springframework.data.repository.query.FluentQuery
-
Define the sort order.
- SortDefault - Annotation Type in org.springframework.data.web
-
Annotation to define the default
Sort
options to be used when injecting a
Sort
instance into a
controller handler method.
- SortDefault.SortDefaults - Annotation Type in org.springframework.data.web
-
Wrapper annotation to allow declaring multiple
SortDefault
annotations on a method parameter.
- SortDto() - Constructor for class org.springframework.data.domain.jaxb.SpringDataJaxb.SortDto
-
- SortHandlerMethodArgumentResolver - Class in org.springframework.data.web
-
- SortHandlerMethodArgumentResolver() - Constructor for class org.springframework.data.web.SortHandlerMethodArgumentResolver
-
- SortHandlerMethodArgumentResolverCustomizer - Interface in org.springframework.data.web.config
-
- SortHandlerMethodArgumentResolverSupport - Class in org.springframework.data.web
-
Base class providing methods for handler method argument resolvers to create
Sort
instances from request
parameters or
SortDefault
annotations.
- SortHandlerMethodArgumentResolverSupport() - Constructor for class org.springframework.data.web.SortHandlerMethodArgumentResolverSupport
-
- sortResolver() - Method in class org.springframework.data.web.config.HateoasAwareSpringDataWebConfiguration
-
- sortResolver() - Method in class org.springframework.data.web.config.SpringDataWebConfiguration
-
- specialize(ClassTypeInformation<?>) - Method in class org.springframework.data.util.ClassTypeInformation
-
- specialize(ClassTypeInformation<?>) - Method in interface org.springframework.data.util.TypeInformation
-
Specializes the given (raw)
ClassTypeInformation
using the context of the current potentially parameterized
type, basically turning the given raw type into a parameterized one.
- SpelAwareProjectionInformation(Class<?>) - Constructor for class org.springframework.data.projection.SpelAwareProxyProjectionFactory.SpelAwareProjectionInformation
-
- SpelAwareProxyProjectionFactory - Class in org.springframework.data.projection
-
A
ProxyProjectionFactory
that adds support to use
Value
-annotated methods on a projection interface
to evaluate the contained SpEL expression to define the outcome of the method call.
- SpelAwareProxyProjectionFactory() - Constructor for class org.springframework.data.projection.SpelAwareProxyProjectionFactory
-
- SpelAwareProxyProjectionFactory.SpelAwareProjectionInformation - Class in org.springframework.data.projection
-
- SpELContext - Class in org.springframework.data.mapping.model
-
- SpELContext(PropertyAccessor) - Constructor for class org.springframework.data.mapping.model.SpELContext
-
- SpELContext(SpelExpressionParser, PropertyAccessor) - Constructor for class org.springframework.data.mapping.model.SpELContext
-
- SpELContext(SpELContext, BeanFactory) - Constructor for class org.springframework.data.mapping.model.SpELContext
-
- SpelEvaluator - Class in org.springframework.data.repository.query
-
Evaluates SpEL expressions as extracted by the
SpelQueryContext.SpelExtractor
based on parameter information from a method and
parameter values from a method call.
- SpelEvaluator(QueryMethodEvaluationContextProvider, Parameters<?, ?>, SpelQueryContext.SpelExtractor) - Constructor for class org.springframework.data.repository.query.SpelEvaluator
-
- SpELExpressionEvaluator - Interface in org.springframework.data.mapping.model
-
SPI for components that can evaluate Spring EL expressions.
- SpELExpressionParameterValueProvider<P extends PersistentProperty<P>> - Class in org.springframework.data.mapping.model
-
- SpELExpressionParameterValueProvider(SpELExpressionEvaluator, ConversionService, ParameterValueProvider<P>) - Constructor for class org.springframework.data.mapping.model.SpELExpressionParameterValueProvider
-
- SpelQueryContext - Class in org.springframework.data.repository.query
-
- SpelQueryContext.EvaluatingSpelQueryContext - Class in org.springframework.data.repository.query
-
- SpelQueryContext.SpelExtractor - Class in org.springframework.data.repository.query
-
Parses a query string, identifies the contained SpEL expressions, replaces them with bind parameters and offers a
Map
from those bind parameters to the SpEL expression.
- splitCamelCase(String) - Static method in class org.springframework.data.util.ParsingUtils
-
Splits up the given camel-case
String
.
- splitCamelCaseToLower(String) - Static method in class org.springframework.data.util.ParsingUtils
-
Splits up the given camel-case
String
and returns the parts in lower case.
- spliterator() - Method in interface org.springframework.data.util.CloseableIterator
-
- SpringDataJacksonConfiguration - Class in org.springframework.data.web.config
-
JavaConfig class to export Jackson specific configuration.
- SpringDataJacksonConfiguration() - Constructor for class org.springframework.data.web.config.SpringDataJacksonConfiguration
-
- SpringDataJacksonModules - Interface in org.springframework.data.web.config
-
Marker interface to describe configuration classes that ship Jackson modules that are supposed to be added to the
Jackson
ObjectMapper
configured for
EnableSpringDataWebSupport
.
- SpringDataJaxb - Class in org.springframework.data.domain.jaxb
-
Helper class containing utility methods to implement JAXB
XmlAdapter
s as well as the DTO types to be
marshalled by JAXB.
- SpringDataJaxb.OrderDto - Class in org.springframework.data.domain.jaxb
-
- SpringDataJaxb.PageDto - Class in org.springframework.data.domain.jaxb
-
- SpringDataJaxb.PageRequestDto - Class in org.springframework.data.domain.jaxb
-
- SpringDataJaxb.SortDto - Class in org.springframework.data.domain.jaxb
-
- SpringDataWebConfiguration - Class in org.springframework.data.web.config
-
- SpringDataWebConfiguration(ApplicationContext, ObjectFactory<ConversionService>) - Constructor for class org.springframework.data.web.config.SpringDataWebConfiguration
-
- SpringDataWebConfigurationImportSelector() - Constructor for class org.springframework.data.web.config.EnableSpringDataWebSupport.SpringDataWebConfigurationImportSelector
-
- startsWith() - Method in class org.springframework.data.domain.ExampleMatcher.GenericPropertyMatcher
-
- startsWith() - Static method in class org.springframework.data.domain.ExampleMatcher.GenericPropertyMatchers
-
- storeDefaultMatching() - Method in class org.springframework.data.domain.ExampleMatcher.GenericPropertyMatcher
-
- storeDefaultMatching() - Static method in class org.springframework.data.domain.ExampleMatcher.GenericPropertyMatchers
-
- stream() - Method in interface org.springframework.data.repository.query.FluentQuery.FetchableFluentQuery
-
Stream all matching elements.
- stream() - Method in interface org.springframework.data.util.CloseableIterator
-
Return a sequential
Stream
with this
Iterator
as its source.
- stream() - Method in interface org.springframework.data.util.Streamable
-
- Streamable<T> - Interface in org.springframework.data.util
-
Simple interface to ease streamability of
Iterable
s.
- StreamUtils - Interface in org.springframework.data.util
-
Spring Data specific Java
Stream
utility methods and classes.
- stringMatcher(ExampleMatcher.StringMatcher) - Method in class org.springframework.data.domain.ExampleMatcher.GenericPropertyMatcher
-
Sets string matcher to stringMatcher
.
- structural(Class<T>) - Static method in interface org.springframework.data.repository.core.support.RepositoryFragment
-
- StructuralRepositoryFragment(Class<T>) - Constructor for class org.springframework.data.repository.core.support.RepositoryFragment.StructuralRepositoryFragment
-
- supports(Class<?>) - Static method in class org.springframework.data.convert.Jsr310Converters
-
- supports(Class<?>) - Static method in class org.springframework.data.convert.ThreeTenBackPortConverters
-
Deprecated.
- supports(Object, Class<?>) - Method in interface org.springframework.data.projection.MethodInterceptorFactory
-
Returns whether the current factory is supposed to be used to create a
MethodInterceptor
for proxy of the
given target type.
- supports(Class<?>) - Static method in class org.springframework.data.repository.core.support.MethodInvocationValidator
-
Returns true if the repositoryInterface
is supported by this interceptor.
- supports(String) - Method in enum org.springframework.data.repository.query.parser.Part.Type
-
Returns whether the the type supports the given raw property.
- supports(Class<?>) - Static method in class org.springframework.data.repository.util.QueryExecutionConverters
-
Returns whether the given type is a supported wrapper type.
- supports(Class<?>) - Static method in class org.springframework.data.repository.util.ReactiveWrapperConverters
-
Returns whether the given type is supported for wrapper type conversion.
- supports(Class<?>) - Static method in class org.springframework.data.repository.util.ReactiveWrappers
-
Returns true if the type
is a supported reactive wrapper type.
- supports(List<TypeDescriptor>) - Method in class org.springframework.data.spel.spi.Function
-
Returns true if the function can be called with the given argumentTypes
.
- supports(Class<?>) - Static method in class org.springframework.data.util.NullableWrapperConverters
-
Returns whether the given type is a supported wrapper type.
- supports(Object, Class<?>) - Method in class org.springframework.data.web.JsonProjectingMethodInterceptorFactory
-
- supports(Class<?>) - Method in class org.springframework.data.web.XmlBeamHttpMessageConverter
-
- supportsExact(List<TypeDescriptor>) - Method in class org.springframework.data.spel.spi.Function
-
Checks if the encapsulated method has exactly the argument types as those passed as an argument.
- supportsParameter(MethodParameter) - Method in class org.springframework.data.web.PageableHandlerMethodArgumentResolver
-
- supportsParameter(MethodParameter) - Method in class org.springframework.data.web.PagedResourcesAssemblerArgumentResolver
-
- supportsParameter(MethodParameter) - Method in class org.springframework.data.web.ProxyingHandlerMethodArgumentResolver
-
- supportsParameter(MethodParameter) - Method in class org.springframework.data.web.querydsl.QuerydslPredicateArgumentResolverSupport
-
- supportsParameter(MethodParameter) - Method in class org.springframework.data.web.ReactivePageableHandlerMethodArgumentResolver
-
- supportsParameter(MethodParameter) - Method in class org.springframework.data.web.ReactiveSortHandlerMethodArgumentResolver
-
- supportsParameter(MethodParameter) - Method in class org.springframework.data.web.SortHandlerMethodArgumentResolver
-
- supportsStandalone(PropertyDescriptor) - Static method in class org.springframework.data.mapping.model.Property
-
- supportsUnwrapping(Class<?>) - Static method in class org.springframework.data.repository.util.QueryExecutionConverters
-
Returns whether the given wrapper type supports unwrapping.
- supportsUnwrapping(Class<?>) - Static method in class org.springframework.data.util.NullableWrapperConverters
-
Returns whether the given wrapper type supports unwrapping.
- SurroundingTransactionDetectorMethodInterceptor - Enum in org.springframework.data.repository.core.support
-
- suspend() - Method in class org.springframework.data.crossstore.ChangeSetBackedTransactionSynchronization
-
- validate(RepositoryMetadata) - Method in class org.springframework.data.repository.core.support.ReactiveRepositoryFactorySupport
-
- validate(RepositoryMetadata) - Method in class org.springframework.data.repository.core.support.RepositoryFactorySupport
-
- validateImplementation() - Method in class org.springframework.data.repository.core.support.RepositoryComposition
-
Validates that all
fragments
have an implementation.
- valueOf(String) - Static method in enum org.springframework.data.annotation.AccessType.Type
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.auditing.CurrentDateTimeProvider
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.config.TypeFilterParser.Type
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.CustomConversions.ConverterRegistrationIntent.ConverterOrigin
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.JodaTimeConverters.DateTimeToDateConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.JodaTimeConverters.DateToDateTimeConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.JodaTimeConverters.DateToLocalDateConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.JodaTimeConverters.DateToLocalDateTimeConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.JodaTimeConverters.InstantToJodaLocalDateTime
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.JodaTimeConverters.JodaLocalDateTimeToInstant
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.JodaTimeConverters.LocalDateTimeToDateConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.JodaTimeConverters.LocalDateTimeToJodaDateTime
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.JodaTimeConverters.LocalDateTimeToJodaLocalDateTime
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.JodaTimeConverters.LocalDateTimeToJsr310Converter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.JodaTimeConverters.LocalDateToDateConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.DateToInstantConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.DateToLocalDateConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.DateToLocalDateTimeConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.DateToLocalTimeConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.DurationToStringConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.InstantToDateConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.InstantToLocalDateTimeConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.LocalDateTimeToDateConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.LocalDateTimeToInstantConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.LocalDateToDateConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.LocalTimeToDateConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.PeriodToStringConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.StringToDurationConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.StringToInstantConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.StringToLocalDateConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.StringToLocalDateTimeConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.StringToPeriodConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.StringToZoneIdConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.Jsr310Converters.ZoneIdToStringConverter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ReflectionEntityInstantiator
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.DateToInstantConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.DateToLocalDateConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.DateToLocalDateTimeConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.DateToLocalTimeConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.InstantToDateConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.JavaTimeInstantToLocalDateTimeConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.LocalDateTimeToDateConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.LocalDateTimeToJavaTimeInstantConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.LocalDateTimeToJsr310LocalDateTimeConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.LocalDateToDateConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.LocalTimeToDateConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.StringToZoneIdConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.ZoneIdToStringConverter
-
Deprecated.
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.domain.ExampleMatcher.MatchMode
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.domain.ExampleMatcher.NoOpPropertyValueTransformer
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.domain.ExampleMatcher.NullHandler
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.domain.ExampleMatcher.StringMatcher
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.domain.Sort.Direction
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.domain.Sort.NullHandling
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.geo.format.DistanceFormatter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.geo.format.PointFormatter
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.geo.Metrics
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.history.RevisionMetadata.RevisionType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.mapping.AccessOptions.GetOptions.GetNulls
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.mapping.AccessOptions.SetOptions.Propagation
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.mapping.AccessOptions.SetOptions.SetNulls
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.mapping.model.BeanWrapperPropertyAccessorFactory
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.mapping.model.PreferredConstructorDiscoverer.Discoverers
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.mapping.model.PropertyNameFieldNamingStrategy
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.repository.config.BootstrapMode
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.repository.core.support.RepositoryMethodInvocationListener.RepositoryMethodInvocationResult.State
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.repository.init.ResourceReader.Type
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.repository.query.parser.Part.IgnoreCaseType
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.repository.query.parser.Part.Type
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.repository.query.QueryLookupStrategy.Key
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.repository.util.ReactiveWrappers.ReactiveLibrary
-
Returns the enum constant of this type with the specified name.
- valueOf(String) - Static method in enum org.springframework.data.support.PersistableIsNewStrategy
-
Returns the enum constant of this type with the specified name.
- values() - Static method in enum org.springframework.data.annotation.AccessType.Type
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.auditing.CurrentDateTimeProvider
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.config.TypeFilterParser.Type
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.CustomConversions.ConverterRegistrationIntent.ConverterOrigin
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.JodaTimeConverters.DateTimeToDateConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.JodaTimeConverters.DateToDateTimeConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.JodaTimeConverters.DateToLocalDateConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.JodaTimeConverters.DateToLocalDateTimeConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.JodaTimeConverters.InstantToJodaLocalDateTime
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.JodaTimeConverters.JodaLocalDateTimeToInstant
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.JodaTimeConverters.LocalDateTimeToDateConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.JodaTimeConverters.LocalDateTimeToJodaDateTime
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.JodaTimeConverters.LocalDateTimeToJodaLocalDateTime
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.JodaTimeConverters.LocalDateTimeToJsr310Converter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.JodaTimeConverters.LocalDateToDateConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.DateToInstantConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.DateToLocalDateConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.DateToLocalDateTimeConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.DateToLocalTimeConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.DurationToStringConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.InstantToDateConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.InstantToLocalDateTimeConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.LocalDateTimeToDateConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.LocalDateTimeToInstantConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.LocalDateToDateConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.LocalTimeToDateConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.PeriodToStringConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.StringToDurationConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.StringToInstantConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.StringToLocalDateConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.StringToLocalDateTimeConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.StringToPeriodConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.StringToZoneIdConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.Jsr310Converters.ZoneIdToStringConverter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ReflectionEntityInstantiator
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.DateToInstantConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.DateToLocalDateConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.DateToLocalDateTimeConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.DateToLocalTimeConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.InstantToDateConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.JavaTimeInstantToLocalDateTimeConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.LocalDateTimeToDateConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.LocalDateTimeToJavaTimeInstantConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.LocalDateTimeToJsr310LocalDateTimeConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.LocalDateToDateConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.LocalTimeToDateConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.StringToZoneIdConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.convert.ThreeTenBackPortConverters.ZoneIdToStringConverter
-
Deprecated.
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.domain.ExampleMatcher.MatchMode
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.domain.ExampleMatcher.NoOpPropertyValueTransformer
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.domain.ExampleMatcher.NullHandler
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.domain.ExampleMatcher.StringMatcher
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.domain.Sort.Direction
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.domain.Sort.NullHandling
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.geo.format.DistanceFormatter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.geo.format.PointFormatter
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.geo.Metrics
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.history.RevisionMetadata.RevisionType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.mapping.AccessOptions.GetOptions.GetNulls
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.mapping.AccessOptions.SetOptions.Propagation
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.mapping.AccessOptions.SetOptions.SetNulls
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.mapping.model.BeanWrapperPropertyAccessorFactory
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.mapping.model.PreferredConstructorDiscoverer.Discoverers
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.mapping.model.PropertyNameFieldNamingStrategy
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.repository.config.BootstrapMode
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.repository.core.support.RepositoryMethodInvocationListener.RepositoryMethodInvocationResult.State
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.repository.core.support.SurroundingTransactionDetectorMethodInterceptor
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.repository.init.ResourceReader.Type
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.repository.query.parser.Part.IgnoreCaseType
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.repository.query.parser.Part.Type
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.repository.query.QueryLookupStrategy.Key
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.repository.util.ReactiveWrappers.ReactiveLibrary
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- values() - Static method in enum org.springframework.data.support.PersistableIsNewStrategy
-
Returns an array containing the constants of this enum type, in
the order they are declared.
- verify() - Method in class org.springframework.data.mapping.model.BasicPersistentEntity
-
- verify() - Method in interface org.springframework.data.mapping.model.MutablePersistentEntity
-
- Version - Annotation Type in org.springframework.data.annotation
-
Demarcates a property to be used as version field to implement optimistic locking on entities.
- Version - Class in org.springframework.data.util
-
Value object to represent a Version consisting of major, minor and bugfix part.
- Version(int...) - Constructor for class org.springframework.data.util.Version
-
Creates a new
Version
from the given integer values.