Uses of Class
com.opencsv.bean.util.OrderedObject
Packages that use OrderedObject
Package
Description
A very simple CSV parser for Java released under a commercial-friendly license.
A bean binding interface for use with opencsv.
This package collects all classes necessary for the parallel processing of
beans.
This is a package of utility classes for internal use.
-
Uses of OrderedObject in com.opencsv
Fields in com.opencsv with type parameters of type OrderedObjectModifier and TypeFieldDescriptionprotected final Queue<OrderedObject<String>> CSVReader.peekedLines -
Uses of OrderedObject in com.opencsv.bean
Fields in com.opencsv.bean with type parameters of type OrderedObjectModifier and TypeFieldDescriptionprivate final BlockingQueue<OrderedObject<T>> CsvToBean.CsvToBeanIterator.resultantBeansQueueprivate final BlockingQueue<OrderedObject<CsvException>> CsvToBean.CsvToBeanIterator.thrownExceptionsQueue -
Uses of OrderedObject in com.opencsv.bean.concurrent
Fields in com.opencsv.bean.concurrent with type parameters of type OrderedObjectModifier and TypeFieldDescriptionprivate final BlockingQueue<OrderedObject<T>> ProcessCsvLine.resultantBeanQueueprivate final BlockingQueue<OrderedObject<T>> AccumulateCsvResults.resultantBeansQueueprivate final BlockingQueue<OrderedObject<String[]>> ProcessCsvBean.resultantLineQueueprotected final BlockingQueue<OrderedObject<T>> IntolerantThreadPoolExecutor.resultQueueA queue of the beans created.private final BlockingQueue<OrderedObject<CsvException>> AccumulateCsvResults.thrownExceptionsQueueprotected final BlockingQueue<OrderedObject<CsvException>> IntolerantThreadPoolExecutor.thrownExceptionsQueueA queue of exceptions thrown by threads during processing.private final BlockingQueue<OrderedObject<CsvException>> ProcessCsvBean.thrownExceptionsQueueprivate final BlockingQueue<OrderedObject<CsvException>> ProcessCsvLine.thrownExceptionsQueueConstructor parameters in com.opencsv.bean.concurrent with type arguments of type OrderedObjectModifierConstructorDescription(package private)AccumulateCsvResults(BlockingQueue<OrderedObject<T>> resultantBeansQueue, BlockingQueue<OrderedObject<CsvException>> thrownExceptionsQueue, SortedSet<Long> expectedRecords, ConcurrentMap<Long, T> resultantBeanMap, org.apache.commons.collections4.ListValuedMap<Long, CsvException> thrownExceptionsMap) The only accepted constructor for the accumulator.ProcessCsvBean(long lineNumber, MappingStrategy<T> mappingStrategy, T bean, BlockingQueue<OrderedObject<String[]>> resultantLineQueue, BlockingQueue<OrderedObject<CsvException>> thrownExceptionsQueue, SortedSet<Long> expectedRecords, CsvExceptionHandler exceptionHandler) The only constructor for creating a line of CSV output out of a bean.ProcessCsvLine(long lineNumber, MappingStrategy<? extends T> mapper, CsvToBeanFilter filter, List<BeanVerifier<T>> verifiers, String[] line, BlockingQueue<OrderedObject<T>> resultantBeanQueue, BlockingQueue<OrderedObject<CsvException>> thrownExceptionsQueue, SortedSet<Long> expectedRecords, CsvExceptionHandler exceptionHandler) The only constructor for creating a bean out of a line of input. -
Uses of OrderedObject in com.opencsv.bean.util
Method parameters in com.opencsv.bean.util with type arguments of type OrderedObjectModifier and TypeMethodDescriptionstatic voidOpencsvUtils.handleException(CsvException e, long lineNumber, CsvExceptionHandler exceptionHandler, BlockingQueue<OrderedObject<CsvException>> queue) A function to consolidate code common to handling exceptions thrown during reading or writing of CSV files.