Uses of Interface
org.springframework.data.util.Streamable
Packages that use 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.
SpEL support.
Core utility APIs such as a type information framework to resolve generic types.
-
Uses of Streamable in org.springframework.data.convert
Methods in org.springframework.data.convert that return StreamableModifier and TypeMethodDescriptionCustomConversions.StoreConversions.getRegistrationsFor
(Object converter) ReturnsCustomConversions.ConverterRegistration
s for the given converter. -
Uses of Streamable in org.springframework.data.domain
Subinterfaces of Streamable in org.springframework.data.domainModifier 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.Classes in org.springframework.data.domain that implement Streamable -
Uses of Streamable in org.springframework.data.geo
Classes in org.springframework.data.geo that implement Streamable -
Uses of Streamable in org.springframework.data.history
Classes in org.springframework.data.history that implement StreamableModifier 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
Subinterfaces of Streamable in org.springframework.data.mappingModifier 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.Classes in org.springframework.data.mapping that implement Streamable -
Uses of Streamable in org.springframework.data.mapping.context
Classes in org.springframework.data.mapping.context that implement StreamableModifier and TypeClassDescriptionclass
Value object to accessPersistentEntity
instances managed byMappingContext
s.Methods in org.springframework.data.mapping.context that return StreamableModifier and TypeMethodDescriptionPersistentEntities.getManagedTypes()
Returns allTypeInformation
exposed by the registeredMappingContext
s. -
Uses of Streamable in org.springframework.data.projection
Classes in org.springframework.data.projection that implement StreamableModifier 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
Classes in org.springframework.data.querydsl that implement StreamableModifier and TypeClassDescriptionclass
Sort option for queries that wraps a QuerydslOrderSpecifier
. -
Uses of Streamable in org.springframework.data.repository.config
Methods in org.springframework.data.repository.config that return StreamableModifier 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
Methods in org.springframework.data.repository.core that return StreamableModifier and TypeMethodDescriptionRepositoryInformation.getQueryMethods()
Returns all methods considered to be query methods.RepositoryInformationSupport.getQueryMethods()
-
Uses of Streamable in org.springframework.data.repository.core.support
Classes in org.springframework.data.repository.core.support that implement StreamableModifier and TypeClassDescriptionstatic class
Value object representing an ordered list offragments
. -
Uses of Streamable in org.springframework.data.repository.query
Classes in org.springframework.data.repository.query that implement StreamableModifier 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
Classes in org.springframework.data.repository.query.parser that implement StreamableModifier 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.Methods in org.springframework.data.repository.query.parser that return Streamable -
Uses of Streamable in org.springframework.data.spel
Classes in org.springframework.data.spel that implement StreamableModifier 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
Methods in org.springframework.data.util that return StreamableModifier 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.Methods in org.springframework.data.util that return types with arguments of type StreamableModifier 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.Methods in org.springframework.data.util with parameters of type StreamableModifier 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)
.