- canContinue(RepeatStatus) - Method in class org.springframework.batch.repeat.support.RepeatTemplate
-
Check return value from batch operation.
- Classifier - Annotation Type in org.springframework.batch.support.annotation
-
Mark a method as capable of classifying its input to an instance of its
output.
- ClassifierCompositeItemWriter<T> - Class in org.springframework.batch.item.support
-
Calls one of a collection of ItemWriters for each item, based on a router
pattern implemented through the provided Classifier
.
- ClassifierCompositeItemWriter() - Constructor for class org.springframework.batch.item.support.ClassifierCompositeItemWriter
-
- cleanupOnClose() - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
- cleanupOnClose() - Method in class org.springframework.batch.item.database.JdbcCursorItemReader
-
Close the cursor and database connection.
- cleanupOnClose() - Method in class org.springframework.batch.item.database.StoredProcedureItemReader
-
Close the cursor and database connection.
- clear() - Method in class org.springframework.batch.item.database.HibernateItemReaderHelper
-
Clear the session if stateful.
- clear() - Static method in class org.springframework.batch.repeat.support.RepeatSynchronizationManager
-
Clear the current context at the end of a batch - should only be used by
RepeatOperations
implementations.
- clearDirtyFlag() - Method in class org.springframework.batch.item.ExecutionContext
-
Clears the dirty flag.
- close() - Method in class org.springframework.batch.item.database.HibernateItemReaderHelper
-
Close the open session (stateful or otherwise).
- close() - Method in class org.springframework.batch.item.file.FlatFileItemWriter
-
- close() - Method in class org.springframework.batch.item.file.MultiResourceItemReader
-
- close() - Method in class org.springframework.batch.item.file.MultiResourceItemWriter
-
- close() - Method in interface org.springframework.batch.item.ItemStream
-
If any resources are needed for the stream to operate they need to be destroyed here.
- close() - Method in class org.springframework.batch.item.ItemStreamSupport
-
No-op.
- close() - Method in class org.springframework.batch.item.support.AbstractItemCountingItemStreamItemReader
-
- close() - Method in class org.springframework.batch.item.support.CompositeItemStream
-
Broadcast the call to close.
- close() - Method in class org.springframework.batch.item.support.CompositeItemWriter
-
- close() - Method in class org.springframework.batch.item.support.SingleItemPeekableItemReader
-
If the delegate is an
ItemStream
, just pass the call on,
otherwise reset the peek cache.
- close() - Method in class org.springframework.batch.item.xml.stax.NoStartEndDocumentStreamWriter
-
- close() - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Flush and close the output source.
- close() - Method in class org.springframework.batch.repeat.context.RepeatContextSupport
-
- close(RepeatContext) - Method in class org.springframework.batch.repeat.listener.CompositeRepeatListener
-
- close(RepeatContext) - Method in class org.springframework.batch.repeat.listener.RepeatListenerSupport
-
- close() - Method in interface org.springframework.batch.repeat.RepeatContext
-
Allow resources to be cleared, especially in destruction callbacks.
- close(RepeatContext) - Method in interface org.springframework.batch.repeat.RepeatListener
-
Called once at the end of a complete batch, after normal or abnormal
completion (i.e.
- close() - Method in class org.springframework.batch.support.transaction.TransactionAwareBufferedWriter
-
- ColumnMapItemPreparedStatementSetter - Class in org.springframework.batch.item.database.support
-
- ColumnMapItemPreparedStatementSetter() - Constructor for class org.springframework.batch.item.database.support.ColumnMapItemPreparedStatementSetter
-
- commit(T, T) - Method in class org.springframework.batch.support.transaction.TransactionAwareProxyFactory
-
Take the working copy state and commit it back to the original target.
- compare(Resource, Resource) - Method in class org.springframework.batch.support.LastModifiedResourceComparator
-
Compare the two resources by last modified time, so that a sorted list of
resources will have oldest first.
- CompletionPolicy - Interface in org.springframework.batch.repeat
-
Interface for batch completion policies, to enable batch operations to
strategise normal completion conditions.
- CompletionPolicySupport - Class in org.springframework.batch.repeat.policy
-
- CompletionPolicySupport() - Constructor for class org.springframework.batch.repeat.policy.CompletionPolicySupport
-
- CompositeCompletionPolicy - Class in org.springframework.batch.repeat.policy
-
Composite policy that loops through a list of delegate policies and answers
calls by a concensus.
- CompositeCompletionPolicy() - Constructor for class org.springframework.batch.repeat.policy.CompositeCompletionPolicy
-
- CompositeCompletionPolicy.CompositeBatchContext - Class in org.springframework.batch.repeat.policy
-
Composite context that knows about the policies and contexts is was
created with.
- CompositeCompletionPolicy.CompositeBatchContext(RepeatContext, List<RepeatContext>) - Constructor for class org.springframework.batch.repeat.policy.CompositeCompletionPolicy.CompositeBatchContext
-
- CompositeExceptionHandler - Class in org.springframework.batch.repeat.exception
-
- CompositeExceptionHandler() - Constructor for class org.springframework.batch.repeat.exception.CompositeExceptionHandler
-
- CompositeItemProcessor<I,O> - Class in org.springframework.batch.item.support
-
Composite
ItemProcessor
that passes the item through a sequence of
injected
ItemTransformer
s (return value of previous
transformation is the entry value of the next).
Note the user is responsible for injecting a chain of
ItemProcessor
s
that conforms to declared input and output types.
- CompositeItemProcessor() - Constructor for class org.springframework.batch.item.support.CompositeItemProcessor
-
- CompositeItemStream - Class in org.springframework.batch.item.support
-
Simple
ItemStream
that delegates to a list of other streams.
- CompositeItemStream() - Constructor for class org.springframework.batch.item.support.CompositeItemStream
-
- CompositeItemWriter<T> - Class in org.springframework.batch.item.support
-
Calls a collection of
ItemWriter
s in fixed-order sequence.
The implementation is thread-safe if all delegates are thread-safe.
- CompositeItemWriter() - Constructor for class org.springframework.batch.item.support.CompositeItemWriter
-
- CompositeRepeatListener - Class in org.springframework.batch.repeat.listener
-
- CompositeRepeatListener() - Constructor for class org.springframework.batch.repeat.listener.CompositeRepeatListener
-
- containsKey(String) - Method in class org.springframework.batch.item.ExecutionContext
-
Indicates whether or not a key is represented in this context.
- containsValue(Object) - Method in class org.springframework.batch.item.ExecutionContext
-
Indicates whether or not a value is represented in this context.
- continueIf(boolean) - Static method in enum org.springframework.batch.repeat.RepeatStatus
-
- ConversionException - Exception in org.springframework.batch.item.file.transform
-
- ConversionException(String) - Constructor for exception org.springframework.batch.item.file.transform.ConversionException
-
- convert(V) - Method in class org.springframework.batch.item.SpELItemKeyMapper
-
- COUNT - Static variable in class org.springframework.batch.repeat.policy.CountingCompletionPolicy
-
Session key for global counter.
- CountingCompletionPolicy - Class in org.springframework.batch.repeat.policy
-
Abstract base class for policies that need to count the number of occurrences
of some event (e.g.
- CountingCompletionPolicy() - Constructor for class org.springframework.batch.repeat.policy.CountingCompletionPolicy
-
- CountingCompletionPolicy.CountingBatchContext - Class in org.springframework.batch.repeat.policy
-
- CountingCompletionPolicy.CountingBatchContext(RepeatContext) - Constructor for class org.springframework.batch.repeat.policy.CountingCompletionPolicy.CountingBatchContext
-
- countParameterPlaceholders(String, List<String>) - Static method in class org.springframework.batch.item.database.JdbcParameterUtils
-
Count the occurrences of the character placeholder in an SQL string
sql
.
- create(Resource, String) - Method in interface org.springframework.batch.item.file.BufferedReaderFactory
-
Create a
BufferedReader
for reading String items from the
provided resource.
- create(Resource, String) - Method in class org.springframework.batch.item.file.DefaultBufferedReaderFactory
-
- create(Resource, String) - Method in class org.springframework.batch.item.file.SimpleBinaryBufferedReaderFactory
-
- create(String[], String[]) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSetFactory
-
Create a FieldSet with named tokens.
- create(String[]) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSetFactory
-
Create a FieldSet with anonymous tokens.
- create(String[], String[]) - Method in interface org.springframework.batch.item.file.transform.FieldSetFactory
-
Create a FieldSet with named tokens.
- create(String[]) - Method in interface org.springframework.batch.item.file.transform.FieldSetFactory
-
Create a FieldSet with anonymous tokens.
- createAppendOnlyTransactionalList() - Static method in class org.springframework.batch.support.transaction.TransactionAwareProxyFactory
-
- createAppendOnlyTransactionalMap() - Static method in class org.springframework.batch.support.transaction.TransactionAwareProxyFactory
-
- createAppendOnlyTransactionalSet() - Static method in class org.springframework.batch.support.transaction.TransactionAwareProxyFactory
-
- createBinder(Object) - Method in class org.springframework.batch.item.file.mapping.BeanWrapperFieldSetMapper
-
Create a binder for the target object.
- createInternalState(RepeatContext) - Method in class org.springframework.batch.repeat.support.RepeatTemplate
-
Create an internal state object that is used to store data needed
internally in the scope of an iteration.
- createInternalState(RepeatContext) - Method in class org.springframework.batch.repeat.support.TaskExecutorRepeatTemplate
-
- createNewFile(File) - Static method in class org.springframework.batch.item.util.FileUtils
-
Create a new file if it doesn't already exist.
- createQuery() - Method in class org.springframework.batch.item.database.HibernateItemReaderHelper
-
Open appropriate type of hibernate session and create the query.
- createQuery() - Method in class org.springframework.batch.item.database.orm.HibernateNativeQueryProvider
-
Create an SQLQuery
from the session provided (preferring
stateless if both are available).
- createQuery() - Method in interface org.springframework.batch.item.database.orm.HibernateQueryProvider
-
Create the query object which type will be determined by the underline
implementation (e.g.
- createQuery() - Method in class org.springframework.batch.item.database.orm.JpaNativeQueryProvider
-
- createQuery() - Method in interface org.springframework.batch.item.database.orm.JpaQueryProvider
-
Create the query object.
- createSqlParameterSource(T) - Method in class org.springframework.batch.item.database.BeanPropertyItemSqlParameterSourceProvider
-
Provide parameter values in an BeanPropertySqlParameterSource
based on values from
the provided item.
- createSqlParameterSource(T) - Method in interface org.springframework.batch.item.database.ItemSqlParameterSourceProvider
-
Provide parameter values in an SqlParameterSource
based on values from
the provided item.
- createStaxResult() - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Subclasses can override to customize the stax result.
- createTransactionalList() - Static method in class org.springframework.batch.support.transaction.TransactionAwareProxyFactory
-
- createTransactionalList(List<T>) - Static method in class org.springframework.batch.support.transaction.TransactionAwareProxyFactory
-
- createTransactionalMap() - Static method in class org.springframework.batch.support.transaction.TransactionAwareProxyFactory
-
- createTransactionalMap(Map<K, V>) - Static method in class org.springframework.batch.support.transaction.TransactionAwareProxyFactory
-
- createTransactionalSet() - Static method in class org.springframework.batch.support.transaction.TransactionAwareProxyFactory
-
- createTransactionalSet(Set<T>) - Static method in class org.springframework.batch.support.transaction.TransactionAwareProxyFactory
-
- createXmlEventFactory() - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Subclasses can override to customize the event factory.
- createXmlEventWriter(XMLOutputFactory, Writer) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Subclasses can override to customize the writer.
- createXmlOutputFactory() - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Subclasses can override to customize the factory.
- GemfireItemWriter<K,V> - Class in org.springframework.batch.item.data
-
- GemfireItemWriter() - Constructor for class org.springframework.batch.item.data.GemfireItemWriter
-
- generateFirstPageQuery(int) - Method in interface org.springframework.batch.item.database.PagingQueryProvider
-
Generate the query that will provide the first page, limited by the page size.
- generateFirstPageQuery(int) - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
Method generating the query string to be used for retrieving the first
page.
- generateFirstPageQuery(int) - Method in class org.springframework.batch.item.database.support.Db2PagingQueryProvider
-
- generateFirstPageQuery(int) - Method in class org.springframework.batch.item.database.support.H2PagingQueryProvider
-
- generateFirstPageQuery(int) - Method in class org.springframework.batch.item.database.support.HsqlPagingQueryProvider
-
- generateFirstPageQuery(int) - Method in class org.springframework.batch.item.database.support.MySqlPagingQueryProvider
-
- generateFirstPageQuery(int) - Method in class org.springframework.batch.item.database.support.OraclePagingQueryProvider
-
- generateFirstPageQuery(int) - Method in class org.springframework.batch.item.database.support.PostgresPagingQueryProvider
-
- generateFirstPageQuery(int) - Method in class org.springframework.batch.item.database.support.SqlServerPagingQueryProvider
-
- generateFirstPageQuery(int) - Method in class org.springframework.batch.item.database.support.SqlWindowingPagingQueryProvider
-
- generateFirstPageQuery(int) - Method in class org.springframework.batch.item.database.support.SybasePagingQueryProvider
-
- generateGroupedTopSqlQuery(AbstractSqlPagingQueryProvider, boolean, String) - Static method in class org.springframework.batch.item.database.support.SqlPagingQueryUtils
-
Generate SQL query string using a TOP clause
- generateJumpToItemQuery(int, int) - Method in interface org.springframework.batch.item.database.PagingQueryProvider
-
Generate the query that will provide the jump to item query.
- generateJumpToItemQuery(int, int) - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
Method generating the query string to be used for jumping to a specific
item position.
- generateJumpToItemQuery(int, int) - Method in class org.springframework.batch.item.database.support.H2PagingQueryProvider
-
- generateJumpToItemQuery(int, int) - Method in class org.springframework.batch.item.database.support.HsqlPagingQueryProvider
-
- generateJumpToItemQuery(int, int) - Method in class org.springframework.batch.item.database.support.MySqlPagingQueryProvider
-
- generateJumpToItemQuery(int, int) - Method in class org.springframework.batch.item.database.support.OraclePagingQueryProvider
-
- generateJumpToItemQuery(int, int) - Method in class org.springframework.batch.item.database.support.PostgresPagingQueryProvider
-
- generateJumpToItemQuery(int, int) - Method in class org.springframework.batch.item.database.support.SqlWindowingPagingQueryProvider
-
- generateLimitGroupedSqlQuery(AbstractSqlPagingQueryProvider, boolean, String) - Static method in class org.springframework.batch.item.database.support.SqlPagingQueryUtils
-
Generate SQL query string using a LIMIT clause
- generateLimitJumpToQuery(AbstractSqlPagingQueryProvider, String) - Static method in class org.springframework.batch.item.database.support.SqlPagingQueryUtils
-
Generate SQL query string using a LIMIT clause
- generateLimitSqlQuery(AbstractSqlPagingQueryProvider, boolean, String) - Static method in class org.springframework.batch.item.database.support.SqlPagingQueryUtils
-
Generate SQL query string using a LIMIT clause
- generateRemainingPagesQuery(int) - Method in interface org.springframework.batch.item.database.PagingQueryProvider
-
Generate the query that will provide the first page, limited by the page size.
- generateRemainingPagesQuery(int) - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
Method generating the query string to be used for retrieving the pages
following the first page.
- generateRemainingPagesQuery(int) - Method in class org.springframework.batch.item.database.support.Db2PagingQueryProvider
-
- generateRemainingPagesQuery(int) - Method in class org.springframework.batch.item.database.support.H2PagingQueryProvider
-
- generateRemainingPagesQuery(int) - Method in class org.springframework.batch.item.database.support.HsqlPagingQueryProvider
-
- generateRemainingPagesQuery(int) - Method in class org.springframework.batch.item.database.support.MySqlPagingQueryProvider
-
- generateRemainingPagesQuery(int) - Method in class org.springframework.batch.item.database.support.OraclePagingQueryProvider
-
- generateRemainingPagesQuery(int) - Method in class org.springframework.batch.item.database.support.PostgresPagingQueryProvider
-
- generateRemainingPagesQuery(int) - Method in class org.springframework.batch.item.database.support.SqlServerPagingQueryProvider
-
- generateRemainingPagesQuery(int) - Method in class org.springframework.batch.item.database.support.SqlWindowingPagingQueryProvider
-
- generateRemainingPagesQuery(int) - Method in class org.springframework.batch.item.database.support.SybasePagingQueryProvider
-
- generateRowNumSqlQuery(AbstractSqlPagingQueryProvider, boolean, String) - Static method in class org.springframework.batch.item.database.support.SqlPagingQueryUtils
-
Generate SQL query string using a ROW_NUM condition
- generateRowNumSqlQuery(AbstractSqlPagingQueryProvider, String, boolean, String) - Static method in class org.springframework.batch.item.database.support.SqlPagingQueryUtils
-
Generate SQL query string using a ROW_NUM condition
- generateRowNumSqlQueryWithNesting(AbstractSqlPagingQueryProvider, String, boolean, String) - Static method in class org.springframework.batch.item.database.support.SqlPagingQueryUtils
-
- generateRowNumSqlQueryWithNesting(AbstractSqlPagingQueryProvider, String, String, boolean, String) - Static method in class org.springframework.batch.item.database.support.SqlPagingQueryUtils
-
- generateTopJumpToQuery(AbstractSqlPagingQueryProvider, String) - Static method in class org.springframework.batch.item.database.support.SqlPagingQueryUtils
-
Generate SQL query string using a TOP clause
- generateTopSqlQuery(AbstractSqlPagingQueryProvider, boolean, String) - Static method in class org.springframework.batch.item.database.support.SqlPagingQueryUtils
-
Generate SQL query string using a TOP clause
- get(String) - Method in class org.springframework.batch.item.ExecutionContext
-
Getter for the value represented by the provided key.
- getActualCount() - Method in exception org.springframework.batch.item.file.transform.IncorrectTokenCountException
-
- getActualLength() - Method in exception org.springframework.batch.item.file.transform.IncorrectLineLengthException
-
- getAsText() - Method in class org.springframework.batch.item.file.transform.RangeArrayPropertyEditor
-
- getAttribute(String) - Method in class org.springframework.batch.repeat.context.SynchronizedAttributeAccessor
-
- getBufferSize() - Method in class org.springframework.batch.support.transaction.TransactionAwareBufferedWriter
-
Convenience method for clients to determine if there is any unflushed
data.
- getCloseSuppressingConnectionProxy(Connection) - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
Wrap the given Connection with a proxy that delegates every method call
to it but suppresses close calls.
- getCode() - Method in enum org.springframework.batch.item.file.transform.Alignment
-
- getConnection() - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
- getConnection(String, String) - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
- getContext() - Static method in class org.springframework.batch.repeat.support.RepeatSynchronizationManager
-
Getter for the current context.
- getCount() - Method in class org.springframework.batch.repeat.context.RepeatContextCounter
-
- getCount(RepeatContext) - Method in class org.springframework.batch.repeat.policy.CountingCompletionPolicy
-
Extension point for subclasses.
- getCounter() - Method in class org.springframework.batch.repeat.policy.CountingCompletionPolicy.CountingBatchContext
-
- getCurrentItemCount() - Method in class org.springframework.batch.item.support.AbstractItemCountingItemStreamItemReader
-
- getCurrentResource() - Method in class org.springframework.batch.item.file.MultiResourceItemReader
-
- getDataSource() - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
Public getter for the data source.
- getDouble(String) - Method in class org.springframework.batch.item.ExecutionContext
-
Typesafe Getter for the Double represented by the provided key.
- getDouble(String, double) - Method in class org.springframework.batch.item.ExecutionContext
-
Typesafe Getter for the Double represented by the provided key with
default value to return if key is not represented.
- getEncoding() - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Get used encoding.
- getEntityManager() - Method in class org.springframework.batch.item.database.orm.AbstractJpaQueryProvider
-
Getter for EntityManager
- getExceptionTranslator() - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
Return the exception translator for this instance.
- getExecutionContextKey(String) - Method in class org.springframework.batch.item.ItemStreamSupport
-
- getExpectedCount() - Method in exception org.springframework.batch.item.file.transform.IncorrectTokenCountException
-
- getExpectedLength() - Method in exception org.springframework.batch.item.file.transform.IncorrectLineLengthException
-
- getFieldCount() - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- getFieldCount() - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Return the number of fields in this 'FieldSet
'.
- getForwardOnlyCursor(int, Map<String, Object>) - Method in class org.springframework.batch.item.database.HibernateItemReaderHelper
-
Get a cursor over all of the results, with the forward-only flag set.
- getFromClause() - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
- getGroupClause() - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
The getter for the group by clause
- getIncrementer(String, String) - Method in interface org.springframework.batch.item.database.support.DataFieldMaxValueIncrementerFactory
-
Return the DataFieldMaxValueIncrementer
for the provided database type.
- getIncrementer(String, String) - Method in class org.springframework.batch.item.database.support.DefaultDataFieldMaxValueIncrementerFactory
-
- getInput() - Method in exception org.springframework.batch.item.file.FlatFileParseException
-
- getInput() - Method in exception org.springframework.batch.item.file.NonTransientFlatFileException
-
- getInput() - Method in exception org.springframework.batch.item.file.transform.FlatFileFormatException
-
- getInput() - Method in exception org.springframework.batch.item.file.transform.IncorrectTokenCountException
-
- getInt(String) - Method in class org.springframework.batch.item.ExecutionContext
-
Typesafe Getter for the Integer represented by the provided key.
- getInt(String, int) - Method in class org.springframework.batch.item.ExecutionContext
-
Typesafe Getter for the Integer represented by the provided key with
default value to return if key is not represented.
- getKey(Object[]) - Method in class org.springframework.batch.item.jms.JmsMethodArgumentsKeyGenerator
-
If the message is a Message
then returns the JMS message ID.
- getKey(String) - Method in class org.springframework.batch.item.util.ExecutionContextUserSupport
-
- getLabel() - Method in enum org.springframework.batch.item.file.transform.Alignment
-
- getLineNumber() - Method in exception org.springframework.batch.item.file.FlatFileParseException
-
- getLineNumber() - Method in exception org.springframework.batch.item.file.NonTransientFlatFileException
-
- getLoginTimeout() - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
- getLogWriter() - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
- getLong(String) - Method in class org.springframework.batch.item.ExecutionContext
-
Typesafe Getter for the Long represented by the provided key.
- getLong(String, long) - Method in class org.springframework.batch.item.ExecutionContext
-
Typesafe Getter for the Long represented by the provided key with default
value to return if key is not represented.
- getMax() - Method in class org.springframework.batch.item.file.transform.Range
-
- getMethodInvokerByAnnotation(Class<? extends Annotation>, Object, Class<?>...) - Static method in class org.springframework.batch.support.MethodInvokerUtils
-
Create a MethodInvoker from the delegate based on the annotationType.
- getMethodInvokerByAnnotation(Class<? extends Annotation>, Object) - Static method in class org.springframework.batch.support.MethodInvokerUtils
-
Create
MethodInvoker
for the method with the provided annotation
on the provided object.
- getMethodInvokerByName(Object, String, boolean, Class<?>...) - Static method in class org.springframework.batch.support.MethodInvokerUtils
-
- getMethodInvokerForInterface(Class<?>, String, Object, Class<?>...) - Static method in class org.springframework.batch.support.MethodInvokerUtils
-
Create a
MethodInvoker
using the provided interface, and method
name from that interface.
- getMethodInvokerForSingleArgument(Object) - Static method in class org.springframework.batch.support.MethodInvokerUtils
-
Create a
MethodInvoker
for the delegate from a single public
method.
- getMin() - Method in class org.springframework.batch.item.file.transform.Range
-
- getName() - Method in class org.springframework.batch.item.util.ExecutionContextUserSupport
-
- getNames() - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- getNames() - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Accessor for the names of the fields.
- getNextResult(RepeatContext, RepeatCallback, RepeatInternalState) - Method in class org.springframework.batch.repeat.support.RepeatTemplate
-
Get the next completed result, possibly executing several callbacks until
one finally finishes.
- getNextResult(RepeatContext, RepeatCallback, RepeatInternalState) - Method in class org.springframework.batch.repeat.support.TaskExecutorRepeatTemplate
-
- getObject() - Method in class org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean
-
Get a
PagingQueryProvider
instance using the provided properties
and appropriate for the given database type.
- getObjectType() - Method in class org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean
-
- getOrderedQueryAlias() - Method in class org.springframework.batch.item.database.support.DerbyPagingQueryProvider
-
- getOrderedQueryAlias() - Method in class org.springframework.batch.item.database.support.SqlWindowingPagingQueryProvider
-
- getOverClause() - Method in class org.springframework.batch.item.database.support.DerbyPagingQueryProvider
-
- getOverClause() - Method in class org.springframework.batch.item.database.support.SqlWindowingPagingQueryProvider
-
- getOverSubstituteClauseEnd() - Method in class org.springframework.batch.item.database.support.DerbyPagingQueryProvider
-
- getOverSubstituteClauseEnd() - Method in class org.springframework.batch.item.database.support.SqlWindowingPagingQueryProvider
-
- getOverSubstituteClauseStart() - Method in class org.springframework.batch.item.database.support.DerbyPagingQueryProvider
-
- getOverSubstituteClauseStart() - Method in class org.springframework.batch.item.database.support.SqlWindowingPagingQueryProvider
-
- getPage() - Method in class org.springframework.batch.item.database.AbstractPagingItemReader
-
The current page number.
- getPageSize() - Method in class org.springframework.batch.item.database.AbstractPagingItemReader
-
The page size configured for this reader.
- getParameterCount() - Method in interface org.springframework.batch.item.database.PagingQueryProvider
-
The number of parameters that are declared in the query
- getParameterCount() - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
- getParamTypesString(Class<?>...) - Static method in class org.springframework.batch.support.MethodInvokerUtils
-
Create a String representation of the array of parameter types.
- getParent() - Method in class org.springframework.batch.repeat.context.RepeatContextSupport
-
- getParent() - Method in interface org.springframework.batch.repeat.RepeatContext
-
If batches are nested, then the inner batch will be created with the
outer one as a parent.
- getParentLogger() - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
Added due to JDK 7 compatibility.
- getProductName() - Method in enum org.springframework.batch.support.DatabaseType
-
- getProperties() - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- getProperties() - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Construct name-value pairs from the field names and string values.
- getResult(XMLEventWriter) - Static method in class org.springframework.batch.item.xml.StaxUtils
-
- getRootElementAttributes() - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Get attributes of the root element.
- getRootTagName() - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Get the tag name of the root element.
- getRootTagNamespace() - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Get the namespace of the root element.
- getRootTagNamespacePrefix() - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Get the namespace prefix of the root element.
- getSelectClause() - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
- getSortKeyPlaceHolder(String) - Method in interface org.springframework.batch.item.database.PagingQueryProvider
-
Returns either a String to be used as the named placeholder for a sort key value (based on the column name)
or a ? for unnamed parameters.
- getSortKeyPlaceHolder(String) - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
The sort key placeholder will vary depending on whether named parameters
or traditional placeholders are used in query strings.
- getSortKeys() - Method in interface org.springframework.batch.item.database.PagingQueryProvider
-
The sort keys.
- getSortKeys() - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
A Map of sort columns as the key and boolean for ascending/descending (assending = true).
- getSource(XMLEventReader) - Static method in class org.springframework.batch.item.xml.StaxUtils
-
- getSql() - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
- getSql() - Method in class org.springframework.batch.item.database.JdbcCursorItemReader
-
- getSql() - Method in class org.springframework.batch.item.database.StoredProcedureItemReader
-
- getStartedCount() - Method in class org.springframework.batch.repeat.context.RepeatContextSupport
-
- getStartedCount() - Method in interface org.springframework.batch.repeat.RepeatContext
-
Public access to a counter for the number of operations attempted.
- getStatefulSession() - Method in class org.springframework.batch.item.database.orm.AbstractHibernateQueryProvider
-
- getStatelessSession() - Method in class org.springframework.batch.item.database.orm.AbstractHibernateQueryProvider
-
- getString(String) - Method in class org.springframework.batch.item.ExecutionContext
-
Typesafe Getter for the String represented by the provided key.
- getString(String, String) - Method in class org.springframework.batch.item.ExecutionContext
-
Typesafe Getter for the String represented by the provided key with
default value to return if key is not represented.
- getStringCode() - Method in enum org.springframework.batch.item.file.transform.Alignment
-
- getSubQueryAlias() - Method in class org.springframework.batch.item.database.support.Db2PagingQueryProvider
-
- getSubQueryAlias() - Method in class org.springframework.batch.item.database.support.SqlServerPagingQueryProvider
-
- getSubQueryAlias() - Method in class org.springframework.batch.item.database.support.SqlWindowingPagingQueryProvider
-
- getSubQueryAlias() - Method in class org.springframework.batch.item.database.support.SybasePagingQueryProvider
-
- getSuffix(int) - Method in interface org.springframework.batch.item.file.ResourceSuffixCreator
-
- getSuffix(int) - Method in class org.springframework.batch.item.file.SimpleResourceSuffixCreator
-
- getSupportedIncrementerTypes() - Method in interface org.springframework.batch.item.database.support.DataFieldMaxValueIncrementerFactory
-
Returns the list of supported database incrementer types
- getSupportedIncrementerTypes() - Method in class org.springframework.batch.item.database.support.DefaultDataFieldMaxValueIncrementerFactory
-
- getThrowables() - Method in interface org.springframework.batch.repeat.support.RepeatInternalState
-
Returns a mutable collection of exceptions that have occurred in the
current repeat context.
- getThrowables() - Method in class org.springframework.batch.repeat.support.RepeatInternalStateSupport
-
- getValues() - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- getValues() - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
- getVersion() - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Get XML version.
- getWhereClause() - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
- getXmlEventReader(Source) - Static method in class org.springframework.batch.item.xml.StaxUtils
-
- getXmlEventWriter(Result) - Static method in class org.springframework.batch.item.xml.StaxUtils
-
- IbatisBatchItemWriter<T> - Class in org.springframework.batch.item.database
-
ItemWriter
that uses the batching features from
SqlMapClientTemplate to execute a batch of statements for all items
provided.
The user must provide an iBATIS statement id that points to the SQL statement defined
in the iBATIS SqlMap configuration.
It is expected that
IbatisBatchItemWriter.write(List)
is called inside a transaction.
The writer is thread safe after its properties are set (normal singleton
behavior), so it can be used to write in multiple concurrent transactions.
- IbatisBatchItemWriter() - Constructor for class org.springframework.batch.item.database.IbatisBatchItemWriter
-
- IbatisPagingItemReader<T> - Class in org.springframework.batch.item.database
-
ItemReader
for reading database
records using iBATIS in a paging fashion.
- IbatisPagingItemReader() - Constructor for class org.springframework.batch.item.database.IbatisPagingItemReader
-
- IncorrectLineLengthException - Exception in org.springframework.batch.item.file.transform
-
Exception indicating that the line size expected is different from what
is expected.
- IncorrectLineLengthException(String, int, int, String) - Constructor for exception org.springframework.batch.item.file.transform.IncorrectLineLengthException
-
- IncorrectLineLengthException(String, int, int) - Constructor for exception org.springframework.batch.item.file.transform.IncorrectLineLengthException
-
- IncorrectLineLengthException(int, int, String) - Constructor for exception org.springframework.batch.item.file.transform.IncorrectLineLengthException
-
- IncorrectLineLengthException(int, int) - Constructor for exception org.springframework.batch.item.file.transform.IncorrectLineLengthException
-
- IncorrectTokenCountException - Exception in org.springframework.batch.item.file.transform
-
Exception indicating that an incorrect number of tokens have been found
while parsing a file.
- IncorrectTokenCountException(String, int, int, String) - Constructor for exception org.springframework.batch.item.file.transform.IncorrectTokenCountException
-
- IncorrectTokenCountException(String, int, int) - Constructor for exception org.springframework.batch.item.file.transform.IncorrectTokenCountException
-
- IncorrectTokenCountException(int, int, String) - Constructor for exception org.springframework.batch.item.file.transform.IncorrectTokenCountException
-
- IncorrectTokenCountException(int, int) - Constructor for exception org.springframework.batch.item.file.transform.IncorrectTokenCountException
-
- increment(int) - Method in class org.springframework.batch.repeat.context.RepeatContextCounter
-
Increment the counter.
- increment() - Method in class org.springframework.batch.repeat.context.RepeatContextCounter
-
Increment by 1.
- increment() - Method in class org.springframework.batch.repeat.context.RepeatContextSupport
-
Used by clients to increment the started count.
- indexOf(String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
Read and trim the
String
value from column with given '
name
.
- init() - Method in class org.springframework.batch.item.data.GemfireItemWriter
-
- init(DataSource) - Method in interface org.springframework.batch.item.database.PagingQueryProvider
-
Initialize the query provider using the provided
DataSource
if necessary.
- init(DataSource) - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
Check mandatory properties.
- init(DataSource) - Method in class org.springframework.batch.item.database.support.DerbyPagingQueryProvider
-
- init() - Method in class org.springframework.batch.item.KeyValueItemWriter
-
afterPropertiesSet() hook
- initBinder(DataBinder) - Method in class org.springframework.batch.item.file.mapping.BeanWrapperFieldSetMapper
-
Initialize a new binder instance.
- initializeConnection() - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
- initNamespaceContext(XMLEventWriter) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Inits the namespace context of the XMLEventWriter:
rootTagNamespacePrefix for rootTagName
any other xmlns namespace prefix declarations in the root element attributes
- IntArrayPropertyEditor - Class in org.springframework.batch.support
-
- IntArrayPropertyEditor() - Constructor for class org.springframework.batch.support.IntArrayPropertyEditor
-
- invoke(MethodInvocation) - Method in class org.springframework.batch.repeat.interceptor.RepeatOperationsInterceptor
-
Invoke the proceeding method call repeatedly, according to the properties
of the injected
RepeatOperations
.
- invokeDelegateMethod() - Method in class org.springframework.batch.item.adapter.AbstractMethodInvokingDelegator
-
- invokeDelegateMethodWithArgument(Object) - Method in class org.springframework.batch.item.adapter.AbstractMethodInvokingDelegator
-
Invokes the target method with given argument.
- invokeDelegateMethodWithArguments(Object[]) - Method in class org.springframework.batch.item.adapter.AbstractMethodInvokingDelegator
-
Invokes the target method with given arguments.
- invokeMethod(Object...) - Method in interface org.springframework.batch.support.MethodInvoker
-
- invokeMethod(Object...) - Method in class org.springframework.batch.support.SimpleMethodInvoker
-
- isCloseSuppressionActive(Connection) - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
Return the status of close suppression being activated for a given
Connection
- isComplete(RepeatContext, RepeatStatus) - Method in interface org.springframework.batch.repeat.CompletionPolicy
-
Determine whether a batch is complete given the latest result from the
callback.
- isComplete(RepeatContext) - Method in interface org.springframework.batch.repeat.CompletionPolicy
-
Allow policy to signal completion according to internal state, without
having to wait for the callback to complete.
- isComplete(RepeatContext, RepeatStatus) - Method in class org.springframework.batch.repeat.policy.CompletionPolicySupport
-
- isComplete(RepeatContext) - Method in class org.springframework.batch.repeat.policy.CompletionPolicySupport
-
Always true.
- isComplete(RepeatContext, RepeatStatus) - Method in class org.springframework.batch.repeat.policy.CompositeCompletionPolicy
-
This policy is complete if any of the composed policies is complete.
- isComplete(RepeatContext) - Method in class org.springframework.batch.repeat.policy.CompositeCompletionPolicy
-
This policy is complete if any of the composed policies is complete.
- isComplete(RepeatContext) - Method in class org.springframework.batch.repeat.policy.CountingCompletionPolicy
-
- isComplete(RepeatContext, RepeatStatus) - Method in class org.springframework.batch.repeat.policy.DefaultResultCompletionPolicy
-
True if the result is null, or a
RepeatStatus
indicating
completion.
- isComplete(RepeatContext) - Method in class org.springframework.batch.repeat.policy.DefaultResultCompletionPolicy
-
Always false.
- isComplete(RepeatContext, RepeatStatus) - Method in class org.springframework.batch.repeat.policy.SimpleCompletionPolicy
-
Terminate if the chunk size has been reached, or the result is null.
- isComplete(RepeatContext) - Method in class org.springframework.batch.repeat.policy.SimpleCompletionPolicy
-
Terminate if the chunk size has been reached.
- isComplete() - Method in class org.springframework.batch.repeat.policy.SimpleCompletionPolicy.SimpleTerminationContext
-
- isComplete(RepeatContext) - Method in class org.springframework.batch.repeat.policy.TimeoutTerminationPolicy
-
Check the timeout and complete gracefully if it has expires.
- isComplete() - Method in class org.springframework.batch.repeat.policy.TimeoutTerminationPolicy.TimeoutBatchContext
-
- isComplete(RepeatContext, RepeatStatus) - Method in class org.springframework.batch.repeat.support.RepeatTemplate
-
- isComplete(RepeatContext) - Method in class org.springframework.batch.repeat.support.RepeatTemplate
-
- isCompleteOnly() - Method in class org.springframework.batch.repeat.context.RepeatContextSupport
-
- isCompleteOnly() - Method in interface org.springframework.batch.repeat.RepeatContext
-
Public accessor for the complete flag.
- isContinuable() - Method in enum org.springframework.batch.repeat.RepeatStatus
-
- isDirty() - Method in class org.springframework.batch.item.ExecutionContext
-
Indicates if context has been changed with a "put" operation since the
dirty flag was last cleared.
- isEmpty() - Method in class org.springframework.batch.item.ExecutionContext
-
Indicates whether or not the context is empty.
- isEmpty() - Method in class org.springframework.batch.repeat.support.ResultHolderResultQueue
-
- isEmpty() - Method in class org.springframework.batch.repeat.support.ThrottleLimitResultQueue
-
- isEndOfRecord(String) - Method in class org.springframework.batch.item.file.separator.DefaultRecordSeparatorPolicy
-
Return true if the line does not have unterminated quotes (delimited by
"), and does not end with a continuation marker ('\').
- isEndOfRecord(String) - Method in class org.springframework.batch.item.file.separator.JsonRecordSeparatorPolicy
-
True if the line can be parsed to a JSON object.
- isEndOfRecord(String) - Method in interface org.springframework.batch.item.file.separator.RecordSeparatorPolicy
-
Signal the end of a record based on the content of the current record.
- isEndOfRecord(String) - Method in class org.springframework.batch.item.file.separator.SimpleRecordSeparatorPolicy
-
Always returns true.
- isEndOfRecord(String) - Method in class org.springframework.batch.item.file.separator.SuffixRecordSeparatorPolicy
-
Return true if the line ends with the specified substring.
- isExistingTransaction(Object) - Method in class org.springframework.batch.support.transaction.ResourcelessTransactionManager
-
- isExpecting() - Method in class org.springframework.batch.repeat.support.ResultHolderResultQueue
-
- isExpecting() - Method in class org.springframework.batch.repeat.support.ThrottleLimitResultQueue
-
- isNew(Object[]) - Method in class org.springframework.batch.item.jms.JmsNewMethodArgumentsIdentifier
-
If any of the arguments is a message, check the JMS re-delivered flag and
return it, otherwise return false to be on the safe side.
- isQuoteCharacter(char) - Method in class org.springframework.batch.item.file.transform.DelimitedLineTokenizer
-
Is the supplied character a quote character?
- isSaveState() - Method in class org.springframework.batch.item.support.AbstractItemCountingItemStreamItemReader
-
The flag that determines whether to save internal state for restarts.
- isSingleton() - Method in class org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean
-
Always returns true.
- isStatelessSession() - Method in class org.springframework.batch.item.database.orm.AbstractHibernateQueryProvider
-
- isStrict() - Method in class org.springframework.batch.item.file.transform.AbstractLineTokenizer
-
Provides access to the strict flag for subclasses if needed.
- isSupportedIncrementerType(String) - Method in interface org.springframework.batch.item.database.support.DataFieldMaxValueIncrementerFactory
-
Returns boolean indicated whether or not the provided string is supported by this
factory.
- isSupportedIncrementerType(String) - Method in class org.springframework.batch.item.database.support.DefaultDataFieldMaxValueIncrementerFactory
-
- isTerminateOnly() - Method in class org.springframework.batch.repeat.context.RepeatContextSupport
-
- isTerminateOnly() - Method in interface org.springframework.batch.repeat.RepeatContext
-
Public accessor for the termination flag.
- isUseSharedExtendedConnection() - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
- isUsingNamedParameters() - Method in interface org.springframework.batch.item.database.PagingQueryProvider
-
Indicate whether the generated queries use named parameter syntax.
- isUsingNamedParameters() - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
- isWrapperFor(Class<?>) - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
Performs only a 'shallow' non-recursive check of self's and delegate's
class to retain Java 5 compatibility.
- ItemCountAware - Interface in org.springframework.batch.item
-
Marker interface indicating that an item should have the item count set on it.
- itemKeyMapper - Variable in class org.springframework.batch.item.KeyValueItemWriter
-
- ItemPreparedStatementSetter<T> - Interface in org.springframework.batch.item.database
-
A convenient strategy for SQL updates, acting effectively as the inverse of
RowMapper
.
- ItemProcessor<I,O> - Interface in org.springframework.batch.item
-
Interface for item transformation.
- ItemProcessorAdapter<I,O> - Class in org.springframework.batch.item.adapter
-
Invokes a custom method on a delegate plain old Java object which itself
processes an item.
- ItemProcessorAdapter() - Constructor for class org.springframework.batch.item.adapter.ItemProcessorAdapter
-
- ItemReader<T> - Interface in org.springframework.batch.item
-
Strategy interface for providing the data.
- ItemReaderAdapter<T> - Class in org.springframework.batch.item.adapter
-
Invokes a custom method on a delegate plain old Java object which itself
provides an item.
- ItemReaderAdapter() - Constructor for class org.springframework.batch.item.adapter.ItemReaderAdapter
-
- ItemReaderException - Exception in org.springframework.batch.item
-
A base exception class that all exceptions thrown from an
ItemReader
extend.
- ItemReaderException(String, Throwable) - Constructor for exception org.springframework.batch.item.ItemReaderException
-
- ItemReaderException(String) - Constructor for exception org.springframework.batch.item.ItemReaderException
-
- ItemSqlParameterSourceProvider<T> - Interface in org.springframework.batch.item.database
-
A convenient strategy for providing SqlParameterSource for named parameter SQL updates.
- ItemStream - Interface in org.springframework.batch.item
-
Marker interface defining a contract for periodically storing state and restoring from that state should an error
occur.
- ItemStreamException - Exception in org.springframework.batch.item
-
Exception representing any errors encountered while processing a stream.
- ItemStreamException(String) - Constructor for exception org.springframework.batch.item.ItemStreamException
-
- ItemStreamException(String, Throwable) - Constructor for exception org.springframework.batch.item.ItemStreamException
-
Constructs a new instance with a message and nested exception.
- ItemStreamException(Throwable) - Constructor for exception org.springframework.batch.item.ItemStreamException
-
Constructs a new instance with a nested exception and empty message.
- ItemStreamReader<T> - Interface in org.springframework.batch.item
-
- ItemStreamSupport - Class in org.springframework.batch.item
-
- ItemStreamSupport() - Constructor for class org.springframework.batch.item.ItemStreamSupport
-
- ItemStreamWriter<T> - Interface in org.springframework.batch.item
-
- itemType - Variable in class org.springframework.batch.item.jms.JmsItemReader
-
- ItemWriter<T> - Interface in org.springframework.batch.item
-
Basic interface for generic output operations.
- ItemWriterAdapter<T> - Class in org.springframework.batch.item.adapter
-
Delegates item processing to a custom method -
passes the item as an argument for the delegate method.
- ItemWriterAdapter() - Constructor for class org.springframework.batch.item.adapter.ItemWriterAdapter
-
- ItemWriterException - Exception in org.springframework.batch.item
-
A base exception class that all exceptions thrown from an
ItemWriter
extend.
- ItemWriterException(String, Throwable) - Constructor for exception org.springframework.batch.item.ItemWriterException
-
- ItemWriterException(String) - Constructor for exception org.springframework.batch.item.ItemWriterException
-
- iterate(RepeatCallback) - Method in interface org.springframework.batch.repeat.RepeatOperations
-
Execute the callback repeatedly, until a decision can be made to
complete.
- iterate(RepeatCallback) - Method in class org.springframework.batch.repeat.support.RepeatTemplate
-
Execute the batch callback until the completion policy decides that we
are finished.
- IteratorItemReader<T> - Class in org.springframework.batch.item.support
-
- IteratorItemReader(Iterable<T>) - Constructor for class org.springframework.batch.item.support.IteratorItemReader
-
Construct a new reader from this iterable (could be a collection), by
extracting an instance of
Iterator
from it.
- IteratorItemReader(Iterator<T>) - Constructor for class org.springframework.batch.item.support.IteratorItemReader
-
Construct a new reader from this iterator directly.
- Range - Class in org.springframework.batch.item.file.transform
-
A class to represent ranges.
- Range(int) - Constructor for class org.springframework.batch.item.file.transform.Range
-
- Range(int, int) - Constructor for class org.springframework.batch.item.file.transform.Range
-
- RangeArrayPropertyEditor - Class in org.springframework.batch.item.file.transform
-
Property editor implementation which parses string and creates array of
ranges.
- RangeArrayPropertyEditor() - Constructor for class org.springframework.batch.item.file.transform.RangeArrayPropertyEditor
-
- read() - Method in class org.springframework.batch.item.adapter.ItemReaderAdapter
-
- read() - Method in class org.springframework.batch.item.amqp.AmqpItemReader
-
- read() - Method in class org.springframework.batch.item.file.MultiResourceItemReader
-
Reads the next item, jumping to next resource if necessary.
- read() - Method in class org.springframework.batch.item.file.ResourcesItemReader
-
Increments a counter and returns the next Resource
instance from
the input, or null if none remain.
- read() - Method in interface org.springframework.batch.item.ItemReader
-
Reads a piece of input data and advance to the next one.
- read() - Method in class org.springframework.batch.item.jms.JmsItemReader
-
- read() - Method in class org.springframework.batch.item.support.AbstractItemCountingItemStreamItemReader
-
- read() - Method in class org.springframework.batch.item.support.IteratorItemReader
-
- read() - Method in class org.springframework.batch.item.support.ListItemReader
-
- read() - Method in class org.springframework.batch.item.support.SingleItemPeekableItemReader
-
Get the next item from the delegate (whether or not it has already been
peeked at).
- readAndTrim(int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
Read and trim the
String
value at '
index
'.
- readBigDecimal(int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readBigDecimal(String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readBigDecimal(int, BigDecimal) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readBigDecimal(String, BigDecimal) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readBigDecimal(int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
- readBigDecimal(String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the
BigDecimal
value from column with given '
name
.
- readBigDecimal(int, BigDecimal) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the
BigDecimal
value at index '
index
',
returning the supplied
defaultValue
if the trimmed string
value at index '
index
' is blank.
- readBigDecimal(String, BigDecimal) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the
BigDecimal
value from column with given '
name
,
returning the supplied
defaultValue
if the trimmed string
value at index '
index
' is blank.
- readBoolean(int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readBoolean(String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readBoolean(int, String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readBoolean(String, String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readBoolean(int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'boolean
' value at index 'index
'.
- readBoolean(String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'boolean
' value from column with given 'name
'.
- readBoolean(int, String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'boolean
' value at index 'index
'.
- readBoolean(String, String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'boolean
' value from column with given 'name
'.
- readByte(int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readByte(String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readByte(int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'byte
' value at index 'index
'.
- readByte(String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'byte
' value from column with given 'name
'.
- readChar(int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readChar(String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readChar(int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'char
' value at index 'index
'.
- readChar(String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'char
' value from column with given 'name
'.
- readCursor(ResultSet, int) - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
Read the cursor and map to the type of object this reader should return.
- readCursor(ResultSet, int) - Method in class org.springframework.batch.item.database.JdbcCursorItemReader
-
- readCursor(ResultSet, int) - Method in class org.springframework.batch.item.database.StoredProcedureItemReader
-
- readDate(int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readDate(int, Date) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readDate(String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readDate(String, Date) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readDate(int, String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readDate(int, String, Date) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readDate(String, String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readDate(String, String, Date) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readDate(int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the java.util.Date
value in default format at
designated column index
.
- readDate(String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the java.sql.Date
value in given format from column
with given name
.
- readDate(int, Date) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the java.util.Date
value in default format at
designated column index
.
- readDate(String, Date) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the java.sql.Date
value in given format from column
with given name
.
- readDate(int, String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the java.util.Date
value in default format at
designated column index
.
- readDate(String, String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the java.sql.Date
value in given format from column
with given name
.
- readDate(int, String, Date) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the java.util.Date
value in default format at
designated column index
.
- readDate(String, String, Date) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the java.sql.Date
value in given format from column
with given name
.
- readDouble(int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readDouble(String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readDouble(int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'double
' value at index 'index
'.
- readDouble(String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'double
' value from column with given 'name
.
- ReaderNotOpenException - Exception in org.springframework.batch.item
-
Exception indicating that an
ItemReader
needed to be opened before read.
- ReaderNotOpenException(String) - Constructor for exception org.springframework.batch.item.ReaderNotOpenException
-
- ReaderNotOpenException(String, Throwable) - Constructor for exception org.springframework.batch.item.ReaderNotOpenException
-
- readFloat(int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readFloat(String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readFloat(int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'float
' value at index 'index
'.
- readFloat(String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'float
' value from column with given 'name
.
- readInt(int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readInt(String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readInt(int, int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readInt(String, int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readInt(int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'int
' value at index 'index
'.
- readInt(String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'int
' value from column with given 'name
'.
- readInt(int, int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'int
' value at index 'index
',
using the supplied defaultValue
if the field value is
blank.
- readInt(String, int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'int
' value from column with given 'name
',
using the supplied defaultValue
if the field value is
blank.
- readLong(int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readLong(String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readLong(int, long) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readLong(String, long) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readLong(int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'long
' value at index 'index
'.
- readLong(String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'long
' value from column with given 'name
'.
- readLong(int, long) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'long
' value at index 'index
',
using the supplied defaultValue
if the field value is
blank.
- readLong(String, long) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'long
' value from column with given 'name
',
using the supplied defaultValue
if the field value is
blank.
- readPage(int, int, int, Map<String, Object>) - Method in class org.springframework.batch.item.database.HibernateItemReaderHelper
-
Read a page of data, clearing the existing session (if necessary) first,
and creating a new session before executing the query.
- readRawString(int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readRawString(String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readRawString(int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the
String
value at index '
index
' including
trailing whitespace (don't trim).
- readRawString(String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the
String
value from column with given '
name
'
including trailing whitespace (don't trim).
- readShort(int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readShort(String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readShort(int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'short
' value at index 'index
'.
- readShort(String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the 'short
' value from column with given 'name
'.
- readString(int) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readString(String) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- readString(int) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the
String
value at index '
index
'.
- readString(String) - Method in interface org.springframework.batch.item.file.transform.FieldSet
-
Read the
String
value from column with given '
name
'.
- RecordSeparatorPolicy - Interface in org.springframework.batch.item.file.separator
-
Policy for text file-based input sources to determine the end of a record,
e.g.
- recover(Object[], Throwable) - Method in class org.springframework.batch.item.jms.JmsMethodInvocationRecoverer
-
Send one message per item in the arguments list using the default destination of
the jms template.
- RecursiveCollectionLineAggregator<T> - Class in org.springframework.batch.item.file.transform
-
An implementation of
LineAggregator
that concatenates a collection of
items of a common type with the system line separator.
- RecursiveCollectionLineAggregator() - Constructor for class org.springframework.batch.item.file.transform.RecursiveCollectionLineAggregator
-
- ReflectionUtils - Class in org.springframework.batch.support
-
Provides reflection based utilities for Spring Batch that are not available
via Spring Core
- RegexLineTokenizer - Class in org.springframework.batch.item.file.transform
-
Line-tokenizer using a regular expression to filter out data (by using matching and non-matching groups).
- RegexLineTokenizer() - Constructor for class org.springframework.batch.item.file.transform.RegexLineTokenizer
-
- register(ItemStream) - Method in class org.springframework.batch.item.support.CompositeItemStream
-
Register a
ItemStream
as one of the interesting providers under
the provided key.
- register(RepeatListener) - Method in class org.springframework.batch.repeat.listener.CompositeRepeatListener
-
Register additional listener.
- register(RepeatContext) - Static method in class org.springframework.batch.repeat.support.RepeatSynchronizationManager
-
- registerCustomEditors(PropertyEditorRegistry) - Method in class org.springframework.batch.support.DefaultPropertyEditorRegistrar
-
Register the custom editors with the given registry.
- registerDestructionCallback(String, Runnable) - Method in class org.springframework.batch.repeat.context.RepeatContextSupport
-
- registerDestructionCallback(String, Runnable) - Method in interface org.springframework.batch.repeat.RepeatContext
-
Register a callback to be executed on close, associated with the
attribute having the given name.
- registerListener(RepeatListener) - Method in class org.springframework.batch.repeat.support.RepeatTemplate
-
Register an additional listener.
- remove(String) - Method in class org.springframework.batch.item.ExecutionContext
-
Removes the mapping for a key from this context if it is present.
- removeAttribute(String) - Method in class org.springframework.batch.repeat.context.SynchronizedAttributeAccessor
-
- RepeatCallback - Interface in org.springframework.batch.repeat
-
Callback interface for batch operations.
- RepeatContext - Interface in org.springframework.batch.repeat
-
Base interface for context which controls the state and completion /
termination of a batch step.
- RepeatContextCounter - Class in org.springframework.batch.repeat.context
-
Helper class for policies that need to count the number of occurrences of
some event (e.g.
- RepeatContextCounter(RepeatContext, String) - Constructor for class org.springframework.batch.repeat.context.RepeatContextCounter
-
Convenience constructor with useParent=false.
- RepeatContextCounter(RepeatContext, String, boolean) - Constructor for class org.springframework.batch.repeat.context.RepeatContextCounter
-
- RepeatContextSupport - Class in org.springframework.batch.repeat.context
-
- RepeatContextSupport(RepeatContext) - Constructor for class org.springframework.batch.repeat.context.RepeatContextSupport
-
- RepeatException - Exception in org.springframework.batch.repeat
-
- RepeatException(String) - Constructor for exception org.springframework.batch.repeat.RepeatException
-
- RepeatException(String, Throwable) - Constructor for exception org.springframework.batch.repeat.RepeatException
-
- RepeatInternalState - Interface in org.springframework.batch.repeat.support
-
- RepeatInternalStateSupport - Class in org.springframework.batch.repeat.support
-
- RepeatInternalStateSupport() - Constructor for class org.springframework.batch.repeat.support.RepeatInternalStateSupport
-
- RepeatListener - Interface in org.springframework.batch.repeat
-
Interface for listeners to the batch process.
- RepeatListenerSupport - Class in org.springframework.batch.repeat.listener
-
- RepeatListenerSupport() - Constructor for class org.springframework.batch.repeat.listener.RepeatListenerSupport
-
- RepeatOperations - Interface in org.springframework.batch.repeat
-
The main interface providing access to batch operations.
- RepeatOperationsInterceptor - Class in org.springframework.batch.repeat.interceptor
-
A MethodInterceptor
that can be used to automatically repeat calls to
a method on a service.
- RepeatOperationsInterceptor() - Constructor for class org.springframework.batch.repeat.interceptor.RepeatOperationsInterceptor
-
- RepeatStatus - Enum in org.springframework.batch.repeat
-
- RepeatSynchronizationManager - Class in org.springframework.batch.repeat.support
-
Global variable support for repeat clients.
- RepeatTemplate - Class in org.springframework.batch.repeat.support
-
Simple implementation and base class for batch templates implementing
RepeatOperations
.
- RepeatTemplate() - Constructor for class org.springframework.batch.repeat.support.RepeatTemplate
-
- RepositoryItemReader<T> - Class in org.springframework.batch.item.data
-
A
ItemReader
that reads records utilizing
a
PagingAndSortingRepository
.
- RepositoryItemReader() - Constructor for class org.springframework.batch.item.data.RepositoryItemReader
-
- RepositoryItemWriter - Class in org.springframework.batch.item.data
-
A
ItemReader
wrapper for a
CrudRepository
from Spring Data.
- RepositoryItemWriter() - Constructor for class org.springframework.batch.item.data.RepositoryItemWriter
-
- reset() - Method in class org.springframework.batch.item.xml.stax.DefaultFragmentEventReader
-
- reset() - Method in interface org.springframework.batch.item.xml.stax.FragmentEventReader
-
Reset the state of the fragment reader - make it forget
it assumptions about current position of cursor
(e.g.
- ResourceAware - Interface in org.springframework.batch.item
-
Marker interface indicating that an item should have the Spring Resource
in which it was read from, set on it.
- ResourceAwareItemReaderItemStream<T> - Interface in org.springframework.batch.item.file
-
- ResourceAwareItemWriterItemStream<T> - Interface in org.springframework.batch.item.file
-
- ResourcelessTransactionManager - Class in org.springframework.batch.support.transaction
-
- ResourcelessTransactionManager() - Constructor for class org.springframework.batch.support.transaction.ResourcelessTransactionManager
-
- ResourcesItemReader - Class in org.springframework.batch.item.file
-
ItemReader
which produces
Resource
instances from an array.
- ResourcesItemReader() - Constructor for class org.springframework.batch.item.file.ResourcesItemReader
-
- ResourceSuffixCreator - Interface in org.springframework.batch.item.file
-
Strategy interface for translating resource index into unique filename
suffix.
- ResultHolderResultQueue - Class in org.springframework.batch.repeat.support
-
An implementation of the ResultQueue
that throttles the number of
expected results, limiting it to a maximum at any given time.
- ResultHolderResultQueue(int) - Constructor for class org.springframework.batch.repeat.support.ResultHolderResultQueue
-
- results - Variable in class org.springframework.batch.item.data.AbstractPaginatedDataItemReader
-
- results - Variable in class org.springframework.batch.item.database.AbstractPagingItemReader
-
- RethrowOnThresholdExceptionHandler - Class in org.springframework.batch.repeat.exception
-
Implementation of
ExceptionHandler
that rethrows when exceptions of a
given type reach a threshold.
- RethrowOnThresholdExceptionHandler() - Constructor for class org.springframework.batch.repeat.exception.RethrowOnThresholdExceptionHandler
-
Set up the exception handler.
- rs - Variable in class org.springframework.batch.item.database.AbstractCursorItemReader
-
- SerializationUtils - Class in org.springframework.batch.support
-
Static utility to help with serialization.
- SerializationUtils() - Constructor for class org.springframework.batch.support.SerializationUtils
-
- serialize(Object) - Static method in class org.springframework.batch.support.SerializationUtils
-
Serialize the object provided.
- setAncestorsCompleteOnly() - Static method in class org.springframework.batch.repeat.support.RepeatSynchronizationManager
-
Set current session and all ancestors (via parent) to complete.,
- setAppendAllowed(boolean) - Method in class org.springframework.batch.item.file.FlatFileItemWriter
-
Flag to indicate that the target file should be appended if it already
exists.
- setArguments(Object[]) - Method in class org.springframework.batch.item.adapter.AbstractMethodInvokingDelegator
-
- setArguments(List) - Method in class org.springframework.batch.item.data.RepositoryItemReader
-
Arguments to be passed to the data providing method.
- setAssertUpdates(boolean) - Method in class org.springframework.batch.item.database.IbatisBatchItemWriter
-
Public setter for the flag that determines whether an assertion is made
that all items cause at least one row to be updated.
- setAssertUpdates(boolean) - Method in class org.springframework.batch.item.database.JdbcBatchItemWriter
-
Public setter for the flag that determines whether an assertion is made
that all items cause at least one row to be updated.
- setAsText(String) - Method in class org.springframework.batch.item.file.transform.RangeArrayPropertyEditor
-
- setAsText(String) - Method in class org.springframework.batch.support.IntArrayPropertyEditor
-
- setAttribute(String, Object) - Method in class org.springframework.batch.repeat.context.SynchronizedAttributeAccessor
-
- setAttributeIfAbsent(String, Object) - Method in class org.springframework.batch.repeat.context.SynchronizedAttributeAccessor
-
Additional support for atomic put if absent.
- setBeanFactory(BeanFactory) - Method in class org.springframework.batch.item.file.mapping.BeanWrapperFieldSetMapper
-
- setBufferedReaderFactory(BufferedReaderFactory) - Method in class org.springframework.batch.item.file.FlatFileItemReader
-
Factory for the
BufferedReader
that will be used to extract lines from the file.
- setChunkSize(int) - Method in class org.springframework.batch.repeat.policy.SimpleCompletionPolicy
-
- setClassifier(Classifier<T, ItemWriter<? super T>>) - Method in class org.springframework.batch.item.support.ClassifierCompositeItemWriter
-
- setClearSession(boolean) - Method in class org.springframework.batch.item.database.HibernateItemWriter
-
Flag to indicate that the session should be cleared and flushed at the
end of the write (default true).
- setCollection(String) - Method in class org.springframework.batch.item.data.MongoItemReader
-
- setCollection(String) - Method in class org.springframework.batch.item.data.MongoItemWriter
-
Set the name of the Mongo collection to be written to.
- setColumns(Range[]) - Method in class org.springframework.batch.item.file.transform.FixedLengthTokenizer
-
Set the column ranges.
- setComments(String[]) - Method in class org.springframework.batch.item.file.FlatFileItemReader
-
Setter for comment prefixes.
- setComparator(Comparator<Resource>) - Method in class org.springframework.batch.item.file.MultiResourceItemReader
-
- setCompleteOnly() - Method in class org.springframework.batch.repeat.context.RepeatContextSupport
-
- setCompleteOnly() - Method in interface org.springframework.batch.repeat.RepeatContext
-
Signal to the framework that the current batch should complete normally,
independent of the current
CompletionPolicy
.
- setCompleteOnly() - Static method in class org.springframework.batch.repeat.support.RepeatSynchronizationManager
-
Convenience method to set the current repeat operation to complete if it
exists.
- setCompletionPolicy(CompletionPolicy) - Method in class org.springframework.batch.repeat.support.RepeatTemplate
-
Setter for policy to decide when the batch is complete.
- setContinuation(String) - Method in class org.springframework.batch.item.file.separator.DefaultRecordSeparatorPolicy
-
Public setter for the continuation.
- setCurrentItemCount(int) - Method in class org.springframework.batch.item.support.AbstractItemCountingItemStreamItemReader
-
The index of the item to start reading from.
- setCustomEditors(Map<? extends Object, ? extends PropertyEditor>) - Method in class org.springframework.batch.support.DefaultPropertyEditorRegistrar
-
- setDatabaseType(String) - Method in class org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean
-
- setDataSource(DataSource) - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
Public setter for the data source for injection purposes.
- setDataSource(DataSource) - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
Setter for the {&link DataSource} that is to be wrapped.
- setDataSource(DataSource) - Method in class org.springframework.batch.item.database.JdbcBatchItemWriter
-
Public setter for the data source for injection purposes.
- setDataSource(DataSource) - Method in class org.springframework.batch.item.database.JdbcPagingItemReader
-
- setDataSource(DataSource) - Method in class org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean
-
- setDateFormat(DateFormat) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- setDateFormat(DateFormat) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSetFactory
-
- setDefaultValue(String) - Method in class org.springframework.batch.support.SystemPropertyInitializer
-
Mandatory property specifying the default value of the System property.
- setDelegate(ResourceAwareItemReaderItemStream<? extends T>) - Method in class org.springframework.batch.item.file.MultiResourceItemReader
-
- setDelegate(ResourceAwareItemWriterItemStream<? super T>) - Method in class org.springframework.batch.item.file.MultiResourceItemWriter
-
Delegate used for actual writing of the output.
- setDelegate(LineAggregator<T>) - Method in class org.springframework.batch.item.file.transform.RecursiveCollectionLineAggregator
-
Public setter for the
LineAggregator
to use on single items, that
are not Strings.
- setDelegate(ItemReader<T>) - Method in class org.springframework.batch.item.support.SingleItemPeekableItemReader
-
The item reader to use as a delegate.
- setDelegates(List<? extends ItemProcessor<?, ?>>) - Method in class org.springframework.batch.item.support.CompositeItemProcessor
-
- setDelegates(List<ItemWriter<? super T>>) - Method in class org.springframework.batch.item.support.CompositeItemWriter
-
- setDelete(boolean) - Method in class org.springframework.batch.item.data.MongoItemWriter
-
Indicates if the items being passed to the writer are to be saved or
removed from the data store.
- setDelete(boolean) - Method in class org.springframework.batch.item.data.Neo4jItemWriter
-
- setDelete(boolean) - Method in class org.springframework.batch.item.KeyValueItemWriter
-
Sets the delete flag to have the item writer perform deletes
- setDelimiter(String) - Method in class org.springframework.batch.item.file.transform.DelimitedLineAggregator
-
Public setter for the delimiter.
- setDelimiter(String) - Method in class org.springframework.batch.item.file.transform.DelimitedLineTokenizer
-
Setter for the delimiter character.
- setDistanceLimit(int) - Method in class org.springframework.batch.item.file.mapping.BeanWrapperFieldSetMapper
-
The maximum difference that can be tolerated in spelling between input
key names and bean property names.
- setDriverSupportsAbsolute(boolean) - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
Indicate whether the JDBC driver supports setting the absolute row on a
ResultSet
.
- setEncoding(String) - Method in class org.springframework.batch.item.file.FlatFileItemReader
-
Setter for the encoding for this input source.
- setEncoding(String) - Method in class org.springframework.batch.item.file.FlatFileItemWriter
-
Sets encoding for output template.
- setEncoding(String) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Set encoding to be used for output file.
- setEncoding(String) - Method in class org.springframework.batch.support.transaction.TransactionAwareBufferedWriter
-
- setEntityClass(Class<E>) - Method in class org.springframework.batch.item.database.orm.HibernateNativeQueryProvider
-
- setEntityClass(Class<E>) - Method in class org.springframework.batch.item.database.orm.JpaNativeQueryProvider
-
- setEntityManager(EntityManager) - Method in class org.springframework.batch.item.database.orm.AbstractJpaQueryProvider
-
- setEntityManager(EntityManager) - Method in interface org.springframework.batch.item.database.orm.JpaQueryProvider
-
Provide an EntityManager
for the query to be built.
- setEntityManagerFactory(EntityManagerFactory) - Method in class org.springframework.batch.item.database.JpaItemWriter
-
Set the EntityManager to be used internally.
- setEntityManagerFactory(EntityManagerFactory) - Method in class org.springframework.batch.item.database.JpaPagingItemReader
-
- setExceptionClasses(Collection<Class<? extends Throwable>>) - Method in class org.springframework.batch.repeat.exception.SimpleLimitExceptionHandler
-
Setter for the exception classes that this handler counts.
- setExceptionClassifier(Classifier<Throwable, LogOrRethrowExceptionHandler.Level>) - Method in class org.springframework.batch.repeat.exception.LogOrRethrowExceptionHandler
-
Setter for the Classifier
used by this handler.
- setExceptionHandler(ExceptionHandler) - Method in class org.springframework.batch.repeat.support.RepeatTemplate
-
Setter for exception handler strategy.
- setExecutionContextName(String) - Method in class org.springframework.batch.item.ItemStreamSupport
-
- setFatalExceptionClasses(Collection<Class<? extends Throwable>>) - Method in class org.springframework.batch.repeat.exception.SimpleLimitExceptionHandler
-
Setter for the exception classes that shouldn't be counted, but rethrown
immediately.
- setFetchSize(int) - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
Gives the JDBC driver a hint as to the number of rows that should be
fetched from the database when more rows are needed for this
ResultSet
object.
- setFetchSize(int) - Method in class org.springframework.batch.item.database.HibernateCursorItemReader
-
Fetch size used internally by Hibernate to limit amount of data fetched
from database per round trip.
- setFetchSize(int) - Method in class org.springframework.batch.item.database.HibernatePagingItemReader
-
Fetch size used internally by Hibernate to limit amount of data fetched
from database per round trip.
- setFetchSize(int) - Method in class org.springframework.batch.item.database.JdbcPagingItemReader
-
Gives the JDBC driver a hint as to the number of rows that should be
fetched from the database when more rows are needed for this
ResultSet
object.
- setFieldExtractor(FieldExtractor<T>) - Method in class org.springframework.batch.item.file.transform.ExtractorLineAggregator
-
Public setter for the field extractor responsible for splitting an input
object up into an array of objects.
- setFields(String) - Method in class org.springframework.batch.item.data.MongoItemReader
-
JSON defining the fields to be returned from the matching documents
by MongoDB.
- setFieldSetFactory(FieldSetFactory) - Method in class org.springframework.batch.item.file.transform.AbstractLineTokenizer
-
- setFieldSetMapper(FieldSetMapper<T>) - Method in class org.springframework.batch.item.file.mapping.DefaultLineMapper
-
- setFieldSetMappers(Map<String, FieldSetMapper<T>>) - Method in class org.springframework.batch.item.file.mapping.PatternMatchingCompositeLineMapper
-
- setFieldsUsedAsTargetMethodArguments(String[]) - Method in class org.springframework.batch.item.adapter.PropertyExtractingDelegatingItemWriter
-
- setFilter(boolean) - Method in class org.springframework.batch.item.validator.ValidatingItemProcessor
-
Should the processor filter invalid records instead of skipping them?
- setFooterCallback(FlatFileFooterCallback) - Method in class org.springframework.batch.item.file.FlatFileItemWriter
-
footerCallback will be called after writing the last item to file, but
before the file is closed.
- setFooterCallback(StaxWriterCallback) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
footerCallback is called after writing all items but before closing the
file
- setForceDisjointRanges(boolean) - Method in class org.springframework.batch.item.file.transform.RangeArrayPropertyEditor
-
Set force disjoint ranges.
- setForceSync(boolean) - Method in class org.springframework.batch.item.file.FlatFileItemWriter
-
Flag to indicate that changes should be force-synced to disk on flush.
- setForceSync(boolean) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Flag to indicate that changes should be force-synced to disk on flush.
- setForceSync(boolean) - Method in class org.springframework.batch.support.transaction.TransactionAwareBufferedWriter
-
Flag to indicate that changes should be force-synced to disk on flush.
- setFormat(String) - Method in class org.springframework.batch.item.file.transform.FormatterLineAggregator
-
Set the format string used to aggregate items.
- setFragmentRootElementName(String) - Method in class org.springframework.batch.item.xml.StaxEventItemReader
-
- setFromClause(String) - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
- setFromClause(String) - Method in class org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean
-
- setFunction(boolean) - Method in class org.springframework.batch.item.database.StoredProcedureItemReader
-
Set whether this stored procedure is a function.
- setGroupClause(String) - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
The setter for the group by clause
- setGroupClause(String) - Method in class org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean
-
- setHandlers(ExceptionHandler[]) - Method in class org.springframework.batch.repeat.exception.CompositeExceptionHandler
-
- setHeaderCallback(FlatFileHeaderCallback) - Method in class org.springframework.batch.item.file.FlatFileItemWriter
-
headerCallback will be called before writing the first item to file.
- setHeaderCallback(StaxWriterCallback) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
headerCallback is called before writing any items.
- setHibernateTemplate(HibernateOperations) - Method in class org.springframework.batch.item.database.HibernateItemWriter
-
Deprecated.
As of 2.2 in favor of using Hibernate's session management APIs directly
- setHint(String) - Method in class org.springframework.batch.item.data.MongoItemReader
-
JSON String telling MongoDB what index to use.
- setIgnoreItemStream(boolean) - Method in class org.springframework.batch.item.support.CompositeItemWriter
-
- setIgnoreWarnings(boolean) - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
Set whether SQLWarnings should be ignored (only logged) or exception
should be thrown.
- setIgnoreWhitespace(boolean) - Method in class org.springframework.batch.item.file.separator.SuffixRecordSeparatorPolicy
-
Flag to indicate that the decision to terminate a record should ignore
whitespace at the end of the line.
- setIncludedFields(int[]) - Method in class org.springframework.batch.item.file.transform.DelimitedLineTokenizer
-
The fields to include in the output by position (starting at 0).
- setIncrementerColumnName(String) - Method in class org.springframework.batch.item.database.support.DefaultDataFieldMaxValueIncrementerFactory
-
Public setter for the column name (defaults to "ID") in the incrementer.
- setItemCount(int) - Method in interface org.springframework.batch.item.ItemCountAware
-
Setter for the injection of the current item count.
- setItemCountLimitPerResource(int) - Method in class org.springframework.batch.item.file.MultiResourceItemWriter
-
After this limit is exceeded the next chunk will be written into newly
created resource.
- setItemKeyMapper(Converter<V, K>) - Method in class org.springframework.batch.item.KeyValueItemWriter
-
Set the Converter
to use to derive the key from the item
- setItemPreparedStatementSetter(ItemPreparedStatementSetter<T>) - Method in class org.springframework.batch.item.database.JdbcBatchItemWriter
-
- setItemSqlParameterSourceProvider(ItemSqlParameterSourceProvider<T>) - Method in class org.springframework.batch.item.database.JdbcBatchItemWriter
-
- setItemType(Class<? extends T>) - Method in class org.springframework.batch.item.amqp.AmqpItemReader
-
- setItemType(Class<? extends T>) - Method in class org.springframework.batch.item.jms.JmsItemReader
-
Set the expected type of incoming message payloads.
- setJavaMailSender(JavaMailSender) - Method in class org.springframework.batch.item.mail.javamail.MimeMessageItemWriter
-
- setJdbcTemplate(NamedParameterJdbcOperations) - Method in class org.springframework.batch.item.database.JdbcBatchItemWriter
-
Public setter for the NamedParameterJdbcOperations
.
- setJmsTemplate(JmsOperations) - Method in class org.springframework.batch.item.jms.JmsItemReader
-
Setter for jms template.
- setJmsTemplate(JmsOperations) - Method in class org.springframework.batch.item.jms.JmsItemWriter
-
Setter for JMS template.
- setJmsTemplate(JmsOperations) - Method in class org.springframework.batch.item.jms.JmsMethodInvocationRecoverer
-
Setter for jms template.
- setKeyName(String) - Method in class org.springframework.batch.support.SystemPropertyInitializer
-
Set the key name for the System property that is created.
- setLimit(int) - Method in class org.springframework.batch.repeat.exception.SimpleLimitExceptionHandler
-
The limit on the given exception type within a single context before it
is rethrown.
- setLineAggregator(LineAggregator<T>) - Method in class org.springframework.batch.item.file.FlatFileItemWriter
-
- setLineEnding(String) - Method in class org.springframework.batch.item.file.SimpleBinaryBufferedReaderFactory
-
- setLineMapper(LineMapper<T>) - Method in class org.springframework.batch.item.file.FlatFileItemReader
-
Setter for line mapper.
- setLineSeparator(String) - Method in class org.springframework.batch.item.file.FlatFileItemWriter
-
Public setter for the line separator.
- setLinesToSkip(int) - Method in class org.springframework.batch.item.file.FlatFileItemReader
-
Public setter for the number of lines to skip at the start of a file.
- setLineTokenizer(LineTokenizer) - Method in class org.springframework.batch.item.file.mapping.DefaultLineMapper
-
- setListeners(RepeatListener[]) - Method in class org.springframework.batch.repeat.listener.CompositeRepeatListener
-
Public setter for the listeners.
- setListeners(RepeatListener[]) - Method in class org.springframework.batch.repeat.support.RepeatTemplate
-
Set the listeners for this template, registering them for callbacks at
appropriate times in the iteration.
- setLocale(Locale) - Method in class org.springframework.batch.item.file.transform.FormatterLineAggregator
-
Public setter for the locale.
- setLoginTimeout(int) - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
- setLogWriter(PrintWriter) - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
- setMailErrorHandler(MailErrorHandler) - Method in class org.springframework.batch.item.mail.javamail.MimeMessageItemWriter
-
The handler for failed messages.
- setMailErrorHandler(MailErrorHandler) - Method in class org.springframework.batch.item.mail.SimpleMailMessageItemWriter
-
The handler for failed messages.
- setMailSender(MailSender) - Method in class org.springframework.batch.item.mail.SimpleMailMessageItemWriter
-
- setMarshaller(Marshaller) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Set Object to XML marshaller.
- setMatchStatement(String) - Method in class org.springframework.batch.item.data.Neo4jItemReader
-
An optional match fragment of the cypher query.
- setMaxCount(int) - Method in class org.springframework.batch.repeat.policy.CountingCompletionPolicy
-
Setter for maximum value of count before termination.
- setMaximumLength(int) - Method in class org.springframework.batch.item.file.transform.FormatterLineAggregator
-
Public setter for the maximum length of the formatted string.
- setMaxItemCount(int) - Method in class org.springframework.batch.item.support.AbstractItemCountingItemStreamItemReader
-
The maximum index of the items to be read.
- setMaxMessageLength(int) - Method in class org.springframework.batch.item.mail.DefaultMailErrorHandler
-
The limit for the size of message that will be copied to the exception
message.
- setMaxRows(int) - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
Sets the limit for the maximum number of rows that any
ResultSet
object can contain to the given number.
- setMethodName(String) - Method in class org.springframework.batch.item.data.RepositoryItemReader
-
Specifies what method on the repository to call.
- setMethodName(String) - Method in class org.springframework.batch.item.data.RepositoryItemWriter
-
Specifies what method on the repository to call.
- setMinimumLength(int) - Method in class org.springframework.batch.item.file.transform.FormatterLineAggregator
-
Public setter for the minimum length of the formatted string.
- setName(String) - Method in class org.springframework.batch.item.ItemStreamSupport
-
The name of the component which will be used as a stem for keys in the
ExecutionContext
.
- setName(String) - Method in class org.springframework.batch.item.util.ExecutionContextUserSupport
-
- setNames(String[]) - Method in class org.springframework.batch.item.file.transform.AbstractLineTokenizer
-
Setter for column names.
- setNames(String[]) - Method in class org.springframework.batch.item.file.transform.BeanWrapperFieldExtractor
-
- setNumberFormat(NumberFormat) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSet
-
- setNumberFormat(NumberFormat) - Method in class org.springframework.batch.item.file.transform.DefaultFieldSetFactory
-
- setOrderByStatement(String) - Method in class org.springframework.batch.item.data.Neo4jItemReader
-
A list of properties to order the results by.
- setOverwriteOutput(boolean) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Set "overwrite" flag for the output file.
- setPageSize(int) - Method in class org.springframework.batch.item.data.AbstractPaginatedDataItemReader
-
The number of items to be read with each page.
- setPageSize(int) - Method in class org.springframework.batch.item.data.RepositoryItemReader
-
- setPageSize(int) - Method in class org.springframework.batch.item.database.AbstractPagingItemReader
-
The number of rows to retrieve at a time.
- setParameters(SqlParameter[]) - Method in class org.springframework.batch.item.database.StoredProcedureItemReader
-
Add one or more declared parameters.
- setParameterValues(List<Object>) - Method in class org.springframework.batch.item.data.MongoItemReader
-
List
of values to be substituted in for each of the
parameters in the query.
- setParameterValues(Map<String, Object>) - Method in class org.springframework.batch.item.database.HibernateCursorItemReader
-
The parameter values to apply to a query (map of name:value).
- setParameterValues(Map<String, Object>) - Method in class org.springframework.batch.item.database.HibernatePagingItemReader
-
The parameter values to apply to a query (map of name:value).
- setParameterValues(Map<String, Object>) - Method in class org.springframework.batch.item.database.IbatisPagingItemReader
-
The parameter values to be used for the query execution.
- setParameterValues(Map<String, Object>) - Method in class org.springframework.batch.item.database.JdbcPagingItemReader
-
The parameter values to be used for the query execution.
- setParameterValues(Map<String, Object>) - Method in class org.springframework.batch.item.database.JpaPagingItemReader
-
The parameter values to be used for the query execution.
- setPattern(Pattern) - Method in class org.springframework.batch.item.file.transform.RegexLineTokenizer
-
Sets the regex pattern to use.
- setPolicies(CompletionPolicy[]) - Method in class org.springframework.batch.repeat.policy.CompositeCompletionPolicy
-
Setter for the policies.
- setPreparedStatementSetter(PreparedStatementSetter) - Method in class org.springframework.batch.item.database.JdbcCursorItemReader
-
Set the PreparedStatementSetter to use if any parameter values that need
to be set in the supplied query.
- setPreparedStatementSetter(PreparedStatementSetter) - Method in class org.springframework.batch.item.database.StoredProcedureItemReader
-
Set the PreparedStatementSetter to use if any parameter values that need
to be set in the supplied query.
- setProcedureName(String) - Method in class org.springframework.batch.item.database.StoredProcedureItemReader
-
Set the SQL statement to be used when creating the cursor.
- setPrototypeBeanName(String) - Method in class org.springframework.batch.item.file.mapping.BeanWrapperFieldSetMapper
-
- setQuery(String) - Method in class org.springframework.batch.item.data.MongoItemReader
-
A JSON formatted MongoDB query.
- setQueryId(String) - Method in class org.springframework.batch.item.database.IbatisPagingItemReader
-
- setQueryName(String) - Method in class org.springframework.batch.item.database.HibernateCursorItemReader
-
A query name for an externalized query.
- setQueryName(String) - Method in class org.springframework.batch.item.database.HibernateItemReaderHelper
-
- setQueryName(String) - Method in class org.springframework.batch.item.database.HibernatePagingItemReader
-
A query name for an externalized query.
- setQueryProvider(HibernateQueryProvider) - Method in class org.springframework.batch.item.database.HibernateCursorItemReader
-
A query provider.
- setQueryProvider(HibernateQueryProvider) - Method in class org.springframework.batch.item.database.HibernateItemReaderHelper
-
- setQueryProvider(HibernateQueryProvider) - Method in class org.springframework.batch.item.database.HibernatePagingItemReader
-
A query provider.
- setQueryProvider(PagingQueryProvider) - Method in class org.springframework.batch.item.database.JdbcPagingItemReader
-
- setQueryProvider(JpaQueryProvider) - Method in class org.springframework.batch.item.database.JpaPagingItemReader
-
- setQueryString(String) - Method in class org.springframework.batch.item.database.HibernateCursorItemReader
-
A query string in HQL.
- setQueryString(String) - Method in class org.springframework.batch.item.database.HibernateItemReaderHelper
-
- setQueryString(String) - Method in class org.springframework.batch.item.database.HibernatePagingItemReader
-
A query string in HQL.
- setQueryString(String) - Method in class org.springframework.batch.item.database.JpaPagingItemReader
-
- setQueryTimeout(int) - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
Sets the number of seconds the driver will wait for a
Statement
object to execute to the given number of seconds.
- setQuoteCharacter(String) - Method in class org.springframework.batch.item.file.separator.DefaultRecordSeparatorPolicy
-
Public setter for the quoteCharacter.
- setQuoteCharacter(char) - Method in class org.springframework.batch.item.file.transform.DelimitedLineTokenizer
-
Public setter for the quoteCharacter.
- setRecordSeparatorPolicy(RecordSeparatorPolicy) - Method in class org.springframework.batch.item.file.FlatFileItemReader
-
Public setter for the recordSeparatorPolicy.
- setRefCursorPosition(int) - Method in class org.springframework.batch.item.database.StoredProcedureItemReader
-
Set the parameter position of the REF CURSOR.
- setRegex(String) - Method in class org.springframework.batch.item.file.transform.RegexLineTokenizer
-
Sets the regular expression to use.
- setRepeatOperations(RepeatOperations) - Method in class org.springframework.batch.repeat.interceptor.RepeatOperationsInterceptor
-
- setRepository(PagingAndSortingRepository) - Method in class org.springframework.batch.item.data.RepositoryItemReader
-
The PagingAndSortingRepository
implementation used to read input from.
- setRepository(CrudRepository) - Method in class org.springframework.batch.item.data.RepositoryItemWriter
-
Set the CrudRepository
implementation
for persistence
- setResource(Resource) - Method in class org.springframework.batch.item.file.FlatFileItemReader
-
Public setter for the input resource.
- setResource(Resource) - Method in class org.springframework.batch.item.file.FlatFileItemWriter
-
Setter for resource.
- setResource(Resource) - Method in class org.springframework.batch.item.file.MultiResourceItemWriter
-
Prototype for output resources.
- setResource(Resource) - Method in interface org.springframework.batch.item.file.ResourceAwareItemReaderItemStream
-
- setResource(Resource) - Method in interface org.springframework.batch.item.file.ResourceAwareItemWriterItemStream
-
- setResource(Resource) - Method in interface org.springframework.batch.item.ResourceAware
-
- setResource(Resource) - Method in class org.springframework.batch.item.xml.StaxEventItemReader
-
- setResource(Resource) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Set output file.
- setResources(Resource[]) - Method in class org.springframework.batch.item.file.MultiResourceItemReader
-
- setResources(Resource[]) - Method in class org.springframework.batch.item.file.ResourcesItemReader
-
The resources to serve up as items.
- setResourceSuffixCreator(ResourceSuffixCreator) - Method in class org.springframework.batch.item.file.MultiResourceItemWriter
-
Allows customization of the suffix of the created resources based on the
index.
- setResultConverter(ResultConverter) - Method in class org.springframework.batch.item.data.Neo4jItemReader
-
Set the converter used to convert node to the targetType.
- setReturnStatement(String) - Method in class org.springframework.batch.item.data.Neo4jItemReader
-
The return statement of the cypher query.
- setRootElementAttributes(Map<String, String>) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Set the root element attributes to be written.
- setRootTagName(String) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Set the tag name of the root element.
- setRowMapper(RowMapper) - Method in class org.springframework.batch.item.database.JdbcCursorItemReader
-
Set the RowMapper to be used for all calls to read().
- setRowMapper(RowMapper) - Method in class org.springframework.batch.item.database.JdbcPagingItemReader
-
The row mapper implementation to be used by this reader.
- setRowMapper(RowMapper) - Method in class org.springframework.batch.item.database.StoredProcedureItemReader
-
Set the RowMapper to be used for all calls to read().
- setSaveState(boolean) - Method in class org.springframework.batch.item.file.FlatFileItemWriter
-
Set the flag indicating whether or not state should be saved in the
provided
ExecutionContext
during the
ItemStream
call to
update.
- setSaveState(boolean) - Method in class org.springframework.batch.item.file.MultiResourceItemReader
-
Set the boolean indicating whether or not state should be saved in the provided
ExecutionContext
during
the
ItemStream
call to update.
- setSaveState(boolean) - Method in class org.springframework.batch.item.file.MultiResourceItemWriter
-
- setSaveState(boolean) - Method in class org.springframework.batch.item.support.AbstractItemCountingItemStreamItemReader
-
Set the flag that determines whether to save internal data for
ExecutionContext
.
- setSaveState(boolean) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
- setSelectClause(String) - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
- setSelectClause(String) - Method in class org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean
-
- setSession(Session) - Method in class org.springframework.batch.item.database.orm.AbstractHibernateQueryProvider
-
- setSession(Session) - Method in interface org.springframework.batch.item.database.orm.HibernateQueryProvider
-
Inject a Session
that can be used as a factory for queries.
- setSessionFactory(SessionFactory) - Method in class org.springframework.batch.item.database.HibernateCursorItemReader
-
The Hibernate SessionFactory to use the create a session.
- setSessionFactory(SessionFactory) - Method in class org.springframework.batch.item.database.HibernateItemReaderHelper
-
- setSessionFactory(SessionFactory) - Method in class org.springframework.batch.item.database.HibernateItemWriter
-
Set the Hibernate SessionFactory to be used internally.
- setSessionFactory(SessionFactory) - Method in class org.springframework.batch.item.database.HibernatePagingItemReader
-
The Hibernate SessionFactory to use the create a session.
- setShouldDeleteIfEmpty(boolean) - Method in class org.springframework.batch.item.file.FlatFileItemWriter
-
Flag to indicate that the target file should be deleted if no lines have
been written (other than header and footer) on close.
- setShouldDeleteIfEmpty(boolean) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Flag to indicate that the target file should be deleted if no items have
been written (other than header and footer) on close.
- setShouldDeleteIfExists(boolean) - Method in class org.springframework.batch.item.file.FlatFileItemWriter
-
Flag to indicate that the target file should be deleted if it already
exists, otherwise it will be created.
- setSkippedLinesCallback(LineCallbackHandler) - Method in class org.springframework.batch.item.file.FlatFileItemReader
-
- setSort(Map<String, Sort.Direction>) - Method in class org.springframework.batch.item.data.MongoItemReader
-
Map
of property names/
Sort.Direction
values to
sort the input by.
- setSort(Map<String, Sort.Direction>) - Method in class org.springframework.batch.item.data.RepositoryItemReader
-
Provides ordering of the results so that order is maintained between paged queries
- setSortKey(String) - Method in class org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean
-
- setSortKeys(Map<String, Order>) - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
- setSortKeys(Map<String, Order>) - Method in class org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean
-
- setSql(String) - Method in class org.springframework.batch.item.database.JdbcBatchItemWriter
-
Public setter for the query string to execute on write.
- setSql(String) - Method in class org.springframework.batch.item.database.JdbcCursorItemReader
-
Set the SQL statement to be used when creating the cursor.
- setSqlMapClient(SqlMapClient) - Method in class org.springframework.batch.item.database.IbatisBatchItemWriter
-
Public setter for SqlMapClient
for injection purposes.
- setSqlMapClient(SqlMapClient) - Method in class org.springframework.batch.item.database.IbatisPagingItemReader
-
- setSqlMapClientTemplate(SqlMapClientTemplate) - Method in class org.springframework.batch.item.database.IbatisBatchItemWriter
-
Public setter for the SqlMapClientTemplate.
- setSqlQuery(String) - Method in class org.springframework.batch.item.database.orm.HibernateNativeQueryProvider
-
- setSqlQuery(String) - Method in class org.springframework.batch.item.database.orm.JpaNativeQueryProvider
-
- setStartStatement(String) - Method in class org.springframework.batch.item.data.Neo4jItemReader
-
The start segment of the cypher query.
- setStatelessSession(StatelessSession) - Method in class org.springframework.batch.item.database.orm.AbstractHibernateQueryProvider
-
- setStatelessSession(StatelessSession) - Method in interface org.springframework.batch.item.database.orm.HibernateQueryProvider
-
Inject a StatelessSession
that can be used as a factory for
queries.
- setStatementId(String) - Method in class org.springframework.batch.item.database.IbatisBatchItemWriter
-
Public setter for the statement id identifying the statement in the SqlMap
configuration file.
- setStreams(ItemStream[]) - Method in class org.springframework.batch.item.support.CompositeItemStream
-
Public setter for the listeners.
- setStrict(boolean) - Method in class org.springframework.batch.item.file.FlatFileItemReader
-
- setStrict(boolean) - Method in class org.springframework.batch.item.file.mapping.BeanWrapperFieldSetMapper
-
Public setter for the 'strict' property.
- setStrict(boolean) - Method in class org.springframework.batch.item.file.MultiResourceItemReader
-
- setStrict(boolean) - Method in class org.springframework.batch.item.file.transform.AbstractLineTokenizer
-
Public setter for the strict flag.
- setStrict(boolean) - Method in class org.springframework.batch.item.xml.StaxEventItemReader
-
- setSuffix(String) - Method in class org.springframework.batch.item.file.separator.SuffixRecordSeparatorPolicy
-
Lines ending in this terminator String signal the end of a record.
- setTargetMethod(String) - Method in class org.springframework.batch.item.adapter.AbstractMethodInvokingDelegator
-
- setTargetObject(Object) - Method in class org.springframework.batch.item.adapter.AbstractMethodInvokingDelegator
-
- setTargetType(Class<? extends T>) - Method in class org.springframework.batch.item.data.MongoItemReader
-
- setTargetType(Class) - Method in class org.springframework.batch.item.data.Neo4jItemReader
-
- setTargetType(Class<? extends T>) - Method in class org.springframework.batch.item.file.mapping.BeanWrapperFieldSetMapper
-
Public setter for the type of bean to create instead of using a prototype
bean.
- setTaskExecutor(TaskExecutor) - Method in class org.springframework.batch.repeat.support.TaskExecutorRepeatTemplate
-
Setter for task executor to be used to run the individual item callbacks.
- setTemplate(GemfireTemplate) - Method in class org.springframework.batch.item.data.GemfireItemWriter
-
- setTemplate(MongoOperations) - Method in class org.springframework.batch.item.data.MongoItemReader
-
Used to perform operations against the MongoDB instance.
- setTemplate(MongoOperations) - Method in class org.springframework.batch.item.data.MongoItemWriter
-
Set the MongoOperations
to be used to save items to be written.
- setTemplate(Neo4jOperations) - Method in class org.springframework.batch.item.data.Neo4jItemReader
-
Used to perform operations against the Neo4J database.
- setTemplate(Neo4jOperations) - Method in class org.springframework.batch.item.data.Neo4jItemWriter
-
Set the Neo4jOperations
to be used to save items
- setTerminateOnly() - Method in class org.springframework.batch.repeat.context.RepeatContextSupport
-
- setTerminateOnly() - Method in interface org.springframework.batch.repeat.RepeatContext
-
Signal to the framework that the current batch should complete
abnormally, independent of the current
CompletionPolicy
.
- setThresholds(Map<Class<? extends Throwable>, Integer>) - Method in class org.springframework.batch.repeat.exception.RethrowOnThresholdExceptionHandler
-
A map from exception classes to a threshold value of type Integer.
- setThrottleLimit(int) - Method in class org.springframework.batch.repeat.support.TaskExecutorRepeatTemplate
-
Public setter for the throttle limit.
- setTokenizers(Map<String, LineTokenizer>) - Method in class org.springframework.batch.item.file.mapping.PatternMatchingCompositeLineMapper
-
- setTokenizers(Map<String, LineTokenizer>) - Method in class org.springframework.batch.item.file.transform.PatternMatchingCompositeLineTokenizer
-
- setTransacted(boolean) - Method in class org.springframework.batch.item.database.JpaPagingItemReader
-
By default (true) the EntityTransaction will be started and committed around the read.
- setTransactional(boolean) - Method in class org.springframework.batch.item.file.FlatFileItemWriter
-
Flag to indicate that writing to the buffer should be delayed if a
transaction is active.
- setTransactional(boolean) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Flag to indicate that writes should be deferred to the end of a
transaction if present.
- setUnmarshaller(Unmarshaller) - Method in class org.springframework.batch.item.xml.StaxEventItemReader
-
- setUpOutputFile(File, boolean, boolean, boolean) - Static method in class org.springframework.batch.item.util.FileUtils
-
Set up output file for batch processing.
- setUpOutputFile(File, boolean, boolean) - Static method in class org.springframework.batch.item.util.FileUtils
-
Deprecated.
use the version with explicit append parameter instead. Here append=false is assumed.
- setUseParent(boolean) - Method in class org.springframework.batch.repeat.exception.RethrowOnThresholdExceptionHandler
-
Flag to indicate the the exception counters should be shared between
sibling contexts in a nested batch.
- setUseParent(boolean) - Method in class org.springframework.batch.repeat.exception.SimpleLimitExceptionHandler
-
Flag to indicate the the exception counters should be shared between
sibling contexts in a nested batch (i.e.
- setUseParent(boolean) - Method in class org.springframework.batch.repeat.policy.CountingCompletionPolicy
-
Flag to indicate whether the count is at the level of the parent context,
or just local to the context.
- setUseSharedExtendedConnection(boolean) - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
Indicate whether the connection used for the cursor should be used by all other processing
thus sharing the same transaction.
- setUseStatelessSession(boolean) - Method in class org.springframework.batch.item.database.HibernateCursorItemReader
-
Can be set only in uninitialized state.
- setUseStatelessSession(boolean) - Method in class org.springframework.batch.item.database.HibernateItemReaderHelper
-
Can be set only in uninitialized state.
- setUseStatelessSession(boolean) - Method in class org.springframework.batch.item.database.HibernatePagingItemReader
-
Can be set only in uninitialized state.
- setValidator(Validator) - Method in class org.springframework.batch.item.validator.SpringValidator
-
- setValidator(Validator<? super T>) - Method in class org.springframework.batch.item.validator.ValidatingItemProcessor
-
Set the validator used to validate each item.
- setValues(T, PreparedStatement) - Method in interface org.springframework.batch.item.database.ItemPreparedStatementSetter
-
Set parameter values on the given PreparedStatement as determined from
the provided item.
- setValues(Map<String, Object>, PreparedStatement) - Method in class org.springframework.batch.item.database.support.ColumnMapItemPreparedStatementSetter
-
- setVerifyCursorPosition(boolean) - Method in class org.springframework.batch.item.database.AbstractCursorItemReader
-
Allow verification of cursor position after current row is processed by
RowMapper or RowCallbackHandler.
- setVersion(String) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Set XML version to be used for output XML.
- setWhereClause(String) - Method in class org.springframework.batch.item.database.support.AbstractSqlPagingQueryProvider
-
- setWhereClause(String) - Method in class org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean
-
- setWhereStatement(String) - Method in class org.springframework.batch.item.data.Neo4jItemReader
-
An optional where fragement of the cypher query.
- shouldClose(Connection) - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
- SimpleBinaryBufferedReaderFactory - Class in org.springframework.batch.item.file
-
A
BufferedReaderFactory
useful for reading simple binary (or text)
files with no line endings, such as those produced by mainframe copy books.
- SimpleBinaryBufferedReaderFactory() - Constructor for class org.springframework.batch.item.file.SimpleBinaryBufferedReaderFactory
-
- SimpleCompletionPolicy - Class in org.springframework.batch.repeat.policy
-
Policy for terminating a batch after a fixed number of operations.
- SimpleCompletionPolicy() - Constructor for class org.springframework.batch.repeat.policy.SimpleCompletionPolicy
-
- SimpleCompletionPolicy(int) - Constructor for class org.springframework.batch.repeat.policy.SimpleCompletionPolicy
-
- SimpleCompletionPolicy.SimpleTerminationContext - Class in org.springframework.batch.repeat.policy
-
- SimpleCompletionPolicy.SimpleTerminationContext(RepeatContext) - Constructor for class org.springframework.batch.repeat.policy.SimpleCompletionPolicy.SimpleTerminationContext
-
- SimpleLimitExceptionHandler - Class in org.springframework.batch.repeat.exception
-
Simple implementation of exception handler which looks for given exception
types.
- SimpleLimitExceptionHandler(int) - Constructor for class org.springframework.batch.repeat.exception.SimpleLimitExceptionHandler
-
- SimpleLimitExceptionHandler() - Constructor for class org.springframework.batch.repeat.exception.SimpleLimitExceptionHandler
-
- SimpleMailMessageItemWriter - Class in org.springframework.batch.item.mail
-
- SimpleMailMessageItemWriter() - Constructor for class org.springframework.batch.item.mail.SimpleMailMessageItemWriter
-
- SimpleMethodInvoker - Class in org.springframework.batch.support
-
Simple implementation of the
MethodInvoker
interface that invokes a
method on an object.
- SimpleMethodInvoker(Object, Method) - Constructor for class org.springframework.batch.support.SimpleMethodInvoker
-
- SimpleMethodInvoker(Object, String, Class<?>...) - Constructor for class org.springframework.batch.support.SimpleMethodInvoker
-
- SimpleRecordSeparatorPolicy - Class in org.springframework.batch.item.file.separator
-
- SimpleRecordSeparatorPolicy() - Constructor for class org.springframework.batch.item.file.separator.SimpleRecordSeparatorPolicy
-
- SimpleResourceSuffixCreator - Class in org.springframework.batch.item.file
-
- SimpleResourceSuffixCreator() - Constructor for class org.springframework.batch.item.file.SimpleResourceSuffixCreator
-
- SingleItemPeekableItemReader<T> - Class in org.springframework.batch.item.support
-
- SingleItemPeekableItemReader() - Constructor for class org.springframework.batch.item.support.SingleItemPeekableItemReader
-
- size() - Method in class org.springframework.batch.item.ExecutionContext
-
Returns number of entries in the context
- SpELItemKeyMapper<K,V> - Class in org.springframework.batch.item
-
An implementation of Converter
that uses SpEL to map a Value to a key
- SpELItemKeyMapper(String) - Constructor for class org.springframework.batch.item.SpELItemKeyMapper
-
- SpELMappingGemfireItemWriter<K,V> - Class in org.springframework.batch.item.data
-
- SpringValidator<T> - Class in org.springframework.batch.item.validator
-
- SpringValidator() - Constructor for class org.springframework.batch.item.validator.SpringValidator
-
- SqlPagingQueryProviderFactoryBean - Class in org.springframework.batch.item.database.support
-
- SqlPagingQueryProviderFactoryBean() - Constructor for class org.springframework.batch.item.database.support.SqlPagingQueryProviderFactoryBean
-
- SqlPagingQueryUtils - Class in org.springframework.batch.item.database.support
-
Utility class that generates the actual SQL statements used by query
providers.
- SqlPagingQueryUtils() - Constructor for class org.springframework.batch.item.database.support.SqlPagingQueryUtils
-
- SqlServerPagingQueryProvider - Class in org.springframework.batch.item.database.support
-
- SqlServerPagingQueryProvider() - Constructor for class org.springframework.batch.item.database.support.SqlServerPagingQueryProvider
-
- SqlWindowingPagingQueryProvider - Class in org.springframework.batch.item.database.support
-
Generic Paging Query Provider using standard SQL:2003 windowing functions.
- SqlWindowingPagingQueryProvider() - Constructor for class org.springframework.batch.item.database.support.SqlWindowingPagingQueryProvider
-
- start(RepeatContext) - Method in interface org.springframework.batch.repeat.CompletionPolicy
-
Create a new context for the execution of a batch.
- start(RepeatContext) - Method in class org.springframework.batch.repeat.policy.CompletionPolicySupport
-
- start(RepeatContext) - Method in class org.springframework.batch.repeat.policy.CompositeCompletionPolicy
-
Create a new composite context from all the available policies.
- start(RepeatContext) - Method in class org.springframework.batch.repeat.policy.CountingCompletionPolicy
-
- start(RepeatContext) - Method in class org.springframework.batch.repeat.policy.SimpleCompletionPolicy
-
Reset the counter.
- start(RepeatContext) - Method in class org.springframework.batch.repeat.policy.TimeoutTerminationPolicy
-
Start the clock on the timeout.
- start() - Method in class org.springframework.batch.repeat.support.RepeatTemplate
-
- startCloseSuppression(Connection) - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
- startDocument(XMLEventWriter) - Method in class org.springframework.batch.item.xml.StaxEventItemWriter
-
Writes simple XML header containing:
xml declaration - defines encoding and XML version
opening tag of the root element and its attributes
If this is not sufficient for you, simply override this method.
- StaxEventItemReader<T> - Class in org.springframework.batch.item.xml
-
Item reader for reading XML input based on StAX.
- StaxEventItemReader() - Constructor for class org.springframework.batch.item.xml.StaxEventItemReader
-
- StaxEventItemWriter<T> - Class in org.springframework.batch.item.xml
-
An implementation of
ItemWriter
which uses StAX and
Marshaller
for serializing object to XML.
- StaxEventItemWriter() - Constructor for class org.springframework.batch.item.xml.StaxEventItemWriter
-
- StaxUtils - Class in org.springframework.batch.item.xml
-
This class provides a little bit of indirection to avoid ugly conditional object creation.
- StaxUtils() - Constructor for class org.springframework.batch.item.xml.StaxUtils
-
- StaxWriterCallback - Interface in org.springframework.batch.item.xml
-
Callback interface for writing to an XML file - useful e.g.
- stopCloseSuppression(Connection) - Method in class org.springframework.batch.item.database.ExtendedConnectionDataSourceProxy
-
- StoredProcedureItemReader<T> - Class in org.springframework.batch.item.database
-
Item reader implementation that executes a stored procedure and then reads the returned cursor
and continually retrieves the next row in the ResultSet
.
- StoredProcedureItemReader() - Constructor for class org.springframework.batch.item.database.StoredProcedureItemReader
-
- stringToProperties(String) - Static method in class org.springframework.batch.support.PropertiesConverter
-
Parse a String to a Properties object.
- SuffixRecordSeparatorPolicy - Class in org.springframework.batch.item.file.separator
-
- SuffixRecordSeparatorPolicy() - Constructor for class org.springframework.batch.item.file.separator.SuffixRecordSeparatorPolicy
-
- SybasePagingQueryProvider - Class in org.springframework.batch.item.database.support
-
- SybasePagingQueryProvider() - Constructor for class org.springframework.batch.item.database.support.SybasePagingQueryProvider
-
- SynchronizedAttributeAccessor - Class in org.springframework.batch.repeat.context
-
An AttributeAccessor
that synchronizes on a mutex (not this) before
modifying or accessing the underlying attributes.
- SynchronizedAttributeAccessor() - Constructor for class org.springframework.batch.repeat.context.SynchronizedAttributeAccessor
-
- SystemPropertyInitializer - Class in org.springframework.batch.support
-
Helper class that sets up a System property with a default value.
- SystemPropertyInitializer() - Constructor for class org.springframework.batch.support.SystemPropertyInitializer
-