Uses of Interface
org.springframework.data.util.Streamable
Package
Description
General purpose conversion framework to read objects from a data store abstraction and write it back.
Central domain abstractions especially to be used in combination with the
Repository
abstraction.Value types representing geo-spatial concepts.
Basic interfaces and value objects for histography API.
Base package for the mapping subsystem.
Mapping context API and implementation base classes.
Projection subsystem.
Querydsl integration support classes.
Support classes for repository namespace and JavaConfig integration.
Core abstractions for repository implementation.
Base classes to implement repositories for various data stores.
Support classes to work with query methods.
Support classes for parsing queries from method names.
Core utility APIs such as a type information framework to resolve generic types.
-
Uses of Streamable in org.springframework.data.convert
Modifier and TypeMethodDescriptionCustomConversions.StoreConversions.getRegistrationsFor
(Object converter) ReturnsCustomConversions.ConverterRegistration
s for the given converter. -
Uses of Streamable in org.springframework.data.domain
Modifier and TypeInterfaceDescriptioninterface
Page<T>
A page is a sublist of a list of objects.interface
Slice<T>
A slice of data that indicates whether there's a next or previous slice available.interface
Window<T>
A set of data consumed from an underlying query result. -
Uses of Streamable in org.springframework.data.geo
-
Uses of Streamable in org.springframework.data.history
Modifier and TypeClassDescriptionclass
Revisions<N extends Number & Comparable<N>,
T> class
A dedicatedSort
implementation that allows the definition of the ordering of revisions independently of the property name the revision number is held in. -
Uses of Streamable in org.springframework.data.mapping
Modifier and TypeInterfaceDescriptioninterface
PersistentPropertyPath<P extends PersistentProperty<P>>
Abstraction of a path ofPersistentProperty
s.interface
PersistentPropertyPaths<T,
P extends PersistentProperty<P>> A wrapper for a collection ofPersistentPropertyPath
s. -
Uses of Streamable in org.springframework.data.mapping.context
Modifier and TypeClassDescriptionclass
Value object to accessPersistentEntity
instances managed byMappingContext
s.Modifier and TypeMethodDescriptionPersistentEntities.getManagedTypes()
Returns allTypeInformation
exposed by the registeredMappingContext
s. -
Uses of Streamable in org.springframework.data.projection
Modifier and TypeClassDescriptionclass
EntityProjection<M,
D> Descriptor for a top-level mapped type representing a view onto a domain type structure.static class
Descriptor for a property-level type along its potential projection that is held within aCollection
-like orMap
-like container.static class
Descriptor for a property-level type along its potential projection. -
Uses of Streamable in org.springframework.data.querydsl
Modifier and TypeClassDescriptionclass
Sort option for queries that wraps a QuerydslOrderSpecifier
. -
Uses of Streamable in org.springframework.data.repository.config
Modifier and TypeMethodDescriptionAnnotationRepositoryConfigurationSource.getBasePackages()
DefaultRepositoryConfiguration.getBasePackages()
ImplementationDetectionConfiguration.getBasePackages()
Return the base packages to be scanned for implementation types.RepositoryConfiguration.getBasePackages()
Returns the base packages that the repository was scanned under.RepositoryConfigurationSource.getBasePackages()
Returns the base packages the repository interfaces shall be found under.XmlRepositoryConfigurationSource.getBasePackages()
RepositoryConfigurationSource.getCandidates
(ResourceLoader loader) Returns the sourceBeanDefinition
s of the repository interfaces to create repository instances for.RepositoryConfigurationSourceSupport.getCandidates
(ResourceLoader loader) AnnotationRepositoryConfigurationSource.getExcludeFilters()
DefaultRepositoryConfiguration.getExcludeFilters()
ImplementationDetectionConfiguration.getExcludeFilters()
Returns the exclude filters to be used for the implementation class scanning.RepositoryConfiguration.getExcludeFilters()
Returns theTypeFilter
s to be used to exclude packages from repository scanning.RepositoryConfigurationSource.getExcludeFilters()
Return theTypeFilter
s to define which types to exclude when scanning for repositories or repository implementations.RepositoryConfigurationSourceSupport.getExcludeFilters()
Return theTypeFilter
s to define which types to exclude when scanning for repositories.XmlRepositoryConfigurationSource.getExcludeFilters()
DefaultRepositoryConfiguration.getImplementationBasePackages()
RepositoryConfiguration.getImplementationBasePackages()
Returns the base packages to scan for repository implementations. -
Uses of Streamable in org.springframework.data.repository.core
Modifier and TypeMethodDescriptionRepositoryInformation.getQueryMethods()
Returns all methods considered to be query methods.RepositoryInformationSupport.getQueryMethods()
-
Uses of Streamable in org.springframework.data.repository.core.support
Modifier and TypeClassDescriptionstatic class
Value object representing an ordered list offragments
. -
Uses of Streamable in org.springframework.data.repository.query
Modifier and TypeClassDescriptionfinal class
Default implementation ofParameters
.class
Parameters<S extends Parameters<S,
T>, T extends Parameter> Abstracts method parameters that have to be bound to query parameters or applied to the query independently. -
Uses of Streamable in org.springframework.data.repository.query.parser
Modifier and TypeClassDescriptionclass
Class to parse aString
into a tree orPartTree.OrPart
s consisting of simplePart
instances in turn.static class
A part of the parsed source that results from splitting up the resource around Or keywords. -
Uses of Streamable in org.springframework.data.spel
Modifier and TypeClassDescriptionclass
Value object capturing dependencies to a method or property/field that is referenced from a SpEL expression. -
Uses of Streamable in org.springframework.data.util
Modifier and TypeMethodDescriptiondefault Streamable<T>
Creates a newStreamable
from the current one and the givenIterable
concatenated.default Streamable<T>
Creates a newStreamable
from the current one and the givenStream
concatenated.default Streamable<T>
Streamable.and
(Streamable<? extends T> streamable) Convenience method to allow adding aStreamable
directly as otherwise the invocation is ambiguous betweenand(Iterable)
andand(Supplier)
.default Streamable<T>
Creates a newStreamable
from the current one and the given values concatenated.static <T> Streamable<T>
Streamable.empty()
Returns an emptyStreamable
.default Streamable<T>
Returns a newStreamable
that will apply the given filterPredicate
to the current one.default <R> Streamable<R>
Returns a newStreamable
that will apply the givenFunction
to the current one.default <R> Streamable<R>
Returns a newStreamable
that will apply the givenFunction
to the current one.static <T> Streamable<T>
Returns aStreamable
for the givenIterable
.static <T> Streamable<T>
static <T> Streamable<T>
Streamable.of
(T... t) Returns aStreamable
with the given elements.Modifier and TypeMethodDescriptionstatic <S> Collector<S,
?, Streamable<S>> Streamable.toStreamable()
A collector to easily produce aStreamable
from aStream
usingCollectors.toList()
as intermediate collector.static <S,
T extends Iterable<S>>
Collector<S,?, Streamable<S>> Streamable.toStreamable
(Collector<S, ?, T> intermediate) A collector to easily produce aStreamable
from aStream
and the given intermediate collector.Modifier and TypeMethodDescriptiondefault Streamable<T>
Streamable.and
(Streamable<? extends T> streamable) Convenience method to allow adding aStreamable
directly as otherwise the invocation is ambiguous betweenand(Iterable)
andand(Supplier)
.