Uses of Class
com.opencsv.bean.util.OrderedObject
-
Packages that use OrderedObject Package Description com.opencsv A very simple CSV parser for Java released under a commercial-friendly license.com.opencsv.bean A bean binding interface for use with opencsv.com.opencsv.bean.concurrent This package collects all classes necessary for the parallel processing of beans.com.opencsv.bean.util 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 OrderedObject Modifier and Type Field Description protected java.util.Queue<OrderedObject<java.lang.String>>
CSVReader. peekedLines
-
Uses of OrderedObject in com.opencsv.bean
Fields in com.opencsv.bean with type parameters of type OrderedObject Modifier and Type Field Description private java.util.concurrent.BlockingQueue<OrderedObject<T>>
CsvToBean.CsvToBeanIterator. resultantBeansQueue
private java.util.concurrent.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 OrderedObject Modifier and Type Field Description private java.util.concurrent.BlockingQueue<OrderedObject<T>>
ProcessCsvLine. resultantBeanQueue
private java.util.concurrent.BlockingQueue<OrderedObject<T>>
AccumulateCsvResults. resultantBeansQueue
private java.util.concurrent.BlockingQueue<OrderedObject<java.lang.String[]>>
ProcessCsvBean. resultantLineQueue
protected java.util.concurrent.BlockingQueue<OrderedObject<T>>
IntolerantThreadPoolExecutor. resultQueue
A queue of the beans created.private java.util.concurrent.BlockingQueue<OrderedObject<CsvException>>
AccumulateCsvResults. thrownExceptionsQueue
protected java.util.concurrent.BlockingQueue<OrderedObject<CsvException>>
IntolerantThreadPoolExecutor. thrownExceptionsQueue
A queue of exceptions thrown by threads during processing.private java.util.concurrent.BlockingQueue<OrderedObject<CsvException>>
ProcessCsvBean. thrownExceptionsQueue
private java.util.concurrent.BlockingQueue<OrderedObject<CsvException>>
ProcessCsvLine. thrownExceptionsQueue
Constructor parameters in com.opencsv.bean.concurrent with type arguments of type OrderedObject Constructor Description AccumulateCsvResults(java.util.concurrent.BlockingQueue<OrderedObject<T>> resultantBeansQueue, java.util.concurrent.BlockingQueue<OrderedObject<CsvException>> thrownExceptionsQueue, java.util.SortedSet<java.lang.Long> expectedRecords, java.util.concurrent.ConcurrentMap<java.lang.Long,T> resultantBeanMap, org.apache.commons.collections4.ListValuedMap<java.lang.Long,CsvException> thrownExceptionsMap)
The only accepted constructor for the accumulator.ProcessCsvBean(long lineNumber, MappingStrategy<T> mappingStrategy, T bean, java.util.concurrent.BlockingQueue<OrderedObject<java.lang.String[]>> resultantLineQueue, java.util.concurrent.BlockingQueue<OrderedObject<CsvException>> thrownExceptionsQueue, java.util.SortedSet<java.lang.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, java.util.List<BeanVerifier<T>> verifiers, java.lang.String[] line, java.util.concurrent.BlockingQueue<OrderedObject<T>> resultantBeanQueue, java.util.concurrent.BlockingQueue<OrderedObject<CsvException>> thrownExceptionsQueue, java.util.SortedSet<java.lang.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 OrderedObject Modifier and Type Method Description static void
OpencsvUtils. handleException(CsvException e, long lineNumber, CsvExceptionHandler exceptionHandler, java.util.concurrent.BlockingQueue<OrderedObject<CsvException>> queue)
A function to consolidate code common to handling exceptions thrown during reading or writing of CSV files.
-