Copy disabled (too large)
Download .txt
Showing preview only (41,290K chars total). Download the full file to get everything.
Repository: FasterXML/jackson-dataformats-text
Branch: 3.x
Commit: 0c273247564c
Files: 1808
Total size: 38.9 MB
Directory structure:
gitextract_uyirh5rw/
├── .gitattributes
├── .github/
│ ├── FUNDING.yml
│ ├── dependabot.yml
│ └── workflows/
│ ├── coverage-comment.yml
│ ├── dep_build_v2.yml
│ ├── dep_build_v3.yml
│ └── main.yml
├── .gitignore
├── .mvn/
│ └── wrapper/
│ ├── MavenWrapperDownloader.java
│ ├── maven-wrapper.jar
│ └── maven-wrapper.properties
├── .travis.yml
├── LICENSE
├── README.md
├── SECURITY.md
├── csv/
│ ├── .gitattributes
│ ├── README.md
│ ├── pom.xml
│ ├── samples/
│ │ └── f_5500_2010_first9999.csv
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ ├── module-info.java
│ │ │ └── tools/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── csv/
│ │ │ ├── CsvCharacterEscapes.java
│ │ │ ├── CsvFactory.java
│ │ │ ├── CsvFactoryBuilder.java
│ │ │ ├── CsvGenerator.java
│ │ │ ├── CsvMapper.java
│ │ │ ├── CsvParser.java
│ │ │ ├── CsvReadException.java
│ │ │ ├── CsvReadFeature.java
│ │ │ ├── CsvSchema.java
│ │ │ ├── CsvValueDecorator.java
│ │ │ ├── CsvValueDecorators.java
│ │ │ ├── CsvWriteException.java
│ │ │ ├── CsvWriteFeature.java
│ │ │ ├── PackageVersion.java.in
│ │ │ └── impl/
│ │ │ ├── BufferedValue.java
│ │ │ ├── CsvDecoder.java
│ │ │ ├── CsvEncoder.java
│ │ │ ├── CsvParserBootstrapper.java
│ │ │ ├── UTF8Reader.java
│ │ │ └── UTF8Writer.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ └── services/
│ │ ├── tools.jackson.core.TokenStreamFactory
│ │ └── tools.jackson.databind.ObjectMapper
│ └── test/
│ ├── java/
│ │ ├── module-info.java
│ │ ├── perf/
│ │ │ ├── BogusOutputStream.java
│ │ │ ├── F5500Entry.java
│ │ │ ├── F5500Reader.java
│ │ │ ├── ManualPerfComparison.java
│ │ │ └── RequestEntry.java
│ │ └── tools/
│ │ └── jackson/
│ │ └── dataformat/
│ │ └── csv/
│ │ ├── CSVFactoryFeaturesTest.java
│ │ ├── ModuleTestBase.java
│ │ ├── NullReader122Test.java
│ │ ├── SchemaCaching288Test.java
│ │ ├── TestVersions.java
│ │ ├── deser/
│ │ │ ├── AnySetterTest.java
│ │ │ ├── ArrayReadTest.java
│ │ │ ├── BasicCSVParserTest.java
│ │ │ ├── BlogPost2021AprilTest.java
│ │ │ ├── BrokenEncodingTest.java
│ │ │ ├── CaseInsensitiveHeader657Test.java
│ │ │ ├── CommentsTest.java
│ │ │ ├── EmptyStringAsMissingTest.java
│ │ │ ├── EmptyStringAsNullTest.java
│ │ │ ├── EmptyUnquotedStringAsNullTest.java
│ │ │ ├── FastParserStreamingCSVReadTest.java
│ │ │ ├── IgnoreUnmappableTest.java
│ │ │ ├── IntOverflow485Test.java
│ │ │ ├── ListField199Test.java
│ │ │ ├── MappingIteratorEnd9Test.java
│ │ │ ├── MissingColumns285Test.java
│ │ │ ├── MissingColumns579Test.java
│ │ │ ├── MissingColumnsTest.java
│ │ │ ├── NullReadTest.java
│ │ │ ├── NullValueUnquotedAsNullTest.java
│ │ │ ├── NumberDeserWithCSVTest.java
│ │ │ ├── ParserAutoCloseTest.java
│ │ │ ├── ParserLocation483Test.java
│ │ │ ├── ParserQuotes643Test.java
│ │ │ ├── ParserTrimSpacesTest.java
│ │ │ ├── ParserWithHeaderTest.java
│ │ │ ├── ReadBracketedArray442Test.java
│ │ │ ├── ReadSequencesTest.java
│ │ │ ├── SequenceRecoveryTest.java
│ │ │ ├── SkipEmptyLines15Test.java
│ │ │ ├── SkipEmptyLines191Test.java
│ │ │ ├── SkipEmptyRows368Test.java
│ │ │ ├── StreamingCSVReadTest.java
│ │ │ ├── TestParserEscapes.java
│ │ │ ├── TestParserNoSchema.java
│ │ │ ├── TestParserQuotes.java
│ │ │ ├── TestParserStrictQuoting.java
│ │ │ ├── TestParserWorkarounds.java
│ │ │ ├── TrailingCommaCSVTest.java
│ │ │ ├── UTF8ReaderTest.java
│ │ │ ├── UnicodeCSVRead497Test.java
│ │ │ └── UnwrappingWithCSVTest.java
│ │ ├── filter/
│ │ │ ├── JsonViewFilteringTest.java
│ │ │ └── StreamingDecoratorsTest.java
│ │ ├── fuzz/
│ │ │ ├── CSVFuzz499695465Test.java
│ │ │ ├── CSVFuzz50036Test.java
│ │ │ └── CSVFuzz50402Test.java
│ │ ├── limits/
│ │ │ ├── CSVBigNumberReadLimitsTest.java
│ │ │ ├── CSVBigStringLimitsTest.java
│ │ │ ├── CSVLargeDocReadLimitsTest.java
│ │ │ └── CSVNameLengthLimitsTest.java
│ │ ├── schema/
│ │ │ ├── CsvSchemaTest.java
│ │ │ ├── PropertyOrder74Test.java
│ │ │ ├── SchemaDefaultView308Test.java
│ │ │ └── SchemaFromBuilder207Test.java
│ │ ├── ser/
│ │ │ ├── ArrayWriteTest.java
│ │ │ ├── CSVGeneratorQuotingTest.java
│ │ │ ├── CSVGeneratorTest.java
│ │ │ ├── CSVJDKSerializationTest.java
│ │ │ ├── FilteringTest.java
│ │ │ ├── GeneratorFileCloseOnErrorTest.java
│ │ │ ├── GeneratorIgnoreUnknown51Test.java
│ │ │ ├── GeneratorIgnoreUnknownTest.java
│ │ │ ├── HeaderWriteTest.java
│ │ │ ├── MaxQuoteCheckCharsTest.java
│ │ │ ├── MultipleWritesTest.java
│ │ │ ├── NullWritingTest.java
│ │ │ ├── ObjectArrayNullWrite10Test.java
│ │ │ ├── ObjectArrayNullWrite116Test.java
│ │ │ ├── QuoteLeadingTrailingWhitespace210Test.java
│ │ │ ├── SchemaReorderTest.java
│ │ │ ├── StrictQuotingNewline479Test.java
│ │ │ ├── TestGeneratorNoSchema.java
│ │ │ ├── TestGeneratorWithCustomSeparators.java
│ │ │ ├── TestGeneratorWithSequences.java
│ │ │ ├── TestWriterWithMissingValues.java
│ │ │ ├── TestWriterWithSomeMoreMissingValues.java
│ │ │ ├── UnicodeWritingTest.java
│ │ │ ├── UnwrappedWriteTest.java
│ │ │ ├── WriteBracketedArray495Test.java
│ │ │ └── dos/
│ │ │ └── CyclicCSVDataSerTest.java
│ │ ├── testutil/
│ │ │ ├── PrefixInputDecorator.java
│ │ │ ├── PrefixOutputDecorator.java
│ │ │ └── failure/
│ │ │ ├── JacksonTestFailureExpected.java
│ │ │ ├── JacksonTestFailureExpectedInterceptor.java
│ │ │ └── JacksonTestShouldFailException.java
│ │ └── tofix/
│ │ └── package-info.java
│ └── resources/
│ └── data/
│ ├── clusterfuzz-testcase-minimized-CSVFuzzer-499695465.csv
│ ├── fuzz-50402.csv
│ └── story-100.csv
├── docs/
│ └── javadoc/
│ ├── csv/
│ │ ├── 2.10/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── csv/
│ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ ├── CsvFactory.html
│ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ ├── CsvGenerator.html
│ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ ├── CsvMapper.html
│ │ │ │ ├── CsvMappingException.html
│ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ ├── CsvParser.html
│ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ ├── CsvSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ │ ├── CsvFactory.html
│ │ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ │ ├── CsvGenerator.html
│ │ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ │ ├── CsvMapper.html
│ │ │ │ │ ├── CsvMappingException.html
│ │ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ │ ├── CsvParser.html
│ │ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ │ ├── CsvSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ ├── UTF8Writer.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ │ └── UTF8Writer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.11/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── csv/
│ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ ├── CsvFactory.html
│ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ ├── CsvGenerator.html
│ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ ├── CsvMapper.html
│ │ │ │ ├── CsvMappingException.html
│ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ ├── CsvParser.html
│ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ ├── CsvSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ │ ├── CsvFactory.html
│ │ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ │ ├── CsvGenerator.html
│ │ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ │ ├── CsvMapper.html
│ │ │ │ │ ├── CsvMappingException.html
│ │ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ │ ├── CsvParser.html
│ │ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ │ ├── CsvSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ ├── UTF8Writer.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ │ └── UTF8Writer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.12/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── csv/
│ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ ├── CsvFactory.html
│ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ ├── CsvGenerator.html
│ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ ├── CsvMapper.html
│ │ │ │ ├── CsvMappingException.html
│ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ ├── CsvParser.html
│ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ ├── CsvSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ │ ├── CsvFactory.html
│ │ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ │ ├── CsvGenerator.html
│ │ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ │ ├── CsvMapper.html
│ │ │ │ │ ├── CsvMappingException.html
│ │ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ │ ├── CsvParser.html
│ │ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ │ ├── CsvSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ ├── UTF8Writer.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ │ └── UTF8Writer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.13/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── csv/
│ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ ├── CsvFactory.html
│ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ ├── CsvGenerator.html
│ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ ├── CsvMapper.html
│ │ │ │ ├── CsvMappingException.html
│ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ ├── CsvParser.html
│ │ │ │ ├── CsvReadException.html
│ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ ├── CsvSchema.html
│ │ │ │ ├── CsvWriteException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ │ ├── CsvFactory.html
│ │ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ │ ├── CsvGenerator.html
│ │ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ │ ├── CsvMapper.html
│ │ │ │ │ ├── CsvMappingException.html
│ │ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ │ ├── CsvParser.html
│ │ │ │ │ ├── CsvReadException.html
│ │ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ │ ├── CsvSchema.html
│ │ │ │ │ ├── CsvWriteException.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ ├── UTF8Writer.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ │ └── UTF8Writer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.14/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── csv/
│ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ ├── CsvFactory.html
│ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ ├── CsvGenerator.html
│ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ ├── CsvMapper.ViewKey.html
│ │ │ │ ├── CsvMapper.html
│ │ │ │ ├── CsvMappingException.html
│ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ ├── CsvParser.html
│ │ │ │ ├── CsvReadException.html
│ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ ├── CsvSchema.html
│ │ │ │ ├── CsvWriteException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ │ ├── CsvFactory.html
│ │ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ │ ├── CsvGenerator.html
│ │ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ │ ├── CsvMapper.ViewKey.html
│ │ │ │ │ ├── CsvMapper.html
│ │ │ │ │ ├── CsvMappingException.html
│ │ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ │ ├── CsvParser.html
│ │ │ │ │ ├── CsvReadException.html
│ │ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ │ ├── CsvSchema.html
│ │ │ │ │ ├── CsvWriteException.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ ├── UTF8Writer.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ │ └── UTF8Writer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── javadoc.sh
│ │ │ ├── options
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── packages
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ └── 2.9/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── csv/
│ │ │ ├── CsvFactory.html
│ │ │ ├── CsvGenerator.Feature.html
│ │ │ ├── CsvGenerator.html
│ │ │ ├── CsvMapper.html
│ │ │ ├── CsvMappingException.html
│ │ │ ├── CsvParser.Feature.html
│ │ │ ├── CsvParser.html
│ │ │ ├── CsvSchema.Builder.html
│ │ │ ├── CsvSchema.Column.html
│ │ │ ├── CsvSchema.ColumnType.html
│ │ │ ├── CsvSchema.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── class-use/
│ │ │ │ ├── CsvFactory.html
│ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ ├── CsvGenerator.html
│ │ │ │ ├── CsvMapper.html
│ │ │ │ ├── CsvMappingException.html
│ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ ├── CsvParser.html
│ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ ├── CsvSchema.html
│ │ │ │ └── PackageVersion.html
│ │ │ ├── impl/
│ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ ├── BufferedValue.html
│ │ │ │ ├── CsvDecoder.html
│ │ │ │ ├── CsvEncoder.html
│ │ │ │ ├── CsvIOContext.html
│ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ ├── LRUMap.html
│ │ │ │ ├── NumberInput.html
│ │ │ │ ├── NumberOutput.html
│ │ │ │ ├── TextBuffer.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── UTF8Writer.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ └── UTF8Writer.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── properties/
│ │ ├── 2.10/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── javaprop/
│ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ ├── JavaPropsParser.html
│ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ │ ├── JavaPropsParser.html
│ │ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ ├── WriterBackedGenerator.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ │ └── WriterBackedGenerator.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── io/
│ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ ├── Latin1Reader.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ │ └── Latin1Reader.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── util/
│ │ │ │ ├── JPropNode.html
│ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ ├── Markers.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JPropNode.html
│ │ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ │ └── Markers.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── javadoc.sh
│ │ │ ├── options
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── packages
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.11/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── javaprop/
│ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ ├── JavaPropsParser.html
│ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ │ ├── JavaPropsParser.html
│ │ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ ├── WriterBackedGenerator.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ │ └── WriterBackedGenerator.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── io/
│ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ ├── Latin1Reader.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ │ └── Latin1Reader.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── util/
│ │ │ │ ├── JPropNode.html
│ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ ├── Markers.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JPropNode.html
│ │ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ │ └── Markers.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.12/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── javaprop/
│ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ ├── JavaPropsParser.html
│ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ │ ├── JavaPropsParser.html
│ │ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ ├── WriterBackedGenerator.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ │ └── WriterBackedGenerator.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── io/
│ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ ├── Latin1Reader.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ │ └── Latin1Reader.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── util/
│ │ │ │ ├── JPropNode.html
│ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ ├── Markers.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JPropNode.html
│ │ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ │ └── Markers.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.13/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── javaprop/
│ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ ├── JavaPropsParser.html
│ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ │ ├── JavaPropsParser.html
│ │ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ ├── WriterBackedGenerator.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ │ └── WriterBackedGenerator.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── io/
│ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ ├── Latin1Reader.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ │ └── Latin1Reader.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── util/
│ │ │ │ ├── JPropNode.html
│ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ ├── Markers.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JPropNode.html
│ │ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ │ └── Markers.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.14/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── javaprop/
│ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ ├── JavaPropsParser.html
│ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ │ ├── JavaPropsParser.html
│ │ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ ├── WriterBackedGenerator.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ │ └── WriterBackedGenerator.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── io/
│ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ ├── Latin1Reader.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ │ └── Latin1Reader.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── util/
│ │ │ │ ├── JPropNode.html
│ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ ├── Markers.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JPropNode.html
│ │ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ │ └── Markers.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ └── 2.9/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── javaprop/
│ │ │ ├── JavaPropsFactory.html
│ │ │ ├── JavaPropsGenerator.html
│ │ │ ├── JavaPropsMapper.html
│ │ │ ├── JavaPropsParser.html
│ │ │ ├── JavaPropsSchema.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── class-use/
│ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ ├── JavaPropsParser.html
│ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ └── PackageVersion.html
│ │ │ ├── impl/
│ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ ├── WriterBackedGenerator.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ └── WriterBackedGenerator.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── io/
│ │ │ │ ├── JPropEscapes.html
│ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ ├── JPropReadContext.html
│ │ │ │ ├── JPropWriteContext.html
│ │ │ │ ├── Latin1Reader.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ └── Latin1Reader.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ └── util/
│ │ │ ├── JPropNode.html
│ │ │ ├── JPropNodeBuilder.html
│ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ ├── JPropPathSplitter.html
│ │ │ ├── Markers.html
│ │ │ ├── class-use/
│ │ │ │ ├── JPropNode.html
│ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ └── Markers.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── toml/
│ │ ├── 2.13/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── toml/
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── TomlFactory.html
│ │ │ │ ├── TomlFactoryBuilder.html
│ │ │ │ ├── TomlMapper.Builder.html
│ │ │ │ ├── TomlMapper.html
│ │ │ │ ├── TomlReadFeature.html
│ │ │ │ ├── TomlStreamReadException.html
│ │ │ │ ├── TomlStreamWriteException.html
│ │ │ │ ├── TomlWriteFeature.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── PackageVersion.html
│ │ │ │ │ ├── TomlFactory.html
│ │ │ │ │ ├── TomlFactoryBuilder.html
│ │ │ │ │ ├── TomlMapper.Builder.html
│ │ │ │ │ ├── TomlMapper.html
│ │ │ │ │ ├── TomlReadFeature.html
│ │ │ │ │ ├── TomlStreamReadException.html
│ │ │ │ │ ├── TomlStreamWriteException.html
│ │ │ │ │ ├── TomlWriteFeature.html
│ │ │ │ │ └── UTF8Reader.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ └── 2.14/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── toml/
│ │ │ ├── PackageVersion.html
│ │ │ ├── TomlFactory.html
│ │ │ ├── TomlFactoryBuilder.html
│ │ │ ├── TomlMapper.Builder.html
│ │ │ ├── TomlMapper.html
│ │ │ ├── TomlReadFeature.html
│ │ │ ├── TomlStreamReadException.html
│ │ │ ├── TomlStreamWriteException.html
│ │ │ ├── TomlWriteFeature.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── class-use/
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── TomlFactory.html
│ │ │ │ ├── TomlFactoryBuilder.html
│ │ │ │ ├── TomlMapper.Builder.html
│ │ │ │ ├── TomlMapper.html
│ │ │ │ ├── TomlReadFeature.html
│ │ │ │ ├── TomlStreamReadException.html
│ │ │ │ ├── TomlStreamWriteException.html
│ │ │ │ ├── TomlWriteFeature.html
│ │ │ │ └── UTF8Reader.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── script.js
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ └── yaml/
│ ├── 2.10/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── yaml/
│ │ │ ├── JacksonYAMLParseException.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── UTF8Writer.html
│ │ │ ├── YAMLFactory.html
│ │ │ ├── YAMLFactoryBuilder.html
│ │ │ ├── YAMLGenerator.Feature.html
│ │ │ ├── YAMLGenerator.html
│ │ │ ├── YAMLMapper.Builder.html
│ │ │ ├── YAMLMapper.html
│ │ │ ├── YAMLParser.Feature.html
│ │ │ ├── YAMLParser.html
│ │ │ ├── class-use/
│ │ │ │ ├── JacksonYAMLParseException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── UTF8Writer.html
│ │ │ │ ├── YAMLFactory.html
│ │ │ │ ├── YAMLFactoryBuilder.html
│ │ │ │ ├── YAMLGenerator.Feature.html
│ │ │ │ ├── YAMLGenerator.html
│ │ │ │ ├── YAMLMapper.Builder.html
│ │ │ │ ├── YAMLMapper.html
│ │ │ │ ├── YAMLParser.Feature.html
│ │ │ │ └── YAMLParser.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ └── snakeyaml/
│ │ │ └── error/
│ │ │ ├── Mark.html
│ │ │ ├── MarkedYAMLException.html
│ │ │ ├── YAMLException.html
│ │ │ ├── class-use/
│ │ │ │ ├── Mark.html
│ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ └── YAMLException.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── javadoc.sh
│ │ ├── options
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── packages
│ │ ├── script.js
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── 2.11/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── yaml/
│ │ │ ├── JacksonYAMLParseException.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── UTF8Writer.html
│ │ │ ├── YAMLFactory.html
│ │ │ ├── YAMLFactoryBuilder.html
│ │ │ ├── YAMLGenerator.Feature.html
│ │ │ ├── YAMLGenerator.html
│ │ │ ├── YAMLMapper.Builder.html
│ │ │ ├── YAMLMapper.html
│ │ │ ├── YAMLParser.Feature.html
│ │ │ ├── YAMLParser.html
│ │ │ ├── class-use/
│ │ │ │ ├── JacksonYAMLParseException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── UTF8Writer.html
│ │ │ │ ├── YAMLFactory.html
│ │ │ │ ├── YAMLFactoryBuilder.html
│ │ │ │ ├── YAMLGenerator.Feature.html
│ │ │ │ ├── YAMLGenerator.html
│ │ │ │ ├── YAMLMapper.Builder.html
│ │ │ │ ├── YAMLMapper.html
│ │ │ │ ├── YAMLParser.Feature.html
│ │ │ │ └── YAMLParser.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ └── snakeyaml/
│ │ │ └── error/
│ │ │ ├── Mark.html
│ │ │ ├── MarkedYAMLException.html
│ │ │ ├── YAMLException.html
│ │ │ ├── class-use/
│ │ │ │ ├── Mark.html
│ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ └── YAMLException.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── script.js
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── 2.12/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── yaml/
│ │ │ ├── JacksonYAMLParseException.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── UTF8Writer.html
│ │ │ ├── YAMLFactory.html
│ │ │ ├── YAMLFactoryBuilder.html
│ │ │ ├── YAMLGenerator.Feature.html
│ │ │ ├── YAMLGenerator.html
│ │ │ ├── YAMLMapper.Builder.html
│ │ │ ├── YAMLMapper.html
│ │ │ ├── YAMLParser.Feature.html
│ │ │ ├── YAMLParser.html
│ │ │ ├── class-use/
│ │ │ │ ├── JacksonYAMLParseException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── UTF8Writer.html
│ │ │ │ ├── YAMLFactory.html
│ │ │ │ ├── YAMLFactoryBuilder.html
│ │ │ │ ├── YAMLGenerator.Feature.html
│ │ │ │ ├── YAMLGenerator.html
│ │ │ │ ├── YAMLMapper.Builder.html
│ │ │ │ ├── YAMLMapper.html
│ │ │ │ ├── YAMLParser.Feature.html
│ │ │ │ └── YAMLParser.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ ├── snakeyaml/
│ │ │ │ └── error/
│ │ │ │ ├── Mark.html
│ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ ├── YAMLException.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── Mark.html
│ │ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ │ └── YAMLException.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ └── util/
│ │ │ ├── StringQuotingChecker.Default.html
│ │ │ ├── StringQuotingChecker.html
│ │ │ ├── class-use/
│ │ │ │ ├── StringQuotingChecker.Default.html
│ │ │ │ └── StringQuotingChecker.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── javadoc.sh
│ │ ├── options
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── packages
│ │ ├── script.js
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── 2.13/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── yaml/
│ │ │ ├── JacksonYAMLParseException.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── UTF8Writer.html
│ │ │ ├── YAMLFactory.html
│ │ │ ├── YAMLFactoryBuilder.html
│ │ │ ├── YAMLGenerator.Feature.html
│ │ │ ├── YAMLGenerator.html
│ │ │ ├── YAMLMapper.Builder.html
│ │ │ ├── YAMLMapper.html
│ │ │ ├── YAMLParser.Feature.html
│ │ │ ├── YAMLParser.html
│ │ │ ├── class-use/
│ │ │ │ ├── JacksonYAMLParseException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── UTF8Writer.html
│ │ │ │ ├── YAMLFactory.html
│ │ │ │ ├── YAMLFactoryBuilder.html
│ │ │ │ ├── YAMLGenerator.Feature.html
│ │ │ │ ├── YAMLGenerator.html
│ │ │ │ ├── YAMLMapper.Builder.html
│ │ │ │ ├── YAMLMapper.html
│ │ │ │ ├── YAMLParser.Feature.html
│ │ │ │ └── YAMLParser.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ ├── snakeyaml/
│ │ │ │ └── error/
│ │ │ │ ├── Mark.html
│ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ ├── YAMLException.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── Mark.html
│ │ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ │ └── YAMLException.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ └── util/
│ │ │ ├── StringQuotingChecker.Default.html
│ │ │ ├── StringQuotingChecker.html
│ │ │ ├── class-use/
│ │ │ │ ├── StringQuotingChecker.Default.html
│ │ │ │ └── StringQuotingChecker.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── javadoc.sh
│ │ ├── options
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── packages
│ │ ├── script.js
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── 2.14/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── yaml/
│ │ │ ├── JacksonYAMLParseException.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── UTF8Writer.html
│ │ │ ├── YAMLFactory.html
│ │ │ ├── YAMLFactoryBuilder.html
│ │ │ ├── YAMLGenerator.Feature.html
│ │ │ ├── YAMLGenerator.html
│ │ │ ├── YAMLMapper.Builder.html
│ │ │ ├── YAMLMapper.html
│ │ │ ├── YAMLParser.Feature.html
│ │ │ ├── YAMLParser.html
│ │ │ ├── class-use/
│ │ │ │ ├── JacksonYAMLParseException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── UTF8Writer.html
│ │ │ │ ├── YAMLFactory.html
│ │ │ │ ├── YAMLFactoryBuilder.html
│ │ │ │ ├── YAMLGenerator.Feature.html
│ │ │ │ ├── YAMLGenerator.html
│ │ │ │ ├── YAMLMapper.Builder.html
│ │ │ │ ├── YAMLMapper.html
│ │ │ │ ├── YAMLParser.Feature.html
│ │ │ │ └── YAMLParser.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ ├── snakeyaml/
│ │ │ │ └── error/
│ │ │ │ ├── Mark.html
│ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ ├── YAMLException.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── Mark.html
│ │ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ │ └── YAMLException.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ └── util/
│ │ │ ├── StringQuotingChecker.Default.html
│ │ │ ├── StringQuotingChecker.html
│ │ │ ├── class-use/
│ │ │ │ ├── StringQuotingChecker.Default.html
│ │ │ │ └── StringQuotingChecker.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── javadoc.sh
│ │ ├── options
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── packages
│ │ ├── script.js
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ └── 2.9/
│ ├── allclasses-frame.html
│ ├── allclasses-noframe.html
│ ├── com/
│ │ └── fasterxml/
│ │ └── jackson/
│ │ └── dataformat/
│ │ └── yaml/
│ │ ├── JacksonYAMLParseException.html
│ │ ├── PackageVersion.html
│ │ ├── UTF8Reader.html
│ │ ├── UTF8Writer.html
│ │ ├── YAMLFactory.html
│ │ ├── YAMLGenerator.Feature.html
│ │ ├── YAMLGenerator.html
│ │ ├── YAMLMapper.html
│ │ ├── YAMLParser.Feature.html
│ │ ├── YAMLParser.html
│ │ ├── class-use/
│ │ │ ├── JacksonYAMLParseException.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── UTF8Writer.html
│ │ │ ├── YAMLFactory.html
│ │ │ ├── YAMLGenerator.Feature.html
│ │ │ ├── YAMLGenerator.html
│ │ │ ├── YAMLMapper.html
│ │ │ ├── YAMLParser.Feature.html
│ │ │ └── YAMLParser.html
│ │ ├── package-frame.html
│ │ ├── package-summary.html
│ │ ├── package-tree.html
│ │ ├── package-use.html
│ │ └── snakeyaml/
│ │ └── error/
│ │ ├── Mark.html
│ │ ├── MarkedYAMLException.html
│ │ ├── YAMLException.html
│ │ ├── class-use/
│ │ │ ├── Mark.html
│ │ │ ├── MarkedYAMLException.html
│ │ │ └── YAMLException.html
│ │ ├── package-frame.html
│ │ ├── package-summary.html
│ │ ├── package-tree.html
│ │ └── package-use.html
│ ├── constant-values.html
│ ├── deprecated-list.html
│ ├── help-doc.html
│ ├── index-all.html
│ ├── index.html
│ ├── overview-frame.html
│ ├── overview-summary.html
│ ├── overview-tree.html
│ ├── package-list
│ ├── serialized-form.html
│ └── stylesheet.css
├── mvnw
├── mvnw.cmd
├── pom.xml
├── properties/
│ ├── .gitattributes
│ ├── README.md
│ ├── pom.xml
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ ├── module-info.java
│ │ │ └── tools/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── javaprop/
│ │ │ ├── JavaPropsFactory.java
│ │ │ ├── JavaPropsFactoryBuilder.java
│ │ │ ├── JavaPropsGenerator.java
│ │ │ ├── JavaPropsMapper.java
│ │ │ ├── JavaPropsParser.java
│ │ │ ├── JavaPropsSchema.java
│ │ │ ├── PackageVersion.java.in
│ │ │ ├── impl/
│ │ │ │ ├── PropertiesBackedGenerator.java
│ │ │ │ └── WriterBackedGenerator.java
│ │ │ ├── io/
│ │ │ │ ├── JPropEscapes.java
│ │ │ │ ├── JPropReadContext.java
│ │ │ │ ├── JPropWriteContext.java
│ │ │ │ ├── Latin1Reader.java
│ │ │ │ └── package-info.java
│ │ │ ├── package-info.java
│ │ │ └── util/
│ │ │ ├── JPropNode.java
│ │ │ ├── JPropNodeBuilder.java
│ │ │ ├── JPropPathSplitter.java
│ │ │ ├── Markers.java
│ │ │ └── package-info.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ └── services/
│ │ ├── tools.jackson.core.TokenStreamFactory
│ │ └── tools.jackson.databind.ObjectMapper
│ └── test/
│ └── java/
│ ├── module-info.java
│ └── tools/
│ └── jackson/
│ └── dataformat/
│ └── javaprop/
│ ├── ArrayGenerationTest.java
│ ├── ArrayParsingTest.java
│ ├── BinaryParsingTest.java
│ ├── CustomSeparatorsTest.java
│ ├── DefaultConfigsTest.java
│ ├── GenerationEscapingTest.java
│ ├── GeneratorFileCloseOnErrorTest.java
│ ├── JDKSerializabilityTest.java
│ ├── MapParsingTest.java
│ ├── ModuleTestBase.java
│ ├── NumberDeserWithPropsTest.java
│ ├── PrefixTest.java
│ ├── PropertiesSupportTest.java
│ ├── SchemaConstructionTest.java
│ ├── SimpleGenerationTest.java
│ ├── SimpleParsingTest.java
│ ├── SimpleStreamingTest.java
│ ├── StreamClosingTest.java
│ ├── TestVersions.java
│ ├── WriteContextResetTest.java
│ ├── constraints/
│ │ ├── DeeplyNestedPropsReadWriteTest.java
│ │ └── PropsReadConstraintsTest.java
│ ├── deser/
│ │ ├── FuzzPropsReadTest.java
│ │ └── convert/
│ │ ├── CoerceToBooleanTest.java
│ │ └── DefaultFromEmptyCoercionsTest.java
│ ├── filter/
│ │ └── StreamingDecoratorsTest.java
│ ├── ser/
│ │ └── dos/
│ │ └── CyclicPropsDataSerTest.java
│ ├── testutil/
│ │ ├── CloseStateInputStream.java
│ │ ├── CloseStateReader.java
│ │ ├── PrefixInputDecorator.java
│ │ ├── PrefixOutputDecorator.java
│ │ └── failure/
│ │ ├── JacksonTestFailureExpected.java
│ │ ├── JacksonTestFailureExpectedInterceptor.java
│ │ └── JacksonTestShouldFailException.java
│ └── util/
│ └── JPropPathSplitterTest.java
├── release-notes/
│ ├── CREDITS
│ ├── CREDITS-2.x
│ ├── CREDITS-old-csv.txt
│ ├── CREDITS-old-properties.txt
│ ├── CREDITS-old-yaml.txt
│ ├── VERSION
│ └── VERSION-2.x
├── toml/
│ ├── .gitattributes
│ ├── LICENSE
│ ├── README.md
│ ├── pom.xml
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ ├── module-info.java
│ │ │ └── tools/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── toml/
│ │ │ ├── PackageVersion.java.in
│ │ │ ├── StringOutputUtil.java
│ │ │ ├── TomlFactory.java
│ │ │ ├── TomlFactoryBuilder.java
│ │ │ ├── TomlGenerator.java
│ │ │ ├── TomlMapper.java
│ │ │ ├── TomlParser.java
│ │ │ ├── TomlReadFeature.java
│ │ │ ├── TomlStreamReadException.java
│ │ │ ├── TomlStreamWriteException.java
│ │ │ ├── TomlToken.java
│ │ │ ├── TomlWriteContext.java
│ │ │ ├── TomlWriteFeature.java
│ │ │ └── UTF8Reader.java
│ │ ├── jflex/
│ │ │ ├── skeleton-toml
│ │ │ └── tools/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── toml/
│ │ │ └── toml.jflex
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ └── services/
│ │ ├── tools.jackson.core.TokenStreamFactory
│ │ └── tools.jackson.databind.ObjectMapper
│ └── test/
│ ├── java/
│ │ ├── module-info.java
│ │ └── tools/
│ │ └── jackson/
│ │ └── dataformat/
│ │ └── toml/
│ │ ├── ComplexPojoReadWriteTest.java
│ │ ├── ComplianceInvalidTest.java
│ │ ├── ComplianceValidTest.java
│ │ ├── FuzzTomlRead57237Test.java
│ │ ├── FuzzTomlReadTest.java
│ │ ├── LongTokenTest.java
│ │ ├── POJOReadWriteTest.java
│ │ ├── StringOutputUtilTest.java
│ │ ├── TomlBigStringsTest.java
│ │ ├── TomlGeneratorFileCloseOnErrorTest.java
│ │ ├── TomlGeneratorTest.java
│ │ ├── TomlMapperTest.java
│ │ ├── TomlMapperTestBase.java
│ │ ├── TomlParserTest.java
│ │ ├── UTF8ReaderTest.java
│ │ ├── dos/
│ │ │ └── CyclicTOMLDataSerTest.java
│ │ └── testutil/
│ │ └── failure/
│ │ ├── JacksonTestFailureExpected.java
│ │ ├── JacksonTestFailureExpectedInterceptor.java
│ │ └── JacksonTestShouldFailException.java
│ └── resources/
│ ├── clusterfuzz-testcase-minimized-TOMLFuzzer-5068015447703552
│ ├── clusterfuzz-testcase-minimized-TOMLFuzzer-6370486359031808
│ └── clusterfuzz-testcase-minimized-TOMLFuzzer-6542204348006400
└── yaml/
├── .gitattributes
├── README.md
├── pom.xml
└── src/
├── main/
│ ├── java/
│ │ ├── module-info.java
│ │ └── tools/
│ │ └── jackson/
│ │ └── dataformat/
│ │ └── yaml/
│ │ ├── JacksonYAMLParseException.java
│ │ ├── JacksonYAMLWriteException.java
│ │ ├── PackageVersion.java.in
│ │ ├── UTF8Reader.java
│ │ ├── UTF8Writer.java
│ │ ├── WriterWrapper.java
│ │ ├── YAMLAnchorReplayingFactory.java
│ │ ├── YAMLAnchorReplayingFactoryBuilder.java
│ │ ├── YAMLAnchorReplayingParser.java
│ │ ├── YAMLFactory.java
│ │ ├── YAMLFactoryBuilder.java
│ │ ├── YAMLGenerator.java
│ │ ├── YAMLMapper.java
│ │ ├── YAMLParser.java
│ │ ├── YAMLReadFeature.java
│ │ ├── YAMLSchema.java
│ │ ├── YAMLWriteFeature.java
│ │ ├── package-info.java
│ │ └── util/
│ │ ├── StringQuotingChecker.java
│ │ └── package-info.java
│ └── resources/
│ └── META-INF/
│ ├── LICENSE
│ ├── NOTICE
│ └── services/
│ ├── tools.jackson.core.TokenStreamFactory
│ └── tools.jackson.databind.ObjectMapper
└── test/
├── java/
│ ├── module-info.java
│ ├── perf/
│ │ ├── MediaItem.java
│ │ ├── YAMLDeserPerf.java
│ │ └── YAMLSerPerf.java
│ └── tools/
│ └── jackson/
│ └── dataformat/
│ └── yaml/
│ ├── ExceptionConversionTest.java
│ ├── JDKSerializabilityTest.java
│ ├── ModuleTestBase.java
│ ├── MultipleDocumentsReadTest.java
│ ├── MultipleDocumentsWriteTest.java
│ ├── TestVersions.java
│ ├── YAMLMapperTest.java
│ ├── constraints/
│ │ ├── DeeplyNestedYAMLReadWriteTest.java
│ │ └── YAMLReadConstraintsTest.java
│ ├── deser/
│ │ ├── BinaryYAMLReadTest.java
│ │ ├── DatabindAdvancedTest.java
│ │ ├── DatabindReadTest.java
│ │ ├── EmptyDocumentDeser154Test.java
│ │ ├── NameQuoting306Test.java
│ │ ├── NullFromEmptyString130Test.java
│ │ ├── NumberDeserWithYAMLTest.java
│ │ ├── ParseBooleanLikeWordsAsStringsTest.java
│ │ ├── ParseOctalNumbers276Test.java
│ │ ├── ParserAutoCloseTest.java
│ │ ├── ParserDupHandlingTest.java
│ │ ├── StreamingParse337Test.java
│ │ ├── StreamingYAMLAnchorReplayingParseTest.java
│ │ ├── StreamingYAMLParseTest.java
│ │ ├── UTF8ReaderTest.java
│ │ ├── UnicodeYAMLRead497Test.java
│ │ ├── YAML12CoreSchema623Test.java
│ │ └── YAML12CoreSchemaParseTest.java
│ ├── filter/
│ │ └── StreamingDecoratorsTest.java
│ ├── fuzz/
│ │ ├── FuzzYAMLRead63274Test.java
│ │ ├── FuzzYAMLRead65855Test.java
│ │ ├── FuzzYAMLReadTest.java
│ │ └── FuzzYAML_65918_Test.java
│ ├── misc/
│ │ ├── ObjectAndTypeId231Test.java
│ │ ├── ObjectAndTypeId232Test.java
│ │ ├── ObjectAndTypeId292Test.java
│ │ ├── ObjectId123Test.java
│ │ ├── ObjectId63Test.java
│ │ ├── ObjectIdTest.java
│ │ ├── ObjectIdWithCreator22Test.java
│ │ ├── ObjectIdWithUUID550Test.java
│ │ ├── PolymorphicDeductionTest.java
│ │ ├── PolymorphicWithObjectId25Test.java
│ │ ├── ReservedNamesTest.java
│ │ └── ReservedValuesTest.java
│ ├── ser/
│ │ ├── BinaryWriteTest.java
│ │ ├── CustomNodeStyleTest.java
│ │ ├── CustomStringQuoting229Test.java
│ │ ├── DatabindWriteTest.java
│ │ ├── GeneratorAutoCloseTest.java
│ │ ├── GeneratorExceptionHandlingTest.java
│ │ ├── GeneratorFeature175Test.java
│ │ ├── GeneratorFeature34Test.java
│ │ ├── GeneratorFeatureTest.java
│ │ ├── GeneratorFileCloseOnErrorTest.java
│ │ ├── GeneratorWithMinimize568Test.java
│ │ ├── GeneratorWithMinimizeTest.java
│ │ ├── GeneratorWithSplitLinesTest.java
│ │ ├── GeneratorWriteCommentTest.java
│ │ ├── SimpleGeneration215Test.java
│ │ ├── SimpleGenerationTest.java
│ │ ├── UTF8WriterTest.java
│ │ ├── YAML12CoreSchema623Test.java
│ │ └── dos/
│ │ └── CyclicYAMLDataSerTest.java
│ ├── testutil/
│ │ ├── PrefixInputDecorator.java
│ │ ├── PrefixOutputDecorator.java
│ │ └── failure/
│ │ ├── JacksonTestFailureExpected.java
│ │ ├── JacksonTestFailureExpectedInterceptor.java
│ │ └── JacksonTestShouldFailException.java
│ ├── tofix/
│ │ ├── IntegerWithUnderscoresRead146Test.java
│ │ ├── LongWithUnderscoresRead146Test.java
│ │ ├── NumberAltIntRead71Test.java
│ │ ├── ObjectIdWithTree2Test.java
│ │ └── SimpleGeneration366NotaBugTest.java
│ └── type/
│ ├── PolymorphicIdTest.java
│ ├── RawTagTest.java
│ └── TypeIdTest.java
└── resources/
├── data/
│ └── fuzz-65918.yaml
└── log4j.properties
================================================
FILE CONTENTS
================================================
================================================
FILE: .gitattributes
================================================
# Do not merge `pom.xml` from older version, as it will typically conflict
pom.xml merge=ours
csv/pom.xml merge=ours
properties/pom.xml merge=ours
yaml/pom.xml merge=ours
================================================
FILE: .github/FUNDING.yml
================================================
tidelift: "maven/com.fasterxml.jackson.dataformat:jackson-dataformats-text"
github: cowtowncoder
================================================
FILE: .github/dependabot.yml
================================================
version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/"
schedule:
interval: "weekly"
================================================
FILE: .github/workflows/coverage-comment.yml
================================================
name: Post Coverage Comment
on:
workflow_run:
workflows: ["Build and Deploy Snapshot"]
types: [completed]
permissions:
pull-requests: write
jobs:
comment:
runs-on: ubuntu-24.04
if: github.event.workflow_run.event == 'pull_request' && github.event.workflow_run.conclusion == 'success'
steps:
- name: Download comment artifact
uses: dawidd6/action-download-artifact@8305c0f1062bb0d184d09ef4493ecb9288447732 # v20
with:
name: pr-comment
path: pr-comment/
run_id: ${{ github.event.workflow_run.id }}
github_token: ${{ secrets.GITHUB_TOKEN }}
- name: Post coverage comment
run: |
PR_NUMBER=$(cat pr-comment/pr-number.txt)
COMMENT_BODY=$(cat pr-comment/comment-body.txt)
# Find and delete existing comment
COMMENT_ID=$(gh pr view $PR_NUMBER --repo ${{ github.repository }} --json comments \
--jq '.comments[] | select(.body | contains("<!-- jacoco-coverage-comment -->")) | .id' | head -1)
if [ -n "$COMMENT_ID" ]; then
gh api -X DELETE "repos/${{ github.repository }}/issues/comments/$COMMENT_ID" || true
fi
# Post new comment
gh pr comment $PR_NUMBER --repo ${{ github.repository }} --body "$COMMENT_BODY"
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
================================================
FILE: .github/workflows/dep_build_v2.yml
================================================
name: Re-build on jackson-databind v2 push
on:
repository_dispatch:
types: [jackson-databind-pushed]
# just for testing
workflow_dispatch:
permissions:
contents: read
jobs:
build:
# Do we want wide matrix build? For now, limited
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
java_version: ['8', '17', '21']
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: 2.x
- name: Set up JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: 'temurin'
java-version: ${{ matrix.java_version }}
cache: 'maven'
- name: Build and test
run: ./mvnw -B -ff -ntp clean verify
# No recursive rebuild (yet?)
================================================
FILE: .github/workflows/dep_build_v3.yml
================================================
name: Re-build on jackson-databind v3 push
on:
repository_dispatch:
types: [jackson-databind-pushed-v3]
# just for testing
workflow_dispatch:
permissions:
contents: read
jobs:
build:
# Do we want wide matrix build? For now, limited
runs-on: 'ubuntu-22.04'
strategy:
fail-fast: false
matrix:
java_version: ['17', '21']
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
with:
ref: 3.x
- name: Set up JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: 'temurin'
java-version: ${{ matrix.java_version }}
cache: 'maven'
- name: Build and test
run: ./mvnw -B -ff -ntp clean verify
# No recursive rebuild (yet?)
================================================
FILE: .github/workflows/main.yml
================================================
name: Build and Deploy Snapshot
on:
push:
branches: ['3.*']
paths-ignore:
- "README.md"
- "release-notes/*"
pull_request:
branches:
paths-ignore:
- "README.md"
- "release-notes/*"
permissions:
contents: read
pull-requests: write
jobs:
build:
runs-on: 'ubuntu-24.04'
strategy:
fail-fast: false
matrix:
java_version: ['17', '21', '25']
include:
- java_version: '17'
release_build: 'R'
env:
JAVA_OPTS: "-XX:+TieredCompilation -XX:TieredStopAtLevel=1"
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up JDK
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: 'temurin'
java-version: ${{ matrix.java_version }}
cache: 'maven'
server-id: central-snapshots
server-username: CI_DEPLOY_USERNAME
server-password: CI_DEPLOY_PASSWORD
# See https://github.com/actions/setup-java/blob/v2/docs/advanced-usage.md#Publishing-using-Apache-Maven
# gpg-private-key: ${{ secrets.MAVEN_GPG_PRIVATE_KEY }} # Value of the GPG private key to import
# gpg-passphrase: MAVEN_GPG_PASSPHRASE # env variable for GPG private key passphrase
- name: Build
run: ./mvnw -B -q -ff -ntp verify
- name: Extract project Maven version
id: projectVersion
run: echo "version=$(./mvnw org.apache.maven.plugins:maven-help-plugin:3.5.1:evaluate -DforceStdout -Dexpression=project.version -q)" >> $GITHUB_OUTPUT
- name: Deploy snapshot
if: ${{ matrix.release_build && github.event_name != 'pull_request' && endsWith(steps.projectVersion.outputs.version, '-SNAPSHOT') }}
env:
CI_DEPLOY_USERNAME: ${{ secrets.CENTRAL_DEPLOY_USERNAME }}
CI_DEPLOY_PASSWORD: ${{ secrets.CENTRAL_DEPLOY_PASSWORD }}
# MAVEN_GPG_PASSPHRASE: ${{ secrets.MAVEN_GPG_PASSPHRASE }}
run: ./mvnw -B -q -ff -DskipTests -ntp source:jar deploy
- name: Generate code coverage
if: ${{ matrix.release_build }}
run: ./mvnw -B -q -ff -ntp test jacoco:report
- name: Publish code coverage
if: ${{ matrix.release_build && github.event_name != 'pull_request' }}
uses: codecov/codecov-action@57e3a136b779b570ffcdbf80b3bdc90e7fab3de2 # v6.0.0
with:
token: ${{ secrets.CODECOV_TOKEN }}
files: ./csv/target/site/jacoco/jacoco.xml,./properties/target/site/jacoco/jacoco.xml,./yaml/target/site/jacoco/jacoco.xml,./toml/target/site/jacoco/jacoco.xml
flags: unittests
- name: Merge JaCoCo CSV reports
if: ${{ matrix.release_build }}
run: |
# Merge all module JaCoCo CSV reports into one file
mkdir -p target
head -1 csv/target/site/jacoco/jacoco.csv > target/jacoco-merged.csv
for module in csv properties yaml toml; do
tail -n +2 "${module}/target/site/jacoco/jacoco.csv" >> target/jacoco-merged.csv
done
- name: Upload coverage report as artifact
if: ${{ matrix.release_build && github.event_name != 'pull_request' }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: jacoco-report
path: target/jacoco-merged.csv
retention-days: 30
- name: Download base branch coverage
if: ${{ matrix.release_build && github.event_name == 'pull_request' }}
uses: dawidd6/action-download-artifact@8305c0f1062bb0d184d09ef4493ecb9288447732 # v20
continue-on-error: true
with:
workflow: main.yml
branch: ${{ github.event.pull_request.base.ref }}
name: jacoco-report
path: base-coverage/
- name: Generate coverage comment
if: ${{ matrix.release_build && github.event_name == 'pull_request' }}
run: |
# Parse JaCoCo CSV to compute coverage percentage
# Columns: GROUP,PACKAGE,CLASS,INSTRUCTION_MISSED(4),INSTRUCTION_COVERED(5),BRANCH_MISSED(6),BRANCH_COVERED(7),...
parse_coverage() {
local csv_file=$1 col_missed=$2 col_covered=$3
awk -F',' -v m="$col_missed" -v c="$col_covered" \
'NR>1 {
total_missed += $m;
total_covered += $c;
}
END {
if (total_missed + total_covered > 0)
printf "%.2f", (total_covered * 100.0) / (total_missed + total_covered)
}' "$csv_file"
}
format_delta() {
local delta=$1
if awk -v d="$delta" 'BEGIN { exit (d >= 0) ? 0 : 1 }'; then
echo "+${delta}%|📈"
else
echo "${delta}%|📉"
fi
}
get_color() {
awk -v v="$1" 'BEGIN {
if (v >= 80) print "brightgreen"
else if (v >= 60) print "green"
else if (v >= 40) print "yellow"
else print "red"
}'
}
# Compute current coverage from JaCoCo CSV
COVERAGE=$(parse_coverage "target/jacoco-merged.csv" 4 5)
BRANCHES=$(parse_coverage "target/jacoco-merged.csv" 6 7)
# Check if base coverage artifact was downloaded and calculate deltas
HAS_DELTA=false
if [ -f "base-coverage/jacoco-merged.csv" ]; then
echo "Found base branch coverage from artifact"
BASE_COVERAGE=$(parse_coverage "base-coverage/jacoco-merged.csv" 4 5)
BASE_BRANCHES=$(parse_coverage "base-coverage/jacoco-merged.csv" 6 7)
if [ -n "$BASE_COVERAGE" ] && [ -n "$BASE_BRANCHES" ]; then
COV_DELTA=$(awk -v curr="$COVERAGE" -v base="$BASE_COVERAGE" 'BEGIN { printf "%.3f", curr - base }')
BR_DELTA=$(awk -v curr="$BRANCHES" -v base="$BASE_BRANCHES" 'BEGIN { printf "%.3f", curr - base }')
IFS='|' read -r COV_DELTA_STR COV_DELTA_EMOJI <<< "$(format_delta "$COV_DELTA")"
IFS='|' read -r BR_DELTA_STR BR_DELTA_EMOJI <<< "$(format_delta "$BR_DELTA")"
HAS_DELTA=true
fi
fi
# Determine badge colors
COV_COLOR=$(get_color "$COVERAGE")
BR_COLOR=$(get_color "$BRANCHES")
# Build coverage table with or without deltas
if [ "$HAS_DELTA" = "true" ]; then
COVERAGE_TABLE="| Metric | Coverage | Change |
|--------|----------|--------|
| **Instructions** |  **${COVERAGE}%** | ${COV_DELTA_EMOJI} **${COV_DELTA_STR}** |
| **Branches** |  **${BRANCHES}%** | ${BR_DELTA_EMOJI} **${BR_DELTA_STR}** |"
else
COVERAGE_TABLE="| Metric | Coverage |
|--------|----------|
| **Instructions** |  **${COVERAGE}%** |
| **Branches** |  **${BRANCHES}%** |"
fi
COMMENT_BODY="## :test_tube: Code Coverage Report
$COVERAGE_TABLE
> Coverage data generated from JaCoCo test results
<!-- jacoco-coverage-comment -->"
# Save comment for the workflow_run
mkdir -p pr-comment
echo "${{ github.event.pull_request.number }}" > pr-comment/pr-number.txt
echo "$COMMENT_BODY" > pr-comment/comment-body.txt
- name: Upload PR comment
if: ${{ matrix.release_build && github.event_name == 'pull_request' }}
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
with:
name: pr-comment
path: pr-comment/
retention-days: 1
================================================
FILE: .gitignore
================================================
# use glob syntax.
syntax: glob
*.class
*~
*.bak
*.off
*.old
.DS_Store
# building
target
# Eclipse
.classpath
.project
.settings
# IDEA
*.iml
*.ipr
*.iws
.idea/
================================================
FILE: .mvn/wrapper/MavenWrapperDownloader.java
================================================
/*
* Copyright 2007-present the original author or authors.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import java.net.*;
import java.io.*;
import java.nio.channels.*;
import java.util.Properties;
public class MavenWrapperDownloader {
private static final String WRAPPER_VERSION = "0.5.6";
/**
* Default URL to download the maven-wrapper.jar from, if no 'downloadUrl' is provided.
*/
private static final String DEFAULT_DOWNLOAD_URL = "https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/"
+ WRAPPER_VERSION + "/maven-wrapper-" + WRAPPER_VERSION + ".jar";
/**
* Path to the maven-wrapper.properties file, which might contain a downloadUrl property to
* use instead of the default one.
*/
private static final String MAVEN_WRAPPER_PROPERTIES_PATH =
".mvn/wrapper/maven-wrapper.properties";
/**
* Path where the maven-wrapper.jar will be saved to.
*/
private static final String MAVEN_WRAPPER_JAR_PATH =
".mvn/wrapper/maven-wrapper.jar";
/**
* Name of the property which should be used to override the default download url for the wrapper.
*/
private static final String PROPERTY_NAME_WRAPPER_URL = "wrapperUrl";
public static void main(String args[]) {
System.out.println("- Downloader started");
File baseDirectory = new File(args[0]);
System.out.println("- Using base directory: " + baseDirectory.getAbsolutePath());
// If the maven-wrapper.properties exists, read it and check if it contains a custom
// wrapperUrl parameter.
File mavenWrapperPropertyFile = new File(baseDirectory, MAVEN_WRAPPER_PROPERTIES_PATH);
String url = DEFAULT_DOWNLOAD_URL;
if(mavenWrapperPropertyFile.exists()) {
FileInputStream mavenWrapperPropertyFileInputStream = null;
try {
mavenWrapperPropertyFileInputStream = new FileInputStream(mavenWrapperPropertyFile);
Properties mavenWrapperProperties = new Properties();
mavenWrapperProperties.load(mavenWrapperPropertyFileInputStream);
url = mavenWrapperProperties.getProperty(PROPERTY_NAME_WRAPPER_URL, url);
} catch (IOException e) {
System.out.println("- ERROR loading '" + MAVEN_WRAPPER_PROPERTIES_PATH + "'");
} finally {
try {
if(mavenWrapperPropertyFileInputStream != null) {
mavenWrapperPropertyFileInputStream.close();
}
} catch (IOException e) {
// Ignore ...
}
}
}
System.out.println("- Downloading from: " + url);
File outputFile = new File(baseDirectory.getAbsolutePath(), MAVEN_WRAPPER_JAR_PATH);
if(!outputFile.getParentFile().exists()) {
if(!outputFile.getParentFile().mkdirs()) {
System.out.println(
"- ERROR creating output directory '" + outputFile.getParentFile().getAbsolutePath() + "'");
}
}
System.out.println("- Downloading to: " + outputFile.getAbsolutePath());
try {
downloadFileFromURL(url, outputFile);
System.out.println("Done");
System.exit(0);
} catch (Throwable e) {
System.out.println("- Error downloading");
e.printStackTrace();
System.exit(1);
}
}
private static void downloadFileFromURL(String urlString, File destination) throws Exception {
if (System.getenv("MVNW_USERNAME") != null && System.getenv("MVNW_PASSWORD") != null) {
String username = System.getenv("MVNW_USERNAME");
char[] password = System.getenv("MVNW_PASSWORD").toCharArray();
Authenticator.setDefault(new Authenticator() {
@Override
protected PasswordAuthentication getPasswordAuthentication() {
return new PasswordAuthentication(username, password);
}
});
}
URL website = new URL(urlString);
ReadableByteChannel rbc;
rbc = Channels.newChannel(website.openStream());
FileOutputStream fos = new FileOutputStream(destination);
fos.getChannel().transferFrom(rbc, 0, Long.MAX_VALUE);
fos.close();
rbc.close();
}
}
================================================
FILE: .mvn/wrapper/maven-wrapper.properties
================================================
# Licensed to the Apache Software Foundation (ASF) under one
# or more contributor license agreements. See the NOTICE file
# distributed with this work for additional information
# regarding copyright ownership. The ASF licenses this file
# to you under the Apache License, Version 2.0 (the
# "License"); you may not use this file except in compliance
# with the License. You may obtain a copy of the License at
#
# https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing,
# software distributed under the License is distributed on an
# "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
# KIND, either express or implied. See the License for the
# specific language governing permissions and limitations
# under the License.
distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.9.6/apache-maven-3.9.6-bin.zip
wrapperUrl=https://repo.maven.apache.org/maven2/org/apache/maven/wrapper/maven-wrapper/3.3.1/maven-wrapper-3.3.1.jar
================================================
FILE: .travis.yml
================================================
language: java
git:
quiet: true
submodules: false
jdk:
- openjdk8
- openjdk11
# 2021-06-25, tatu: Stop snapshot builds via Travis, only check for fails
script: mvn -B clean verify
================================================
FILE: LICENSE
================================================
Apache License
Version 2.0, January 2004
http://www.apache.org/licenses/
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
1. Definitions.
"License" shall mean the terms and conditions for use, reproduction,
and distribution as defined by Sections 1 through 9 of this document.
"Licensor" shall mean the copyright owner or entity authorized by
the copyright owner that is granting the License.
"Legal Entity" shall mean the union of the acting entity and all
other entities that control, are controlled by, or are under common
control with that entity. For the purposes of this definition,
"control" means (i) the power, direct or indirect, to cause the
direction or management of such entity, whether by contract or
otherwise, or (ii) ownership of fifty percent (50%) or more of the
outstanding shares, or (iii) beneficial ownership of such entity.
"You" (or "Your") shall mean an individual or Legal Entity
exercising permissions granted by this License.
"Source" form shall mean the preferred form for making modifications,
including but not limited to software source code, documentation
source, and configuration files.
"Object" form shall mean any form resulting from mechanical
transformation or translation of a Source form, including but
not limited to compiled object code, generated documentation,
and conversions to other media types.
"Work" shall mean the work of authorship, whether in Source or
Object form, made available under the License, as indicated by a
copyright notice that is included in or attached to the work
(an example is provided in the Appendix below).
"Derivative Works" shall mean any work, whether in Source or Object
form, that is based on (or derived from) the Work and for which the
editorial revisions, annotations, elaborations, or other modifications
represent, as a whole, an original work of authorship. For the purposes
of this License, Derivative Works shall not include works that remain
separable from, or merely link (or bind by name) to the interfaces of,
the Work and Derivative Works thereof.
"Contribution" shall mean any work of authorship, including
the original version of the Work and any modifications or additions
to that Work or Derivative Works thereof, that is intentionally
submitted to Licensor for inclusion in the Work by the copyright owner
or by an individual or Legal Entity authorized to submit on behalf of
the copyright owner. For the purposes of this definition, "submitted"
means any form of electronic, verbal, or written communication sent
to the Licensor or its representatives, including but not limited to
communication on electronic mailing lists, source code control systems,
and issue tracking systems that are managed by, or on behalf of, the
Licensor for the purpose of discussing and improving the Work, but
excluding communication that is conspicuously marked or otherwise
designated in writing by the copyright owner as "Not a Contribution."
"Contributor" shall mean Licensor and any individual or Legal Entity
on behalf of whom a Contribution has been received by Licensor and
subsequently incorporated within the Work.
2. Grant of Copyright License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
copyright license to reproduce, prepare Derivative Works of,
publicly display, publicly perform, sublicense, and distribute the
Work and such Derivative Works in Source or Object form.
3. Grant of Patent License. Subject to the terms and conditions of
this License, each Contributor hereby grants to You a perpetual,
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
(except as stated in this section) patent license to make, have made,
use, offer to sell, sell, import, and otherwise transfer the Work,
where such license applies only to those patent claims licensable
by such Contributor that are necessarily infringed by their
Contribution(s) alone or by combination of their Contribution(s)
with the Work to which such Contribution(s) was submitted. If You
institute patent litigation against any entity (including a
cross-claim or counterclaim in a lawsuit) alleging that the Work
or a Contribution incorporated within the Work constitutes direct
or contributory patent infringement, then any patent licenses
granted to You under this License for that Work shall terminate
as of the date such litigation is filed.
4. Redistribution. You may reproduce and distribute copies of the
Work or Derivative Works thereof in any medium, with or without
modifications, and in Source or Object form, provided that You
meet the following conditions:
(a) You must give any other recipients of the Work or
Derivative Works a copy of this License; and
(b) You must cause any modified files to carry prominent notices
stating that You changed the files; and
(c) You must retain, in the Source form of any Derivative Works
that You distribute, all copyright, patent, trademark, and
attribution notices from the Source form of the Work,
excluding those notices that do not pertain to any part of
the Derivative Works; and
(d) If the Work includes a "NOTICE" text file as part of its
distribution, then any Derivative Works that You distribute must
include a readable copy of the attribution notices contained
within such NOTICE file, excluding those notices that do not
pertain to any part of the Derivative Works, in at least one
of the following places: within a NOTICE text file distributed
as part of the Derivative Works; within the Source form or
documentation, if provided along with the Derivative Works; or,
within a display generated by the Derivative Works, if and
wherever such third-party notices normally appear. The contents
of the NOTICE file are for informational purposes only and
do not modify the License. You may add Your own attribution
notices within Derivative Works that You distribute, alongside
or as an addendum to the NOTICE text from the Work, provided
that such additional attribution notices cannot be construed
as modifying the License.
You may add Your own copyright statement to Your modifications and
may provide additional or different license terms and conditions
for use, reproduction, or distribution of Your modifications, or
for any such Derivative Works as a whole, provided Your use,
reproduction, and distribution of the Work otherwise complies with
the conditions stated in this License.
5. Submission of Contributions. Unless You explicitly state otherwise,
any Contribution intentionally submitted for inclusion in the Work
by You to the Licensor shall be under the terms and conditions of
this License, without any additional terms or conditions.
Notwithstanding the above, nothing herein shall supersede or modify
the terms of any separate license agreement you may have executed
with Licensor regarding such Contributions.
6. Trademarks. This License does not grant permission to use the trade
names, trademarks, service marks, or product names of the Licensor,
except as required for reasonable and customary use in describing the
origin of the Work and reproducing the content of the NOTICE file.
7. Disclaimer of Warranty. Unless required by applicable law or
agreed to in writing, Licensor provides the Work (and each
Contributor provides its Contributions) on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
implied, including, without limitation, any warranties or conditions
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
PARTICULAR PURPOSE. You are solely responsible for determining the
appropriateness of using or redistributing the Work and assume any
risks associated with Your exercise of permissions under this License.
8. Limitation of Liability. In no event and under no legal theory,
whether in tort (including negligence), contract, or otherwise,
unless required by applicable law (such as deliberate and grossly
negligent acts) or agreed to in writing, shall any Contributor be
liable to You for damages, including any direct, indirect, special,
incidental, or consequential damages of any character arising as a
result of this License or out of the use or inability to use the
Work (including but not limited to damages for loss of goodwill,
work stoppage, computer failure or malfunction, or any and all
other commercial damages or losses), even if such Contributor
has been advised of the possibility of such damages.
9. Accepting Warranty or Additional Liability. While redistributing
the Work or Derivative Works thereof, You may choose to offer,
and charge a fee for, acceptance of support, warranty, indemnity,
or other liability obligations and/or rights consistent with this
License. However, in accepting such obligations, You may act only
on Your own behalf and on Your sole responsibility, not on behalf
of any other Contributor, and only if You agree to indemnify,
defend, and hold each Contributor harmless for any liability
incurred by, or claims asserted against, such Contributor by reason
of your accepting any such warranty or additional liability.
END OF TERMS AND CONDITIONS
APPENDIX: How to apply the Apache License to your work.
To apply the Apache License to your work, attach the following
boilerplate notice, with the fields enclosed by brackets "[]"
replaced with your own identifying information. (Don't include
the brackets!) The text should be enclosed in the appropriate
comment syntax for the file format. We also recommend that a
file or class name and description of purpose be included on the
same "printed page" as the copyright notice for easier
identification within third-party archives.
Copyright [yyyy] [name of copyright owner]
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
================================================
FILE: README.md
================================================
## Overview
This is a multi-module umbrella project for [Jackson](../../../jackson)
standard text-format dataformat backends.
Dataformat backends are used to support format alternatives to JSON, using
general-purpose Jackson API. Formats included allow access using all 3
API styles (streaming, databinding, tree model).
For Jackson 2.x this is done by sub-classing Jackson core abstractions of:
* All backends sub-class `JsonFactory`, which is factory for:
* `JsonParser` for reading data (decoding data encoding in supported format)
* `JsonGenerator` for writing data (encoding data using supported format)
* Some backends sub-class `ObjectMapper` for additional support for databinding
there will be some changes (such as introduction of format-specific `ObjectMapper`
sub-classes) in Jackson 3.0.
## Branches
`master` branch is for developing the next major Jackson version -- 3.0 -- but there
are active maintenance branches in which much of development happens:
* `2.19` is for developing the next minor 2.x version
* `2.18`/`2.17` are for backported fixes for 2.18/2.17 patch versions (respectively)
Older branches are usually not changed but are available for historic reasons.
All released versions have matching git tags (`jackson-dataformats-text-2.9.4`).
Note that since individual format modules used to live in their own repositories,
older branches and tags do not exist in this repository.
## Textual formats included
Currently included backends are:
* [CSV](csv/)
* [Properties](properties/)
* [TOML](toml/) (since 2.13)
* [YAML](yaml/)
Standard supported formats that are not yet included here (but are likely added
in future) are:
* [XML](../../../jackson-dataformat-xml)
## License
All modules are licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt).
## Status
[](https://travis-ci.org/FasterXML/jackson-dataformats-text)
## Maven dependencies
To use these format backends Maven-based projects, use following dependency:
```xml
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-[FORMAT]</artifactId>
<version>2.18.1</version>
</dependency>
```
where `[FORMAT]` is one of supported modules (`csv`, `properties`, `toml`, `yaml`)
## More
See [Wiki](../../wiki) for more information (javadocs).
================================================
FILE: SECURITY.md
================================================
# Security Policy
Last Updated: 2022-09-20
## Supported Versions
Current status of open branches, with new releases, can be found from [Jackson Releases](https://github.com/FasterXML/jackson/wiki/Jackson-Releases)
wiki page
## Reporting a Vulnerability
The recommended mechanism for reporting possible security vulnerabilities follows
so-called "Coordinated Disclosure Plan" (see [definition of DCP](https://vuls.cert.org/confluence/display/Wiki/Coordinated+Vulnerability+Disclosure+Guidance)
for general idea). The first step is to file a [Tidelift security contact](https://tidelift.com/security):
Tidelift will route all reports via their system to maintainers of relevant package(s), and start the
process that will evaluate concern and issue possible fixes, send update notices and so on.
Note that you do not need to be a Tidelift subscriber to file a security contact.
Alternatively you may also report possible vulnerabilities to `info` at fasterxml dot com
mailing address. Note that filing an issue to go with report is fine, but if you do that please
DO NOT include details of security problem in the issue but only in email contact.
This is important to give us time to provide a patch, if necessary, for the problem.
## Verifying Artifact signatures
(for more in-depth explanation, see [Apache Release Signing](https://infra.apache.org/release-signing#keys-policy) document)
To verify that any given Jackson artifact has been signed with a valid key, have a look at `KEYS` file of the main Jackson repo:
https://github.com/FasterXML/jackson/blob/master/KEYS
which lists all known valid keys in use.
================================================
FILE: csv/.gitattributes
================================================
# Do not merge `pom.xml` from older version, as it will typically conflict
pom.xml merge=ours
================================================
FILE: csv/README.md
================================================
# Overview
[Jackson](https://github.com/FasterXML/jackson) data format module for reading and writing [CSV](http://en.wikipedia.org/wiki/Comma-separated_values) encoded data, either as "raw" data (sequence of String arrays), or via data binding to/from Java Objects (POJOs).
Project is licensed under [Apache License 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt).
# Status
Since version 2.3 this module is considered complete and production ready.
All Jackson layers (streaming, databind, tree model) are supported.
[](https://maven-badges.herokuapp.com/maven-central/com.fasterxml.jackson.dataformat/jackson-dataformat-csv/)
[](http://www.javadoc.io/doc/com.fasterxml.jackson.dataformat/jackson-dataformat-csv)
## Maven dependency
To use this extension on Maven-based projects, use following dependency:
```xml
<dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-csv</artifactId>
<version>2.20.0</version>
</dependency>
```
(with whatever is the latest version)
# Usage
## How-To Documents
* [Reading CSV with Jackson](https://cowtowncoder.medium.com/reading-csv-with-jackson-c4e74a15ddc1) (April 2021)
* [Writing CSV with Jackson](https://cowtowncoder.medium.com/writing-csv-with-jackson-204fdb3c9dac) (October 2021)
## CSV Schema: what is that?
CSV documents are essentially rows of data, instead of JSON Objects (sequences of key/value pairs).
So one potential way to expose this data is to expose a sequence of JSON arrays; and similarly allow writing of arrays.
Jackson supports this use-case (which works if you do not pass "CSV schema"), but it is not a very convenient way.
The alternative (and most commonly used) approach is to use a "CSV schema", object that defines set of names (and optionally types) for columns. This allows `CsvParser` to expose CSV data as if it was a sequence of JSON objects, name/value pairs.
## 3 ways to define Schema
So how do you get a CSV Schema instance to use? There are 3 ways:
* Create schema based on a Java class
* Build schema manually
* Use the first line of CSV document to get the names (no types) for Schema
Here is code for above cases:
```java
// Schema from POJO (usually has @JsonPropertyOrder annotation)
CsvSchema schema = mapper.schemaFor(Pojo.class);
// Manually-built schema: one with type, others default to "STRING"
CsvSchema schema = CsvSchema.builder()
.addColumn("firstName")
.addColumn("lastName")
.addColumn("age", CsvSchema.ColumnType.NUMBER)
.build();
// Read schema from the first line; start with bootstrap instance
// to enable reading of schema from the first line
// NOTE: reads schema and uses it for binding
CsvSchema bootstrapSchema = CsvSchema.emptySchema().withHeader();
ObjectMapper mapper = new CsvMapper();
mapper.readerFor(Pojo.class).with(bootstrapSchema).readValue(csv);
```
It is important to note that the schema object is needed to ensure correct ordering of columns; schema instances are immutable and fully reusable (as are `ObjectWriter` instances).
Note also that while explicit type can help efficiency it is usually not required, as Jackson data binding can do common conversions/coercions such as parsing numbers from Strings.
## Data-binding with schema
CSV content can be read either using `CsvFactory` (and parser, generators it creates) directly, or through `CsvMapper` (extension of standard `ObjectMapper`).
When using `CsvMapper`, you will be creating `ObjectReader` or `ObjectWriter` instances that pass `CsvSchema` along to `CsvParser` / `CsvGenerator`.
When creating parser/generator directly, you will need to explicitly call `setSchema(schema)` before starting to read/write content.
The most common method for reading CSV data, then, is:
```java
CsvMapper mapper = new CsvMapper();
Pojo value = ...;
CsvSchema schema = mapper.schemaFor(Pojo.class); // schema from 'Pojo' definition
String csv = mapper.writer(schema).writeValueAsString(value);
MappingIterator<Pojo> it = mapper.readerFor(Pojo.class).with(schema)
.readValues(csv);
// Either read them all one by one (streaming)
while (it.hasNextValue()) {
Pojo value = it.nextValue();
// ... do something with the value
}
// or, alternatively all in one go
List<Pojo> all = it.readAll();
```
## Data-binding without schema
But even if you do not know (or care) about column names you can read/write CSV documents. The main difference is that in this case data is exposed as a sequence of ("JSON") Arrays, not Objects, as "raw" tabular data.
So let's consider the following CSV input:
```
a,b
c,d
e,f
```
By default, Jackson `CsvParser` would see it as equivalent to the following JSON:
```json
["a","b"]
["c","d"]
["e","f"]
```
This is easy to use; in fact, if you ignore everything to do with Schema from the above examples, you get working code. For example:
```java
CsvMapper mapper = new CsvMapper();
// important: we need "array wrapping" (see next section) here:
mapper.enable(CsvParser.Feature.WRAP_AS_ARRAY);
File csvFile = new File("input.csv"); // or from String, URL etc
MappingIterator<String[]> it = mapper.readerFor(String[].class).readValues(csvFile);
while (it.hasNext()) {
String[] row = it.next();
// and voila, column values in an array. Works with Lists as well
}
```
## With column names from first row
But if you want a "data as Map" approach, with data that has expected column names as the first row,
followed by data rows, you can iterate over entries quite conveniently as well.
Assuming we had CSV content like:
```csv
name,age
Billy,28
Barbara,36
```
we could use the following code:
```java
File csvFile = new File(fileName);
CsvMapper mapper = new CsvMapper();
CsvSchema schema = CsvSchema.emptySchema().withHeader(); // use first row as header; otherwise defaults are fine
MappingIterator<Map<String,String>> it = mapper.readerFor(Map.class)
.with(schema)
.readValues(csvFile);
while (it.hasNext()) {
Map<String,String> rowAsMap = it.next();
// access by column name, as defined in the header row...
}
```
and get two rows as `java.util.Map`s, similar to what JSON like this
```json
{"name":"Billy","age":"28"}
{"name":"Barbara","age":"36"}
```
would produce.
Additionally, to generate a schema for the `Map<String,String>`,
we could do the following :
```java
CsvSchema.Builder schema = new CsvSchema.Builder();
for (String value : map.keySet())
{
schema.addColumn(value, CsvSchema.ColumnType.STRING);
}
new CsvMapper().writerFor(Map.class).with(schema.build());
```
## Adding virtual Array wrapping
In addition to reading things as root-level Objects or arrays, you can also force use of virtual "array wrapping".
This means that using earlier CSV data example, parser would instead expose it similar to following JSON:
```json
[
["a","b"]
["c","d"]
["e","f"]
]
```
This is useful if functionality expects a single ("JSON") Array; this was the case for example when using `ObjectReader.readValues()` functionality.
## Configuring `CsvSchema`
Besides defining how CSV columns are mapped to and from Java Object properties, `CsvSchema` also
defines low-level encoding details. These are details that can be changed by using various `withXxx()` and
`withoutXxx` methods (or through associated `CsvSchema.Builder` object); for example:
```java
CsvSchema schema = mapper.schemaFor(Pojo.class);
// let's do pipe-delimited, not comma-delimited
schema = schema.withColumnSeparator('|')
// and write Java nulls as "NULL" (instead of empty string)
.withNullValue("NULL")
// and let's NOT allow escaping with backslash ('\')
.withoutEscapeChar()
;
ObjectReader r = mapper.readerFor(Pojo.class).with(schema);
Pojo value = r.readValue(csvInput);
```
For a full description of all configurability, please see [CsvSchema](../../../wiki/CsvSchema).
# Documentation
* [Wiki](../../../wiki) (includes javadocs)
* How-to
* [How to read a CSV file with Header in Java using Jackson library](https://www.java67.com/2019/05/how-to-read-csv-file-in-java-using-jackson-library.html) (2019)
* [Converting JSON to CSV in Java](https://www.baeldung.com/java-converting-json-to-csv) (2019)
* [Writing CSV w/ CSVMapper & Mixin annotations](http://demeranville.com/writing-csv-using-jackson-csvmapper-mixin-annotations/) (2014)
* [CSV with Jackson 2.0](http://www.cowtowncoder.com/blog/archives/2012/03/entry_468.html) (2012)
* Framework-specific
* [Read and Write CSV Data with jackson-dataformat-csv](Read and Write CSV Data with jackson-dataformat-csv) (JBeret)
* Performance
* [Java CSV parser comparison](https://github.com/uniVocity/csv-parsers-comparison)
# CSV Compatibility
Since CSV is a very loose "standard", there are many extensions to basic functionality.
Jackson supports the following extension or variations:
* Customizable delimiters (through `CsvSchema`)
* Default separator is comma (`,`), but any other character can be specified as well
* Default text quoting is done using double-quote (`"`), and may be changed
* It is possible to enable use of an "escape character" (by default, not enabled): some variations use `\` for escaping. If enabled, character immediately followed will be used as-is, except for a small set of "well-known" escapes (`\n`, `\r`, `\t`, `\0`)
* Linefeed character: when generating content, the default linefeed String used is "`\n`" but this may be changed
* Null value: by default, null values are serialized as empty Strings (""), but any other String value be configured to be used instead (for example, "null", "N/A" etc)
* Use of first row as a set of column names: as explained earlier, it is possible to configure `CsvSchema` to indicate that the contents of the first (non-comment) document row is taken to mean the set of column names to use
* Comments: when enabled (via `CsvSchema`, or enabling `CsvParser.Feature.ALLOW_COMMENTS`), if a row starts with a `#` character, it will be considered a comment and skipped
* Blank lines: when enabled (using `CsvParser.Feature.SKIP_BLANK_LINES`) rows that are empty or composed only of whitespaces are skipped
# Limitations
* Due to the tabular nature of `CSV` format, deeply nested data structures are not well supported.
* You can use `@JsonUnwrapped` to get around this
* Use of Tree Model (`JsonNode`) is supported, but only within limitations of `CSV` format.
# Future improvements
Areas that are planned to be improved include things like:
* Optimizations to make number handling as efficient as from JSON (but note: even with existing code, performance is typically limited by I/O and NOT parsing or generation)
* Although, as per [Java CSV parser comparison](https://github.com/uniVocity/csv-parsers-comparison), this module is actually performing quite well already
* Mapping of nested POJOs using dotted notation (similar to `@JsonUnwrapped`, but without requiring its use -- note that `@JsonUnwrapped` is already supported)
================================================
FILE: csv/pom.xml
================================================
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<!-- This module was also published with a richer model, Gradle metadata, -->
<!-- which should be used instead. Do not delete the following line which -->
<!-- is to indicate to Gradle or any Gradle module metadata file consumer -->
<!-- that they should prefer consuming it instead. -->
<!-- do_not_remove: published-with-gradle-metadata -->
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>tools.jackson.dataformat</groupId>
<artifactId>jackson-dataformats-text</artifactId>
<version>3.2.0-SNAPSHOT</version>
</parent>
<artifactId>jackson-dataformat-csv</artifactId>
<name>Jackson-dataformat-CSV</name>
<packaging>jar</packaging>
<description>Support for reading and writing CSV-encoded data via Jackson
abstractions.
</description>
<url>https://github.com/FasterXML/jackson-dataformats-text</url>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<properties>
<!-- Generate PackageVersion.java into this directory. -->
<packageVersion.dir>tools/jackson/dataformat/csv</packageVersion.dir>
<packageVersion.package>${project.groupId}.csv</packageVersion.package>
<osgi.private>tools.jackson.dataformat.csv.impl</osgi.private>
<!-- default OSGi import ought to work -->
</properties>
<dependencies>
<dependency>
<groupId>tools.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
</dependency>
<!-- we do not 100% need dep here because it is transitive dependency
through databind: however, since it is needed anyway let's force
suitable version by adding direct dep
-->
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<!-- Inherited from oss-base. Generate PackageVersion.java.-->
<groupId>com.google.code.maven-replacer-plugin</groupId>
<artifactId>replacer</artifactId>
</plugin>
<!-- 29-Apr-2025, tatu: SBOM generation [JSTEP-14] -->
<plugin>
<groupId>org.cyclonedx</groupId>
<artifactId>cyclonedx-maven-plugin</artifactId>
</plugin>
<!-- 05-Jul-2020, tatu: Add generation of Gradle Module Metadata -->
<!-- 28-Feb-2025, jjohannes: Apply plugin last as it has to be the last of all 'package phase' plugins -->
<plugin>
<groupId>org.gradlex</groupId>
<artifactId>gradle-module-metadata-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>
================================================
FILE: csv/samples/f_5500_2010_first9999.csv
================================================
ACK_ID,FORM_PLAN_YEAR_BEGIN_DATE,FORM_TAX_PRD,TYPE_PLAN_ENTITY_CD,TYPE_DFE_PLAN_ENTITY_CD,INITIAL_FILING_IND,AMENDED_IND,FINAL_FILING_IND,SHORT_PLAN_YR_IND,COLLECTIVE_BARGAIN_IND,F5558_APPLICATION_FILED_IND,EXT_AUTOMATIC_IND,DFVC_PROGRAM_IND,EXT_SPECIAL_IND,EXT_SPECIAL_TEXT,PLAN_NAME,SPONS_DFE_PN,PLAN_EFF_DATE,SPONSOR_DFE_NAME,SPONS_DFE_DBA_NAME,SPONS_DFE_CARE_OF_NAME,SPONS_DFE_MAIL_US_ADDRESS1,SPONS_DFE_MAIL_US_ADDRESS2,SPONS_DFE_MAIL_US_CITY,SPONS_DFE_MAIL_US_STATE,SPONS_DFE_MAIL_US_ZIP,SPONS_DFE_MAIL_FOREIGN_ADDR1,SPONS_DFE_MAIL_FOREIGN_ADDR2,SPONS_DFE_MAIL_FOREIGN_CITY,SPONS_DFE_MAIL_FORGN_PROV_ST,SPONS_DFE_MAIL_FOREIGN_CNTRY,SPONS_DFE_MAIL_FORGN_POSTAL_CD,SPONS_DFE_LOC_US_ADDRESS1,SPONS_DFE_LOC_US_ADDRESS2,SPONS_DFE_LOC_US_CITY,SPONS_DFE_LOC_US_STATE,SPONS_DFE_LOC_US_ZIP,SPONS_DFE_LOC_FOREIGN_ADDRESS1,SPONS_DFE_LOC_FOREIGN_ADDRESS2,SPONS_DFE_LOC_FOREIGN_CITY,SPONS_DFE_LOC_FORGN_PROV_ST,SPONS_DFE_LOC_FOREIGN_CNTRY,SPONS_DFE_LOC_FORGN_POSTAL_CD,SPONS_DFE_EIN,SPONS_DFE_PHONE_NUM,BUSINESS_CODE,ADMIN_NAME,ADMIN_CARE_OF_NAME,ADMIN_US_ADDRESS1,ADMIN_US_ADDRESS2,ADMIN_US_CITY,ADMIN_US_STATE,ADMIN_US_ZIP,ADMIN_FOREIGN_ADDRESS1,ADMIN_FOREIGN_ADDRESS2,ADMIN_FOREIGN_CITY,ADMIN_FOREIGN_PROV_STATE,ADMIN_FOREIGN_CNTRY,ADMIN_FOREIGN_POSTAL_CD,ADMIN_EIN,ADMIN_PHONE_NUM,LAST_RPT_SPONS_NAME,LAST_RPT_SPONS_EIN,LAST_RPT_PLAN_NUM,ADMIN_SIGNED_DATE,ADMIN_SIGNED_NAME,SPONS_SIGNED_DATE,SPONS_SIGNED_NAME,DFE_SIGNED_DATE,DFE_SIGNED_NAME,TOT_PARTCP_BOY_CNT,TOT_ACTIVE_PARTCP_CNT,RTD_SEP_PARTCP_RCVG_CNT,RTD_SEP_PARTCP_FUT_CNT,SUBTL_ACT_RTD_SEP_CNT,BENEF_RCVG_BNFT_CNT,TOT_ACT_RTD_SEP_BENEF_CNT,PARTCP_ACCOUNT_BAL_CNT,SEP_PARTCP_PARTL_VSTD_CNT,CONTRIB_EMPLRS_CNT,TYPE_PENSION_BNFT_CODE,TYPE_WELFARE_BNFT_CODE,FUNDING_INSURANCE_IND,FUNDING_SEC412_IND,FUNDING_TRUST_IND,FUNDING_GEN_ASSET_IND,BENEFIT_INSURANCE_IND,BENEFIT_SEC412_IND,BENEFIT_TRUST_IND,BENEFIT_GEN_ASSET_IND,SCH_R_ATTACHED_IND,SCH_MB_ATTACHED_IND,SCH_SB_ATTACHED_IND,SCH_H_ATTACHED_IND,SCH_I_ATTACHED_IND,SCH_A_ATTACHED_IND,NUM_SCH_A_ATTACHED_CNT,SCH_C_ATTACHED_IND,SCH_D_ATTACHED_IND,SCH_G_ATTACHED_IND,FILING_STATUS,DATE_RECEIVED,VALID_ADMIN_SIGNATURE,VALID_DFE_SIGNATURE,VALID_SPONSOR_SIGNATURE
"20100202162239P040068022209001","2007-01-01","2007-12-31","2",,"1","0","0","0","0","0","0","1","0",,"AUTHORIZE.NET HOLDINGS, INC. 401 (K) RETIREMENT PLAN","001","1990-01-01","CYBERSOURCE CORPORATION",,,"1295 CHARLESTON ROAD",,"MOUNTAIN VIEW","CA","94043",,,,,,,,,,,,,,,,,,"043065410","6509656052","541519","CYBERSOURCE CORPORATION",,"1295 CHARLESTON ROAD",,"MOUNTAIN VIEW","CA","94043",,,,,,,"043065410","6509656052","LIGHTBRIDGE, INC.",,"001","2010-02-02T10:10:01Z","DANIELA DINI","2010-02-02T10:21:24Z","STEVEN PELLIZZER",,,650,196,0,317,513,0,513,418,51,,"2E2J2F2G2K3E",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2010-02-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20100203134006P030015135480001","2008-01-01","2008-12-31","2",,"0","0","0","1","0","0","0","0","0",,"KEVIN O. DAVIS MONEY PURCHASE PLAN","001","1998-01-01","KEVIN O. DAVIS","KEVIN O. DAVIS AGENCY",,"4801 FRANKFORD RD SUITE 100",,"DALLAS","TX","75287",,,,,,,"4801 FRANKFORD RD SUITE 100",,"DALLAS","TX","75287",,,,,,,"223457524","9728184223","524210","KEVIN O. DAVIS",,"4801 FRANKFORD RD SUITE 100",,"DALLAS","TX","75287",,,,,,,"223457524","9728184223",,,,"2010-02-03T07:39:51Z","KEVIN DAVIS",,,,,2,2,0,0,2,0,2,2,0,0,"2C3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-02-03","Filed with authorized/valid electronic signature",,
"20110527102330P030065732353001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"UNITED BULK CARRIERS USA, L.L.C. 401K PLAN","002","1995-01-01","UNITED BULK CARRIERS USA, L.L.C.",,,"900 W VALLEY RD STE 100",,"WAYNE","PA","190871850",,,,,,,,,,,,,,,,,,"233002252","6109952600","488300","UNITED BULK CARRIERS USA, L.L.C.",,"900 W VALLEY RD STE 100",,"WAYNE","PA","190871850",,,,,,,"233002252","6109952600",,,,"2011-05-27T10:07:32-0500","MORTEN KIELLAND",,,,,12,12,0,0,12,0,12,12,0,,"2E2F2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-05-27","Filed with authorized/valid electronic signature",,
"20100205114331P040006885459001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COYNE INTERNATIONAL ENTERPRISES CORP. EMPLOYEE BENEFIT PLAN","501","1992-01-21","COYNE INTERNATIONAL ENTERPRISES CORP.",,,"PO BOX 4854","140 CORTLAND AVE.","SYRACUSE","NY","13220",,,,,,,"PO BOX 4854","140 CORTLAND AVE.","SYRACUSE","NY","13220",,,,,,,"166040758","3154751626","812330","COYNE INTERNATIONAL ENTERPRISES CORP.",,"PO BOX 4854","140 CORTLAND AVE.","SYRACUSE","NY","13220",,,,,,,"166040758","3154751626",,,,"2010-02-05T17:36:59Z","RAY RYAN",,,,,2270,2007,,,2007,,2007,,,,,"4A4B4D4H","1",,,,"1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2010-02-05","Filed with authorized/valid electronic signature",,
"20100219064139P040098816577001","2005-05-01","2005-06-30","2",,"0","0","0","1","0","0","0","1","0",,"FAMILY HEALTH CENTER OF WORCESTER, INC. WELFARE PLAN","501","1991-01-01","FAMILY HEALTH CENTER OF WORCESTER INC",,,"26 QUEEN STREET",,"WORCESTER","MA","01610",,,,,,,"26 QUEEN STREET",,"WORCESTER","MA","01610",,,,,,,"042485308","5088607975","621112","FAMILY HEALTH CENTER OF WORCESTER INC",,"26 QUEEN STREET",,"WORCESTER","MA","01610",,,,,,,"042485308","5088607975",,,,"2010-02-18T08:17:55-0600","JEAN LEFEBVRE",,,,,220,224,0,0,224,,224,,,,,"4B4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2010-02-19","Filed with authorized/valid electronic signature",,
"20100312153538P040032397000001","2007-01-01","2007-12-31","2",,"1","0","0","0","0","0","0","1","0",,"DESTINY SOFTWARE, INC. 401(K) PROFIT SHARING & TRUST PLAN","001","2002-01-01","DESTINY SOFTWARE, INC.",,,"PO BOX 827",,"WOODINVILLE","WA","98072",,,,,,,"19724 166TH AVE NE",,"WOODINVILLE","WA","98072",,,,,,,"911606761","4254151777","541990","DESTINY SOFTWARE, INC.",,"PO BOX 827",,"WOODINVILLE","WA","98072",,,,,,,"911606761","4254151777",,,,"2010-03-12T03:25:41-0600","DEAN DICKINSON",,,,,6,2,0,0,2,0,2,2,0,,"2E2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-03-12","Filed with authorized/valid electronic signature",,
"20100402221240P040006153157001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","1","0","0","0",,"SBS TECHNOLOGIES, INC. 401 (K) PROFIT SHARING PLAN","001","1987-09-01","SBS TECHNOLOGIES, INC",,,"7401 SNAPROLL NE",,"ALBUQUERQUE","NM","87109",,,,,,,"7401 SNAPROLL NE",,"ALBUQUERQUE","NM","87109",,,,,,,"850359415","5058750600","541990","SBS TECHNOLOGIES, INC",,"7401 SNAPROLL NE",,"ALBUQUERQUE","NM","87109",,,,,,,"850359415","5058750600",,,,"2010-04-02T04:37:28-0500","KEITH BAUER",,,,,361,0,0,444,444,1,445,445,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,"1","0",,,,,,"FILING_RECEIVED","2010-04-02","Filed with authorized/valid electronic signature",,
"20100405123419P040017504979001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MILLER & WILLIAMSON LLC 401K PLAN","001","2001-01-01","MILLER & WILLIAMSON, LLC",,,"1100 POYDRAS STREET","3150 ENERGY CENTRE","NEW ORLEANS","LA","70163",,,,,,,"1100 POYDRAS STREET","3150 ENERGY CENTRE","NEW ORLEANS","LA","70163",,,,,,,"721425132","5045259800","541110","MILLER & WILLIAMSON, LLC",,"1100 POYDRAS STREET","3150 ENERGY CENTRE","NEW ORLEANS","LA","70163",,,,,,,"721425132","5045259800",,,,"2010-04-05T12:32:58-0500","ILIAURA HANDS",,,,,5,5,0,1,6,0,6,5,0,,"2E2F2G2J2K3E",,,,"1",,,,"1",,"0",,,,"1",,,,,,"FILING_RECEIVED","2010-04-05","Filed with authorized/valid electronic signature",,
"20100422105229P030018829623001","2004-01-01","2004-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ZACHERL, O'MALLEY & ENDEJAN, S.C. 401 (K) PROFIT SHARING PLAN","002","1998-01-01","ZACHERL, OMALLEY & ENDEJAN, SC",,,"115 S. MAIN STREET","P.O. BOX 1424","FOND DU LAC","WI","54935",,,,,,,"115 S. MAIN STREET","P.O. BOX 1424","FOND DU LAC","WI","54935",,,,,,,"391378121","9209227220","541110","ZACHERL, OMALLEY & ENDEJAN, SC",,"115 S. MAIN STREET","P.O. BOX 1424","FOND DU LAC","WI","54935",,,,,,,"391378121","9209227220",,,,,,"2010-04-22T10:52:11-0500","JOHN ZACHERL",,,11,11,0,0,11,0,11,8,0,,"2E2F2G2J2K3E",,"1",,,,"1",,,,,,,,"1","1","1",,,,"FILING_RECEIVED","2010-04-22",,,"Filed with authorized/valid electronic signature"
"20100416155158P030067430978001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"RENAISSANCE TECHNOLOGIES LLC WELFARE BENEFIT PLAN","501","1997-09-01","RENAISSANCE TECHNOLOGIES LLC",,,"800 THIRD AVENUE","34TH FLR","NEW YORK","NY","10022",,,,,,,"800 THIRD AVENUE","34TH FLR","NEW YORK","NY","10022",,,,,,,"260385758","2128211535","523900","RENAISSANCE TECHNOLOGIES LLC",,"800 THIRD AVENUE","34TH FLR","NEW YORK","NY","10022",,,,,,,"260385758","2128211535","RENAISSANCE TECHNOLOGIES","133127734","501","2010-04-14T04:55:38-0500","LAVONNE WESNER",,,,,265,308,5,0,313,0,313,,,,,"4A4B4D4E4H","1",,,"1","1",,,"1",,,,,,"1","3","1",,,"FILING_RECEIVED","2010-04-16","Filed with authorized/valid electronic signature",,
"20100430150851P040231039473001","2008-10-01","2009-09-30","2",,"0","1","0","0","0","0","0","0","0",,"ACE CONTROLS INC EMPLOYEE BENEFIT PLAN","501","1982-05-01","ACE CONTROLS INC",,"ANDREA SMITH","23435 INDUSTRIAL PARK DRIVE",,"FARMINGTON HILLS","MI","48335",,,,,,,"23435 INDUSTRIAL PARK DRIVE",,"FARMINGTON HILLS","MI","48335",,,,,,,"381734380","2484760213","333900","ACE CONTROLS INC","ANDREA SMITH","23435 INDUSTRIAL PARK DRIVE",,"FARMINGTON HILLS","MI","48335",,,,,,,"381734380","2484760213",,,,"2010-04-30T03:05:51-0500","ANDREA SMITH",,,,,142,112,4,,116,,116,,,,,"4A4B4D4L","1",,,,"1",,,,,,,"0","1","1","4",,,,"FILING_RECEIVED","2010-04-30","Filed with authorized/valid electronic signature",,
"20100518114555P040264768913001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"FMA INC. 401K PROFIT SHARING PLAN & TRUST","001","2001-01-01","FMA INC.",,,"5713 INDUSTRY LANE","SUITE 50","FREDERICK","MD","21704",,,,,,,"5713 INDUSTRY LANE","SUITE 50","FREDERICK","MD","21704",,,,,,,"521400351","3016687614","333900","FMA INC.",,"5713 INDUSTRY LANE","SUITE 50","FREDERICK","MD","21704",,,,,,,"521400351","3016687614",,,,"2010-05-18T11:45:35-0500","CINDY MARKS",,,,,8,5,0,3,8,0,8,7,0,,"2E2G2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-05-18","Filed with authorized/valid electronic signature",,
"20100603142355P040028676803001","2004-07-01","2005-06-30","2",,"1","0","0","0","0","0","0","1","0",,"CE DENTAL PLAN","509","1987-09-01","CARROLL ENTERPRISES INC DENTAL PLAN",,,"554 MAIN STREET",,"WORCESTER","MA","01608",,,,,,,"554 MAIN STREET",,"WORCESTER","MA","01608",,,,,,,"042497441","5087700215","541990","CARROLL ENTERPRISES INC DENTAL PLAN",,"554 MAIN STREET",,"WORCESTER","MA","01608",,,,,,,"042497441","5087700215",,,,"2010-06-03T13:56:56-0500","NANCY AMORELLO",,,,,140,129,5,,134,,134,,,,,"4D","1",,,,"1",,,,,,,,,,,,,,"FILING_RECEIVED","2010-06-03","Filed with authorized/valid electronic signature",,
"20100617202347P040322630577001","2007-01-01","2007-12-31","2",,"0","0","1","0","0","1","0","0","0",,"JOHNSTON TECHNICAL SERVICE PROFIT SHARING PLAN","001","1999-10-15","JOHNSTON TECHNICAL SERVICES",,"LORETTA JOHNSTON","18700 NORTH 107TH AVENUE #8",,"SUN CITY","AZ","85373",,,,,,,"18700 NORTH 107TH AVENUE #8",,"SUN CITY","AZ","85373",,,,,,,"860940612","6238753386","541400","LORETTA JOHNSTON",,"18700 N 107TH AVE. STE 8",,"SUN CITY","AZ","85373",,,,,,,"526818580","6238753386",,,,"2010-06-17T20:21:48-0500","LORETTA JOHNSTON",,,,,0,0,0,,0,,0,0,0,0,"2E2G3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-06-17","Filed with authorized/valid electronic signature",,
"20100625175318P040338095825001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","0","0",,"STUDIO 1204 INC PROFIT SHARING PLAN","001","1997-01-01","STUDIO 1204 INC",,,"34485 7TH STREET",,"UNION CITY","CA","945870000",,,,,,,"34485 7TH STREET",,"UNION CITY","CA","945870000",,,,,,,"943257133","5103247100","323100","STUDIO 1204 INC",,"34485 7TH STREET",,"UNION CITY","CA","945870000",,,,,,,"943257133","5103247100",,,,"2010-06-25T17:53:10-0500","ASSOCIATED PENSION CONSULTANTS",,,,,24,15,0,7,22,0,22,21,0,,"2E3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-06-25","Filed with authorized/valid electronic signature",,
"20100712150842P070004662195001","2010-01-01","2010-04-29","2",,"0","0","1","1","0","0","0","0","0",,"LUX HELPERS INC PROFIT SHARING PLAN","001","2009-02-05","LUX HELPERS, INC.",,,"113 WILLIAM STREET",,"NORWALK","CT","06851",,,,,,,"113 WILLIAM STREET",,"NORWALK","CT","06851",,,,,,,"264231295","2035245605","621610","LUX HELPERS, INC.",,"113 WILLIAM STREET",,"NORWALK","CT","06851",,,,,,,"264231295","2035245605",,,,"2010-07-12T15:00:11-0500","LUIS PETRILLO",,,,,1,0,0,0,0,0,0,0,0,,"2E2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-07-12","Filed with authorized/valid electronic signature",,
"20100712151923P070010966248001","2010-01-01","2010-07-07","2",,"0","0","1","1","0","0","0","0","0",,"NORCO MOTORS 401(K) PLAN","001","1994-10-01","NORCO MOTORS",,,"2148 EAST HIGH STREET",,"POTTSTOWN","PA","19464",,,,,,,,,,,,,,,,,,"232436928","6103267055","441110","NORCO MOTORS",,"2148 EAST HIGH STREET",,"POTTSTOWN","PA","19464",,,,,,,"232436928","6103267055",,,,"2010-07-12T15:19:02-0500","JAMES PHILLIPS",,,,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-07-12","Filed with authorized/valid electronic signature",,
"20100714182201P070016164418001","2010-01-01","2010-05-21","2",,"0","0","1","1","0","0","0","0","0",,"VANGUARD PROTOTYPE DEFINED CONTRIBUTION MONEY PURCHASE PLAN","002","1993-01-01","JOHN T. ZUCOSKY",,,"195 EUCLID AVE",,"RIDGEFIELD PARK","NJ","07660",,,,,,,"195 EUCLID AVE",,"RIDGEFIELD PARK","NJ","07660",,,,,,,"222332658","2016411111","621210","JOHN T. ZUCOSKY",,"195 EUCLID AVE",,"RIDGEFIELD PARK","NJ","07660",,,,,,,"222332658","2016411111",,,,"2010-07-14T18:20:01-0500","JOHN ZUCOSKY",,,,,3,0,0,0,0,0,0,0,0,,"2C3D",,,,,"1",,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-07-14","Filed with authorized/valid electronic signature",,
"20100721104547P040038460851001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SPRINGBOK TRAINING INC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-01-01","SRPINGBOK TRAINING INC",,,"212 EAST SR 73","SUITE 473","SARATOGA SPRINGS","UT","84043",,,,,,,"212 EAST SR 73","SUITE 473","SARATOGA SPRINGS","UT","84043",,,,,,,"204075393","8006533168","541600","SRPINGBOK TRAINING INC",,"212 EAST SR 73","SUITE 473","SARATOGA SPRINGS","UT","84043",,,,,,,"204075393","8006533168",,,,"2010-07-21T10:44:56-0500","JOSEPH ROGERS",,,,,3,1,0,0,1,0,1,,0,,"2E2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-07-21","Filed with authorized/valid electronic signature",,
"20100728135125P040031539175001","2010-01-01","2010-03-16","2",,"0","0","1","1",,,,,,,"WORLD ENERGY ALTERNATIVES, LLC 401(K) PLAN","001","2007-07-27","WORLD ENERGY ALTERNATIVES, LLC",,,"2 CONSTITUTION PLZ","# 2","CHARLESTOWN","MA","02129",,,,,,,"2 CONSTITUTION PLZ","# 2","CHARLESTOWN","MA","02129",,,,,,,"043418215","6178897300","424990","WORLD ENERGY ALTERNATIVES, LLC",,"2 CONSTITUTION PLZ","# 2","CHARLESTOWN","MA","02129",,,,,,,"043418215","6178897300",,,,"2010-07-28T13:50:59-0500","MICHELLE JERECZEK",,,,,19,0,0,0,0,0,0,0,0,,"2E2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-07-28","Filed with authorized/valid electronic signature",,
"20100729143312P030017626581001","2010-01-01","2010-04-01","2",,"0","0","1","1","1","0","0","0","0",,"CONESTOGA TELEPHONE & TELEGRAPH CO LOCAL 1671 401K PLAN","004","1990-09-01","D & E COMMUNICATIONS, INC.",,,"4001 RODNEY PARHAM ROAD","MS1170-B1F02-93","LITTLE ROCK","AR","72212",,,,,,,"4001 RODNEY PARHAM ROAD","MS1170-B1F02-93","LITTLE ROCK","AR","72212",,,,,,,"232837108","5017486689","517000","WINDSTREAM BENEFITS COMMITTEE",,"4001 RODNEY PARHAM ROAD",,"LITTLE ROCK","AR","72212",,,,,,,"200792300","5017486689",,,,"2010-07-29T14:29:21-0500","ROBERT BOYD",,,,,77,0,0,0,0,0,0,0,0,,"2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-07-29","Filed with authorized/valid electronic signature",,
"20100804101533P040136512258001","2005-01-01","2005-12-31","2",,"0","1","0","0","0","0","0","0","0",,"HECOX & COMPANY CPAS 401(K) PROFIT SHARING PLAN","001","1997-01-01","HECOX & COMPANY CPAS",,,"1792 TRIBUTE ROAD SUITE 260",,"SACRAMENTO","CA","958150000",,,,,,,"1792 TRIBUTE ROAD SUITE 260",,"SACRAMENTO","CA","958150000",,,,,,,"680294852","9166461475","541211","HECOX & COMPANY CPAS",,"1792 TRIBUTE ROAD SUITE 260",,"SACRAMENTO","CA","958150000",,,,,,,"680294852","9166461475",,,,"2010-08-04T10:15:19-0500","ASSOCIATED PENSION CONSULTANTS",,,,,2,2,0,0,2,0,2,2,1,,"2E2J2K3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-08-04","Filed with authorized/valid electronic signature",,
"20100808181617P040020108886001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","1","1","0",,"OGDEN SCHOOL DISTRICT CREDIT UNION 401(K) PLAN & TRUST","001","1998-07-01","EDUCATION FIRST CREDIT UNION",,,"1250 COUNTRY HILLS DRIVE",,"OGDEN","UT","84403",,,,,,,"1250 COUNTRY HILLS DRIVE",,"OGDEN","UT","84403",,,,,,,"876121774","8013924877","522130","EDUCATION FIRST CREDIT UNION",,"1250 COUNTRY HILLS DRIVE",,"OGDEN","UT","84403",,,,,,,"876121774","8013924877",,,,"2010-08-08T18:15:04-0500","KENT GREENFIELD",,,,,12,7,0,4,11,0,11,10,0,,"2E2J2F2G2K3E",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2010-08-08","Filed with authorized/valid electronic signature",,
"20100809113755P030023203252001","2010-01-01","2010-04-23","2",,"1","0","1","1","0","0","0","0","0",,"WEIR DOLLS & CRAFTS MPP","002","2010-01-01","WEIR DOLLS & CRAFTS MPP",,,"4125 JACKSON ROAD",,"ANN ARBOR","MI","48103",,,,,,,"4125 JACKSON ROAD",,"ANN ARBOR","MI","48103",,,,,,,"382391675","7346686992","454110","WEIR DOLLS & CRAFTS MPP",,"4125 JACKSON ROAD",,"ANN ARBOR","MI","48103",,,,,,,"382391675","7346686992",,,,"2010-08-09T11:32:09-0500","SUSAN WEIR",,,,,1,0,0,0,0,,0,,,,"2G3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-08-09","Filed with authorized/valid electronic signature",,
"20100809104152P070000452056001","2010-01-01","2010-05-11","2",,"0","0","1","1","0","0","0","0","0",,"MANION M. COFFMAN, DMD, PC 401(K) PROFIT SHARING PLAN","004","2005-01-01","MANION M. COFFMAN, DMD, PC",,,"105 SOUTH HINE STREET",,"ATHENS","AL","356112323",,,,,,,,,,,,,,,,,,"631132419","2562328214","621210","MANION M. COFFMAN, DMD, PC",,"105 SOUTH HINE STREET",,"ATHENS","AL","356112323",,,,,,,"631132419","2562328214",,,,"2010-08-09T09:34:07-0500","MANION COFFMAN",,,,,6,0,0,0,0,0,0,0,0,,"2E2G2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-08-09","Filed with authorized/valid electronic signature",,
"20100819165550P040035474423001","2005-06-01","2006-05-31","2",,"0","0","0","0","0","0","0","1","0",,"MACON BANK EMPLOYEE BENEFIT PLAN","502","2000-10-01","MACON BANK, INC.",,,"1 CENTER CT.",,"FRANKLIN","NC","287343445",,,,,,,"1 CENTER CT.",,"FRANKLIN","NC","287343445",,,,,,,"562004870","8004382265","522120","MACON BANK, INC.",,"1 CENTER CT.",,"FRANKLIN","NC","287343445",,,,,,,"562004870","8004382265",,,,"2010-08-19T15:07:44-0500","HOLLY ROGERS",,,,,179,177,0,0,177,0,177,,,,,"4B4Q","1",,,,"1",,,,,,,,,"1","6",,,,"FILING_RECEIVED","2010-08-19","Filed with authorized/valid electronic signature",,
"20100826144938P040018207445001","2010-01-01","2010-04-13","2",,"0","0","1","1","0","0","0","0","0",,"UNITED HOCKEY LEAGUE INC","001","1999-01-01","UNITED HOCKEY LEAUGE INC.",,,"1831 LAKE ST. LOUIS BLVD.",,"LAKE SAINT LOUIS","MO","63367",,,,,,,"1831 LAKE ST. LOUIS BLVD.",,"LAKE SAINT LOUIS","MO","63367",,,,,,,"431877414","6366256011","451110","UNITED HOCKEY LEAUGE INC.",,"1831 LAKE ST. LOUIS BLVD.",,"LAKE SAINT LOUIS","MO","63367",,,,,,,"431877414","6366256011",,,,"2010-08-26T14:48:40-0500","JENNIFER COSTIE",,,,,1,0,0,0,0,0,0,0,0,,"2E2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-08-26","Filed with authorized/valid electronic signature",,
"20100902160013P040474957345001","2007-01-01","2007-03-31","2",,"0","0","1","0","0","0","0","1","0",,"BERNARD HEROLD & CO., INC. 401 (K) PLAN","001","1991-12-31","BERNARD HEROLD & CO., INC.","BERNARD HEROLD & CO., INC.",,"805 THIRD AVENUE-18TH FLOOR",,"NEW YORK","NY","10022",,,,,,,"805 THIRD AVENUE-18TH FLOOR",,"NEW YORK","NY","10022",,,,,,,"132707317","2123713950","523120","BERNARD HEROLD & CO., INC.",,"805 THIRD AVENUE-18TH FLOOR",,"NEW YORK","NY","10022",,,,,,,"132707317","2123713950",,,,"2010-09-02T15:59:11-0500","LAWRENCE HEROLD",,,,,37,0,0,0,0,0,0,0,0,0,"2E2F2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,"1",,"FILING_RECEIVED","2010-09-02","Filed with authorized/valid electronic signature",,
"20100913164419P040496157553001","2010-01-01","2010-08-31","2",,"0","0","1","1","0","0","0","0","0",,"TRI STATE HAND & OCCUPATIONAL THERAPY, INC. PROFIT SHARING PLAN","001","2004-01-01","TRI STATE HAND & OCCUPATIONAL THERAPY, INC",,,"200 GLEN STREET","SUITE 200","CUMBERLAND","MD","21502",,,,,,,,,,,,,,,,,,"521927203","3042574263","621340","TRI STATE HAND & OCCUPATIONAL THERAPY, INC",,"200 GLEN STREET","SUITE 200","CUMBERLAND","MD","21502",,,,,,,"521927203","3042574263",,,,"2010-09-11T09:29:13-0500","BRYAN WODASKI",,,,,13,0,0,0,0,0,0,0,0,,"2A2E2F2G2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-09-13","Filed with authorized/valid electronic signature",,
"20100913110333P030496159617001","2010-01-01","2010-05-24","2",,"0","0","1","1","0","0","0","0","0",,"DTX OIL, L.L.C. 401(K) PLAN","001","2008-01-01","DTX OIL, L.L.C.",,,"2704 OLD ROSEBUD DR. STE. 120",,"LEXINGTON","KY","40509",,,,,,,,,,,,,,,,,,"204029068","8595430611","211110","DTX OIL, L.L.C.",,"2704 OLD ROSEBUD DR. STE. 120",,"LEXINGTON","KY","40509",,,,,,,"204029068","8595430611",,,,"2010-09-13T11:03:23-0500","WILLIAM RENNER",,,,,20,10,0,0,10,0,10,0,0,,"2E2G2J2K3D2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-09-13","Filed with authorized/valid electronic signature",,
"20100913133426P070015705928001","2005-01-01","2005-12-31","2",,"0","0","1","0","0","0","0","0","0",,"SENAGO DIRECT LLC","001","2003-01-01","SEGABO DIRECT LLC",,"MATT TASKER","217 COMMERCIAL ST","402","PORTLAND","ME","04105",,,,,,,"217 COMMERCIAL ST","402","PORTLAND","ME","04105",,,,,,,"200703735","2073295458","454390","SEGABO DIRECT LLC","MATT TASKER","217 COMMERCIAL ST","402","PORTLAND","ME","04105",,,,,,,"200703735","2073295458",,,,,,"2010-09-13T13:34:02-0500","TODD FLAHERTY",,,0,0,,,0,,0,0,0,0,,,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-09-13",,,"Filed with authorized/valid electronic signature"
"20100920122457P030002784257001","2010-01-01","2010-08-16","2",,"0","0","1","1","0","0","0","0","0",,"PINEMEADOW, INC., DEFINED BENEFIT PENSION PLAN","001","2002-01-01","PINEMEADOW, INC.",,,"P.O. BOX 180547",,"FORT SMITH","AR","729180547",,,,,,,,,,,,,,,,,,"710624466","4796467444","237210","PINEMEADOW, INC.",,"P.O. BOX 180547",,"FORT SMITH","AR","729180547",,,,,,,"710624466","4796467444",,,,"2010-09-20T12:24:42-0500","PAUL WALKER","2010-09-20T12:24:42-0500","PAUL WALKER",,,2,0,0,0,0,0,0,,0,,"1A1G1H1I3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-09-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20100920114619P030000301140001","2010-01-01","2010-08-11","2",,"0","0","1","1","0","0","0","0","0",,"KAVON FILTER PRODUCTS CO.,INC., PROFIT SHARING PLAN","002","1974-06-20","KAVON FILTER PRODUCTS COMPANY, INC.",,,"PO BOX 1166",,"WALL","NJ","077191166",,,,,,,,,,,,,,,,,,"221693764","7329383135","423990","KAVON FILTER PRODUCTS COMPANY, INC.",,"PO BOX 1166",,"WALL","NJ","077191166",,,,,,,"221693764","7329383135",,,,"2010-09-20T11:40:20-0500","DOUGLAS VON BULOW",,,,,0,0,0,0,0,0,0,0,0,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-09-20","Filed with authorized/valid electronic signature",,
"20100917144722P040123533720001","2003-01-01","2003-12-31","2",,"0","0","0","0","1","0","0","1","0",,"BNSF RAILWAY COMPANY / BLET VOLUNTARY SEPARATION PROGRAM","503","1990-01-01","BNSF RAILWAY COMPANY",,"MR. MILTON H. SIEGELE JR.","2600 LOU MENK DRIVE",,"FORT WORTH","TX","761312828",,,,,,,"2600 LOU MENK DRIVE",,"FORT WORTH","TX","761312828",,,,,,,"416034000","8173521667","482110","BLET VOLUNTARY SEVERANCE PROGRAM COMMITTEE","MR. MILTON H. SIEGELE JR.","2600 LOU MENK DRIVE",,"FORT WORTH","TX","761312828",,,,,,,"800496358","8173521667",,,,"2010-09-17T14:24:43-0500","MILTON SIEGELE",,,,,1240,1177,,,1177,,1177,,,,,"4I",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2010-09-17","Filed with authorized/valid electronic signature",,
"20100921112807P030004732001001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"FLEX CONSTRUCTION CORPORATION PROFIT SHARING PLAN","001","1983-12-01","FLEX CONSTRUCTION CORPORATION",,,"244 TELSER ROAD",,"LAKE ZURICH","IL","60047",,,,,,,,,,,,,,,,,,"363213282","8475400200","238900","FLEX CONSTRUCTION CORPORATION",,"244 TELSER ROAD",,"LAKE ZURICH","IL","60047",,,,,,,"363213282","8475400200",,,,"2010-09-21T11:11:05-0500","ROBERT WARDANIAN","2010-09-21T11:11:05-0500","ROBERT WARDANIAN",,,6,0,0,0,0,0,0,0,0,,"2E2G2J2R",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-09-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20100927161014P070001911747001","2010-01-01","2010-03-16","2",,"0","0","1","1","0","0","0","0","0",,"SMARTFOREST VENTURES 401(K)","001","2001-02-01","SMARTFOREST VENTURES, LLC",,,"319 SW WASHINGTON ST.","STE. 1175","PORTLAND","OR","97204",,,,,,,"319 SW WASHINGTON ST.","STE. 1175","PORTLAND","OR","97204",,,,,,,"931281787","5032222552","523900","SMARTFOREST VENTURES, LLC",,"319 SW WASHINGTON ST.","STE. 1175","PORTLAND","OR","97204",,,,,,,"931281787","5032222552",,,,"2010-09-27T16:05:50-0500","DEBORAH COLEMAN",,,,,6,0,0,0,0,0,0,0,0,,"2F2G2J2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-09-27","Filed with authorized/valid electronic signature",,
"20100927161137P030001967364001","2010-01-01","2010-02-04","2",,"0","0","1","1","0","0","0","0","0",,"UNLIMITED SUPPLY INC. 401 (K) PLAN","001","2001-01-01","UNLIMITED SUPPLY INC.",,,"3341 HIGHWAY 90 EAST",,"BROUSSARD","LA","70518",,,,,,,,,,,,,,,,,,"721363133","3378372800","423400","UNLIMITED SUPPLY INC.",,"3341 HIGHWAY 90 EAST",,"BROUSSARD","LA","70518",,,,,,,"721363133","3378372800",,,,"2010-09-27T16:11:34-0500","JAMIE MCGEE",,,,,21,21,0,0,21,0,21,0,0,,"2E2G2J2K3D2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-09-27","Filed with authorized/valid electronic signature",,
"20100927195435P030007066770001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","1","0",,"D.A. HOERR & SONS, INC. 401(K) SAVINGS PLAN","002","1984-05-01","D.A. HOERR & SONS, INC.",,,"8020 N. SHADETREE DR.",,"PEORIA","IL","61615",,,,,,,"8020 N. SHADETREE DR.",,"PEORIA","IL","61615",,,,,,,"370761574","3096892503","444200","D.A. HOERR & SONS, INC.",,"8020 N. SHADETREE DR.",,"PEORIA","IL","61615",,,,,,,"370761574","3096892503",,,,"2010-09-27T19:54:08-0500","NATHAN HOERR",,,,,170,118,0,14,132,0,132,54,0,0,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2010-09-27","Filed with authorized/valid electronic signature",,
"20100930172841P030000449442001","2010-01-01","2010-06-11","2",,"0","0","0","1","0","0","0","0","0",,"INTEGRATED REAL ESTATE PROFIT SHARING PLAN","001","1999-01-01","INTEGRATED REAL ESTATE & FINANCIAL SERVICES, INC",,,"100 STONY POINT ROAD, SUITE 225",,"SANTA ROSA","CA","954014147",,,,,,,,,,,,,,,,,,"680380030","7075777865","531210","INTEGRATED REAL ESTATE & FINANCIAL SERVICES, INC",,"100 STONY POINT ROAD, SUITE 225",,"SANTA ROSA","CA","954014147",,,,,,,"680380030","7075777865",,,,"2010-09-30T17:23:19-0500","MIKE STORNETTA",,,,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-09-30","Filed with authorized/valid electronic signature",,
"20101001103034P030000309543001","2010-01-01","2010-09-30","2",,"0","0","1","1","0","0","0","0","0",,"PARAMOUNT SENIOR LIVING AT DAYTON 401(K) PROFIT SHARING PLAN & TRUST","001","2005-01-01","PARAMOUNT SENIOR LIVING AT DAYTON, LLC",,"PARAMOUNT HEALTH RESOURCES, INC.","3025 WASHINGTON ROAD","SUITE 201","MCMURRAY","PA","15317",,,,,,,"3025 WASHINGTON ROAD","SUITE 201","MCMURRAY","PA","15317",,,,,,,"203207737","7249691020","621610","PARAMOUNT HEALTH RESOURCES, INC.",,"3025 WASHINGTON ROAD","SUITE 201","MCMURRAY","PA","15317",,,,,,,"201608540","7249691020",,,,"2010-10-01T10:29:20-0500","RICHARD GOLDBACH",,,,,3,0,0,0,0,0,0,0,0,,"2E2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-01","Filed with authorized/valid electronic signature",,
"20100930171950P070001362977001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","0","0","0","0",,"HAPAG-LLOYD AMERICA INC. GROUP INSURANCE PLAN","503","1980-08-01","HAPAG-LLOYD AMERICA INC.",,,"399 HOES LANE",,"PISCATAWAY","NJ","088544115",,,,,,,"399 HOES LANE",,"PISCATAWAY","NJ","088544115",,,,,,,"132520327","7325621800","488300","HAPAG-LLOYD AMERICA INC.",,"399 HOES LANE",,"PISCATAWAY","NJ","088544115",,,,,,,"132520327","7325621800",,,,"2010-09-30T13:12:26-0500","MICHAEL STILLITANO",,,,,845,0,0,0,0,,,,,,,"4B4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2010-09-30","Filed with authorized/valid electronic signature",,
"20101004131005P070004214610001","2010-01-01","2010-04-06","2",,"0","0","1","1","0","1","0","0","0",,"INLAND NORTHWEST BLOOD CENTER PENSION PLAN","001","1961-01-01","INLAND NORTHWEST BLOOD CENTER",,,"210 W. CATALDO",,"SPOKANE","WA","992012217",,,,,,,,,,,,,,,,,,"910499130","5096240151","621900","INLAND NORTHWEST BLOOD CENTER",,"210 W. CATALDO",,"SPOKANE","WA","992012217",,,,,,,"910499130","5096240151",,,,"2010-10-04T13:09:27-0500","LORI FIELD",,,,,118,0,0,0,0,0,0,0,0,,"1A1G1H1I3D",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","0","1","FILING_RECEIVED","2010-10-04","Filed with authorized/valid electronic signature",,
"20101006203752P070006298898001","2010-01-01","2010-05-28","2",,"0","0","1","1","0","0","0","0","0",,"SILREC CORP. PROFIT SHARING AND 401(K) PLAN","001","1989-10-01","SILREC CORPORATION",,,"2064 MERCER ROAD",,"LEXINGTON","KY","40511",,,,,,,,,,,,,,,,,,"770181164","8592256001","423930","SILREC CORPORATION",,"2064 MERCER ROAD",,"LEXINGTON","KY","40511",,,,,,,"770181164","8592256001",,,,"2010-10-06T09:24:33-0500","KIM A. BLANTON",,,,,13,0,0,0,0,0,0,0,0,,"2A2J2G2E2K2F3H2T2S3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-10-06","Filed with authorized/valid electronic signature",,
"20101007120755P070002072278001","2010-01-01","2010-07-15","2",,"0","0","1","1","0","0","0","0","0",,"EMPLOYEES' GMS CONCRETE 401 (K) PLAN","002","2004-01-01","GMS CONCRETE, INC.",,,"1220 S COMMERCE STREET","SUITE 120","LAS VEGAS","NV","89102",,,,,,,,,,,,,,,,,,"880303049","7022205621","238100","GMS CONCRETE, INC.",,"1220 S COMMERCE STREET","SUITE 120","LAS VEGAS","NV","89102",,,,,,,"880303049","7022205621",,,,"2010-10-07T11:39:24-0500","ANDREA GOULD",,,,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-10-07","Filed with authorized/valid electronic signature",,
"20101006144633P040001689651001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"ALTUS CONSULTING CORPORATION","001","2006-01-01","ALTUS CONSULTING CORPORATION",,,"38699 OLD WHEATLAND RD",,"WATERFORD","VA","20197",,,,,,,"38699 OLD WHEATLAND RD",,"WATERFORD","VA","20197",,,,,,,"223871087","7039294000","541990","ALTUS CONSULTING CORPORATION",,"38699 OLD WHEATLAND RD",,"WATERFORD","VA","20197",,,,,,,"223871087","7039294000",,,,"2010-10-06T14:46:18-0500","JACOB PORTER",,,,,12,11,0,2,13,0,13,12,0,,"2E2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-06","Filed with authorized/valid electronic signature",,
"20101012075708P030008207314001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"COLLEGE ASSOCIATION, INC.SUNY COLLEGE OF TECH AT CANTON","001","1966-01-01","COLLEGE ASSOCIATION, INC. SUNY COLLEGE OF TECH AT CANTON",,,"34 CORNELL DRIVE",,"CANTON","NY","13617",,,,,,,,,,,,,,,,,,"150554874","3153867623","611000","COLLEGE ASSOCIATION, INC. SUNY COLLEGE OF TECH AT CANTON",,"34 CORNELL DRIVE",,"CANTON","NY","13617",,,,,,,"150554874","3153867623",,,,"2010-10-12T07:53:31-0500","KAREN MCAULIFFE",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-10-12","Filed with authorized/valid electronic signature",,
"20101012134512P030022749825001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","1","0","0",,"MOORE AND ROMANO VETERINARY HOSPITALS PROFIT SHARING PLAN","001","1994-01-01","DENNIS J. MOORE AND JOSEPH M. ROMANO",,,"619 GASTON AVE",,"FAIRMONT","WV","26554",,,,,,,"619 GASTON AVE",,"FAIRMONT","WV","26554",,,,,,,"550664335","3043630930","622000","DENNIS J. MOORE AND JOSEPH M. ROMANO",,"619 GASTON AVE",,"FAIRMONT","WV","26554",,,,,,,"550664335","3043630930",,,,"2010-10-12T13:44:42-0500","DENNIS MOORE",,,,,27,28,0,2,30,0,30,1,0,,"3B2E3H2A",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-12","Filed with authorized/valid electronic signature",,
"20101013114732P070024915793001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SERVICE ROOFING COMPANY INC","001","1973-09-10","SERVICE ROOFING COMPANY INC",,,"440 EAST WALNUT AVENUE",,"FULLERTON","CA","92632",,,,,,,"440 EAST WALNUT AVENUE",,"FULLERTON","CA","92632",,,,,,,"951208810","7145254232","238100","SERVICE ROOFING COMPANY INC",,"440 EAST WALNUT AVENUE",,"FULLERTON","CA","92632",,,,,,,"951208810","7145254232",,,,"2010-10-13T11:47:23-0500","ASSOCIATED PENSION CONSULTANTS",,,,,4,4,0,0,4,0,4,4,0,,"2E3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-13","Filed with authorized/valid electronic signature",,
"20101014025110P070026144817001","2010-01-01","2010-02-16","2",,"0","0","1","1","0","1","0","0","0",,"ALLWEATHER WOOD TREATERS 401(K) PROFIT SHARING PLAN AND TRUST","003","1992-04-01","ALLWEATHER WOOD LLC",,,"P.O. BOX 227",,"WASHOUGAL","WA","986710227",,,,,,,,,,,,,,,,,,"260851021","8007778134","321110","ALLWEATHER WOOD LLC",,"P.O. BOX 227",,"WASHOUGAL","WA","986710227",,,,,,,"260851021","8007778134",,,,"2010-10-13T16:49:08-0500","ELLE HAGEDORN",,,,,154,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H2T",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","1","0","FILING_RECEIVED","2010-10-14","Filed with authorized/valid electronic signature",,
"20101014193636P070003508469001","2010-01-01","2010-01-31","2",,"0","0","0","1","0","1","0","0","0",,"AMERICAN SPORTING GOODS CORP. MEDICAL BENEFIT INSURANCE PLAN","501","2000-02-01","AMERICAN SPORTING GOODS CORPORATION",,,"101 ENTERPRISE, SUITE 100",,"ALISO VIEJO","CA","92656",,,,,,,,,,,,,,,,,,"133191696","9492672920","423990","AMERICAN SPORTING GOODS CORPORATION",,"101 ENTERPRISE, SUITE 100",,"ALISO VIEJO","CA","92656",,,,,,,"133191696","9492672920",,,,"2010-10-14T19:11:35-0500","JENNIFER LIN",,,,,198,193,7,0,200,,,,,,,"4A4B4D4E4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2010-10-14","Filed with authorized/valid electronic signature",,
"20101014182643P070012921266001","2010-01-01","2010-03-31","2",,"0","0","0","1","0","0","0","0","0",,"HANGER ORTHOPEDIC GROUP INC. HEALTHCARE PLAN","501","1991-01-01","HANGER ORTHOPEDIC GROUP, INC.",,,"10910 DOMAIN DRIVE, SUITE 300",,"AUSTIN","TX","78758",,,,,,,,,,,,,,,,,,"840904275","5127773800","531390","HANGER ORTHOPEDIC GROUP, INC.",,"10910 DOMAIN DRIVE, SUITE 300",,"AUSTIN","TX","78758",,,,,,,"840904275","5127773800",,,,"2010-10-14T13:40:11-0500","JEFF SCHOENEBERG","2010-10-14T13:40:11-0500","JEFF SCHOENEBERG",,,3738,3831,0,0,3831,,,,,,,"4A4B4D4E4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2010-10-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20101015092016P040003560839001","2008-01-01","2008-01-01","2",,"0","1","0","0","0","1","0","0","0",,"M&T BANK CORPORATION RETIREE WELFARE BENEFITS PLAN","506","1980-02-01","MANUFACTURERS AND TRADERS TRUST CO",,,"ONE MANDT PLAZA",,"BUFFALO","NY","14203",,,,,,,"ONE MANDT PLAZA",,"BUFFALO","NY","14203",,,,,,,"160538020","7168425596","522110","MANUFACTURERS AND TRADERS TRUST CO",,"ONE MANDT PLAZA",,"BUFFALO","NY","14203",,,,,,,"160538020","7168425596",,,,"2010-10-15T09:18:20-0500","ANN MARIE ODROBINA",,,,,1656,,1543,,1543,,1543,,,,,"4A4D",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2010-10-15","Filed with authorized/valid electronic signature",,
"20101015091959P040028875009001","2005-01-01","2005-01-01","2",,"0","1","0","0","0","1","0","0","0",,"M&T BANK CORPORATION RETIREE WELFARE BENEFITS PLAN","506","1980-02-01","MANUFACTURERS AND TRADERS TRUST CO",,,"ONE MANDT PLAZA",,"BUFFALO","NY","14203",,,,,,,"ONE MANDT PLAZA",,"BUFFALO","NY","14203",,,,,,,"160538020","7168425596","522110","MANUFACTURERS AND TRADERS TRUST CO",,"ONE MANDT PLAZA",,"BUFFALO","NY","14203",,,,,,,"160538020","7168425596",,,,"2010-10-15T09:19:32-0500","ANN MARIE ODROBINA",,,,,1876,,1807,,1807,,1807,,,,,"4A4D",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2010-10-15","Filed with authorized/valid electronic signature",,
"20101015165432P040011497522001","2010-01-01","2010-05-17","2",,"0","0","1","1","0","0","0","0","0",,"B.J. ESTES, D.D.S. 401(K) PLAN & TRUST","002","2006-04-01","BJ ESTES DDS",,,"132 N. MAIN AVE",,"SIOUX CENTER","IA","51250",,,,,,,,,,,,,,,,,,"204869572","7127222525","621210","BJ ESTES DDS",,"132 N. MAIN AVE",,"SIOUX CENTER","IA","51250",,,,,,,"204869572","7127222525",,,,"2010-10-15T14:19:07-0500","RUBY BOLLIN",,,,,9,0,0,0,0,0,0,0,0,,"2E2F2G2H2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-10-15","Filed with authorized/valid electronic signature",,
"20101015180247P040011603714001","2010-01-01","2010-01-20","2",,"0","0","1","1","0","0","0","1","0",,"M.A.D. MONEY INVESTMENT, INC. 401K PLAN","001","2008-03-20","M.A.D. MONEY INVESTMENT, INC.",,,"P.O. BOX 372425",,"SATELLITE BEACH","FL","32937",,,,,,,,,,,,,,,,,,"262210558","3212230178","541211","M.A.D. MONEY INVESTMENT, INC.",,"P.O. BOX 372425",,"SATELLITE BEACH","FL","32937",,,,,,,"262210558","3212230178",,,,"2010-10-15T17:25:08-0500","RHONDA REED DE CUBA","2010-10-15T17:25:08-0500","RHONDA REED DE CUBA",,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-10-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20101027171958P070000605558001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","0","0","0","0",,"LIFEMASTERS SUPPORTED SELFCARE, INC. CONSOLIDATED WELFARE BENEFIT PLAN","502","2000-07-01","LIFEMASTERS SUPPORTED SELFCARE, INC.",,"C/O ALVAREZ AND MARSAL - HIG","100 PINE STREET, SUITE 900",,"SAN FRANCISCO","CA","94111",,,,,,,,,,,,,,,,,,"943206428","4156906377","624100","LIFEMASTERS SUPPORTED SELFCARE, INC.","C/O ALVAREZ AND MARSAL - HIG","100 PINE STREET, SUITE 900",,"SAN FRANCISCO","CA","94111",,,,,,,"943206428","4156906377",,,,"2010-10-27T17:16:57-0500","BRIAN BUCHANAN",,,,,284,0,0,0,0,,,,,,,"4A4B4D4E4F4H4L4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","6","0","0","0","FILING_RECEIVED","2010-10-27","Filed with authorized/valid electronic signature",,
"20101026154217P030004354737001","2007-01-01","2007-03-27","2",,"0","0","1","1","0","0","0","0","0",,"LSDA LLC 401K PROFIT SHARING PLAN & TRUST","001","2003-09-01","LSDA LLC",,,"3851 SOUTH SHERWOOD FOREST BLVD","SUITE 203","BATON ROUGE","LA","70816",,,,,,,"3851 SOUTH SHERWOOD FOREST BLVD","SUITE 203","BATON ROUGE","LA","70816",,,,,,,"030443285","2252915949","611000","LSDA LLC",,"3851 SOUTH SHERWOOD FOREST BLVD","SUITE 203","BATON ROUGE","LA","70816",,,,,,,"030443285","2252915949",,,,"2010-10-26T15:06:04-0500","ALAN NICHOLS",,,,,7,0,0,0,0,0,0,0,0,,"2E2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-26","Filed with authorized/valid electronic signature",,
"20101027111829P040002115138001","2010-07-01","2010-08-31","2",,"0","0","1","1","0","0","0","0","0",,"PET DRX CORPORATION WELFARE BENEFIT PLAN","510","2007-07-01","PET DRX CORPORATION",,,"215 CENTERVIEW DRIVE, SUITE 360",,"BRENTWOOD","TN","37027",,,,,,,,,,,,,,,,,,"571201592","6153691914","541940","PET DRX CORPORATION",,"215 CENTERVIEW DRIVE, SUITE 360",,"BRENTWOOD","TN","37027",,,,,,,"571201592","6153691914",,,,"2010-10-27T11:17:47-0500","KRISTI SIMARD",,,,,481,0,0,0,0,,,,,,,"4A4B4D4F4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","8","0","0","0","FILING_RECEIVED","2010-10-27","Filed with authorized/valid electronic signature",,
"20101021144630P040003226918001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","0","0","0","0",,"PENCE FUNERAL HOME, INC. MONEY PURCHASE PENSION PLAN","001","1985-01-01","PENCE FUNERAL HOME, INC.",,,"310 N 2ND AVENUE EAST","PO BOX 576","NEWTON","IA","50208",,,,,,,"310 N 2ND AVENUE EAST","PO BOX 576","NEWTON","IA","50208",,,,,,,"421215997","6417925125","812210","PENCE FUNERAL HOME, INC.",,"310 N 2ND AVENUE EAST","PO BOX 576","NEWTON","IA","50208",,,,,,,"421215997","6417925125",,,,"2010-10-21T14:45:36-0500","ERIK MONSON",,,,,9,0,0,0,0,0,0,0,0,,"2C3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-21","Filed with authorized/valid electronic signature",,
"20101026095105P040000514179001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"EUROPA CONSTRUCTION CORP 401K PROFIT SHARING PLAN & TRUST","001","2004-01-01","EUROPA CONSTRUCTION CORP.",,,"97-22 LIVERPOOL STREET",,"JAMAICA","NY","11435",,,,,,,"97-22 LIVERPOOL STREET",,"JAMAICA","NY","11435",,,,,,,"113376619","9177095074","236200","EUROPA CONSTRUCTION CORP.",,"97-22 LIVERPOOL STREET",,"JAMAICA","NY","11435",,,,,,,"113376619","9177095074",,,,"2010-10-26T09:49:09-0500","ALCIDES RODRIGUES",,,,,7,12,0,0,12,0,12,1,0,,"2E2G2J3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-10-26","Filed with authorized/valid electronic signature",,
"20101021102432P040040090721001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"GMC SOFTWARE TECHNOLOGY, INC. 401(K) PROFIT SHARING PLAN AND TRUST","001","1999-01-01","GMC SOFTWARE TECHNOLOGY, INC.",,,"529 MAIN STREET","SUITE 223","CHARLESTOWN","MA","02129",,,,,,,"529 MAIN STREET","SUITE 223","CHARLESTOWN","MA","02129",,,,,,,"043355767","6177121200","334110","GMC SOFTWARE TECHNOLOGY, INC.",,"529 MAIN STREET","SUITE 223","CHARLESTOWN","MA","02129",,,,,,,"043355767","6177121200",,,,"2010-10-21T10:22:13-0500","MICHAEL WATTS","2010-10-21T10:23:44-0500","YURI VOURSAL",,,27,23,0,9,32,0,32,27,6,,"2E2F2G2J2K3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-10-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20101018151427P030034674849001","2010-06-01","2010-08-31","2",,"0","0","0","1","0","0","0","0","0",,"LUIS GARRATON INC - HEALTH SHORT PERIOD 2010","503","2007-06-01","LUIS GARRATON INC",,,"PO BOX 362984",,"SAN JUAN","PR","00936",,,,,,,"URB INDUSTRIAL LUCHETTI",,"BAYAMON","PR","00961",,,,,,,"660192858","7877886161","424210","LUIS GARRATON INC",,"PO BOX 362984",,"SAN JUAN","PR","00936",,,,,,,"660192858","7877886161",,,,"2010-10-18T14:46:23-0500","MARIO FORNES",,,,,131,130,0,0,130,0,130,0,0,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2010-10-18","Filed with authorized/valid electronic signature",,
"20101108141121P040001436215001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","0","0",,"V.R. TAX SOLUTIONS PROFIT SHARING PLAN","001","2005-01-01","VR TAX SOLUTIONS",,,"10830 N 71ST PLACE",,"SCOTTSDALE","AZ","85254",,,,,,,,,,,,,,,,,,"204459544","4804836817","812990","VR TAX SOLUTIONS",,"10830 N 71ST PLACE",,"SCOTTSDALE","AZ","85254",,,,,,,"204459544","4804836817",,,,"2010-11-08T14:11:16-0600","RONALD KNOTT",,,,,3,3,0,0,3,0,3,3,0,,"2E2F2G2J2K3D",,"1","0","1","0","0","0","1","0","0","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-11-08","Filed with authorized/valid electronic signature",,
"20101111125634P040014309665001","2010-02-01","2010-03-31","2",,"0","0","0","1","0","1","0","0","0",,"CRESCENT HEALTHCARE, INC.","501","2002-02-01","CRESCENT HEALTHCARE, INC.",,,"888 S. DISNEYLAND DRIVE, 2ND FLOOR",,"ANAHEIM","CA","92802",,,,,,,,,,,,,,,,,,"330726408","7145206324","621610","CRESCENT HEALTHCARE, INC.",,"888 S. DISNEYLAND DRIVE, 2ND FLOOR",,"ANAHEIM","CA","92802",,,,,,,"330726408","7145206324",,,,"2010-11-11T11:47:05-0600","SHERRIE PAULL",,,,,410,388,16,0,404,,,,,,,"4A4B4D4E","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2010-11-11","Filed with authorized/valid electronic signature",,
"20101029121932P070001020516001","1999-07-01","2000-06-30","2",,"1","0","0","0","0","0","0","1","0",,"THE SAGE SCHOOL DEFINED CONTRIBUTION RETIREMENT PLAN","001","1999-07-01","THE SAGE CENTER FOR LEARNING, INC.","THE SAGE SCHOOL","NANCY FARRELL","171 MECHANIC STREET",,"FOXBORO","MA","02035",,,,,,,"171 MECHANIC STREET",,"FOXBORO","MA","02035",,,,,,,"223058494","5085439619","611000","THE SAGE CENTER FOR LEARNING, INC.","NANCY FARRELL","171 MECHANIC STREET",,"FOXBORO","MA","02035",,,,,,,"223058494","5085439619",,,,"2010-10-29T12:01:08-0500","NANCY FARRELL",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-10-29","Filed with authorized/valid electronic signature",,
"20101029131714P070003473330001","2003-07-01","2004-06-30","2",,"0","0","0","0","0","0","0","1","0",,"THE SAGE SCHOOL DEFINED CONTRIBUTION RETIREMENT PLAN","001","1999-07-01","THE SAGE CENTER FOR LEARNING, INC.","THE SAGE SCHOOL","NANCY FARRELL","171 MECHANIC STREET",,"FOXBORO","MA","02035",,,,,,,"171 MECHANIC STREET",,"FOXBORO","MA","02035",,,,,,,"223058494","5085439619","611000","THE SAGE CENTER FOR LEARNING, INC.","NANCY FARRELL","171 MECHANIC STREET",,"FOXBORO","MA","02035",,,,,,,"223058494","5085439619",,,,"2010-10-29T12:10:53-0500","NANCY FARRELL",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-10-29","Filed with authorized/valid electronic signature",,
"20101029135831P070007990641001","2010-01-01","2010-03-31","2",,"0","0","0","1","0","0","0","0","0",,"JAMS, INC. MENTAL HEALTH PLAN","507","2000-01-01","JAMS, INC.",,,"1920 MAIN STREET, SUITE 300",,"IRVINE","CA","926147279",,,,,,,,,,,,,,,,,,"680542699","9492241810","541190","JAMS, INC.",,"1920 MAIN STREET, SUITE 300",,"IRVINE","CA","926147279",,,,,,,"680542699","9492241810",,,,"2010-10-29T13:57:21-0500","JULIE SAGER",,,,,184,184,0,0,184,,,,,,,"4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2010-10-29","Filed with authorized/valid electronic signature",,
"20101105114904P030001531960001","2010-01-01","2010-08-31","2",,"0","0","1","1","0","1","0","0","0",,"EQUITABLE FEDERAL CR UN CAPITAL ACCUMULATION PLAN","033","2007-01-01","EQUITABLE FEDERAL CR UN",,,"PO BOX 4706",,"AKRON","OH","44310",,,,,,,,,,,,,,,,,,"341438491","3306337307","522130","EQUITABLE FEDERAL CR UN",,"PO BOX 4706",,"AKRON","OH","44310",,,,,,,"341438491","3306337307",,,,"2010-11-05T11:48:58-0500","JULIE GARDNER",,,,,2,0,0,0,0,0,0,0,0,,"2E2G2J2T3D2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-11-05","Filed with authorized/valid electronic signature",,
"20101115163047P040000364499001","2010-01-01","2010-01-06","2",,"0","0","1","1","0","1","0","0","0",,"PALMETTO MANAGEMENT & ENGINEERING, LLC 401(K) PLAN","001","2003-07-01","PALMETTO MANAGEMENT & ENGINEERING, LLC",,,"4550 NEW LINDEN HILL RD., SUITE 400",,"WILMINGTON","DE","198082952",,,,,,,,,,,,,,,,,,"010731572","8642883009","541330","PALMETTO MANAGEMENT & ENGINEERING, LLC",,"4550 NEW LINDEN HILL RD., SUITE 400",,"WILMINGTON","DE","198082952",,,,,,,"010731572","8642883009",,,,"2010-11-15T16:30:40-0600","JAMES D. VOGT","2010-11-15T16:30:40-0600","JAMES D. VOGT",,,373,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2010-11-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20101102133125P040000093782001","2010-01-01","2010-09-28","2",,"0","0","1","1","0","0","0","0","0",,"BOULEVARD DENTAL PC INC PROFIT SHARING PLAN AND TRUST","001","1999-01-01","BOULEVARD DENTAL PC INC",,,"411 W MARKET ST",,"LONG BEACH","NY","115611813",,,,,,,"411 W MARKET ST",,"LONG BEACH","NY","115611813",,,,,,,"113035567","5163145887","621210","BOULEVARD DENTAL PC INC",,"411 W MARKET ST",,"LONG BEACH","NY","115611813",,,,,,,"113035567","5163145887",,,,"2010-11-02T13:22:00-0500","JONATHAN MARCUS",,,,,4,0,0,0,0,0,0,0,0,,"2A2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-11-02","Filed with authorized/valid electronic signature",,
"20101102092644P040000065046001","2010-01-01","2010-03-31","2",,"0","1","1","1","0","0","0","0","0",,"MCBRIDE ELECTRIC, INC. EMPLOYEE GROUP BENEFIT PLAN","501","1985-02-01","MCBRIDE ELECTRIC, INC.",,,"6480 WEATHERS PLACE, SUITE #340",,"SAN DIEGO","CA","921213913",,,,,,,,,,,,,,,,,,"480630549","8584501414","238210","MCBRIDE ELECTRIC, INC.",,"6480 WEATHERS PLACE, SUITE #340",,"SAN DIEGO","CA","921213913",,,,,,,"480630549","8584501414",,,,"2010-11-01T18:56:40-0500","JULIE GASPER",,,,,382,0,0,0,0,,,,,,,"4A4D4E4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","6","1","0","0","FILING_RECEIVED","2010-11-02","Filed with authorized/valid electronic signature",,
"20101101090633P070000461187001","2010-01-01","2010-09-30","2",,,,"1","1",,,,,,,"NATHANSON, CIPRIANO AND GAMBARDELLA, P.C. PROFIT SHARING PLAN","001","1986-01-01","NATHANSON, CIPRIANO & GAMBARDELLA, P.C.",,,"60 WASHINGTON AVE., SUITE 104","P.O. BOX 5516","HAMDEN","CT","06518",,,,,,,,,,,,,,,,,,"061112200","2032881333","541110","NATHANSON, CIPRIANO & GAMBARDELLA, P.C.",,"60 WASHINGTON AVE., SUITE 104","P.O. BOX 5516","HAMDEN","CT","06518",,,,,,,"061112200","2032881333",,,,"2010-11-01T10:06:10-0500","JOHN CIPRIANO",,,,,16,0,0,0,0,0,0,0,0,,"2E2D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-11-01","Filed with authorized/valid electronic signature",,
"20101115143422P030002613825001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","1","0","0","0",,"UNITED SHORELINE FCU RETIREMENT SAVINGS FUND","011","1983-04-01","UNITED SHORELINE FCU",,,"107 WHITNEY AVE",,"NEW HAVEN","CT","065101232",,,,,,,,,,,,,,,,,,"060678593","2037866410","522130","UNITED SHORELINE FCU",,"107 WHITNEY AVE",,"NEW HAVEN","CT","065101232",,,,,,,"060678593","2037866410",,,,"2010-11-15T14:34:16-0600","LUCILLE CLANCY",,,,,1,0,0,0,0,0,0,0,0,0,"2C2G2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-11-15","Filed with authorized/valid electronic signature",,
"20101115150426P040000184324001","2010-01-01","2010-01-04","2",,"0","0","1","1","0","1","0","0","0",,"EIMO AMERICAS 401K PROFIT SHARING PLAN","001","1992-01-01","EIMO TECHNOLOGIES",,,"14320 PORTAGE ROAD, PO BOX E",,"VICKSBURG","MI","49097",,,,,,,,,,,,,,,,,,"261523987","2696490545","326100","EIMO TECHNOLOGIES",,"14320 PORTAGE ROAD, PO BOX E",,"VICKSBURG","MI","49097",,,,,,,"261523987","2696490545",,,,"2010-11-15T15:04:19-0600","MIKE KEITH",,,,,232,0,0,0,0,0,0,0,0,,"2E2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"0","0","0","FILING_RECEIVED","2010-11-15","Filed with authorized/valid electronic signature",,
"20101102081544P030000222354001","2010-01-01","2010-03-31","4","C","0","0","1","1","0","0","0","0","0",,"PNC BANK, N.A. INVESTMENT FUNDS FOR RETIREMENT TRUSTS - CAPITAL PRESERVATION FUND","007",,"PNC BANK, N.A.",,,"620 LIBERTY AVENUE 8TH FLOOR",,"PITTSBURGH","PA","15222",,,,,,,,,,,,,,,,,,"346519512","8007620061",,"PNC BANK, N.A.",,"620 LIBERTY AVENUE 8TH FLOOR",,"PITTSBURGH","PA","15222",,,,,,,"346519512","8007620061",,,,,,,,"2010-11-02T08:03:43-0500","ROBIN RICE",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2010-11-02",,"Filed with authorized/valid electronic signature",
"20101102142708P040000422994001","2010-01-01","2010-04-01","2",,"0","0","1","1",,,,,,,"PYRAMID MOULDINGS RETIREMENT PLAN","002","2001-05-01","THE PYRAMID MOULDINGS",,,"4630 COUNTY ROAD 209 SOUTH",,"GREEN COVE SPRINGS","FL","32043",,,,,,,"4630 COUNTY ROAD 209 SOUTH",,"GREEN COVE SPRINGS","FL","32043",,,,,,,"522283836","9042845611","332300","THE PYRAMID MOULDINGS",,"4630 COUNTY ROAD 209 SOUTH",,"GREEN COVE SPRINGS","FL","32043",,,,,,,"522283836","9042845611",,,,"2010-11-02T14:23:36-0500","S GORDON DAVIS JR","2010-11-02T14:24:08-0500","S GORDON DAVIS JR",,,130,0,0,0,0,0,0,0,0,,"2F2G2J2K2T3D3F",,,,"1",,,,"1",,"1",,,"1",,,,"1","1",,"FILING_RECEIVED","2010-11-02","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20101115091605P030000549208001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","0","0","0","0",,"DARRELL GREEN YOUTH LIFE FOUNDATION 403(B) RETIREMENT SAVINGS PLAN","001","2001-10-01","YOUTH LIFE FOUNDATION",,,"1920 IRVING STREET, NE",,"WASHINGTON","DC","20018",,,,,,,,,,,,,,,,,,"521576472","2022691207","624100","YOUTH LIFE FOUNDATION",,"1920 IRVING STREET, NE",,"WASHINGTON","DC","20018",,,,,,,"521576472","2022691207",,,,"2010-11-15T09:16:01-0600","TALIA BOONE","2010-11-15T09:16:01-0600","TALIA BOONE",,,0,0,0,0,0,0,0,0,0,,"2M2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-11-15","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20101112091940P030004552888001","2007-08-01","2008-07-31","2",,"0","0","0","0","0","0","0","0","0",,"MOUNT BAKER PRESCHOOL DEFINED CONTRIBUTION ON RETIREMENT PLAN","001","1999-04-29","MOUNT BAKER PRESCHOOL",,,"2800 S. MASSACHUSETTS STREET",,"SEATTLE","WA","98144",,,,,,,"2800 S. MASSACHUSETTS STREET",,"SEATTLE","WA","98144",,,,,,,"910903531","2063256711","611000","VIOLETTA G. WILSON",,"2800 S. MASSACHUSETTS STREET",,"SEATTLE","WA","98144",,,,,,,"910903531","2063256711","JULIE SULLENSZINO","910903531","001","2010-11-12T09:18:59-0600","JULIE SULLENSZINO",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-11-12","Filed with authorized/valid electronic signature",,
"20101123164323P030016618673001","2010-01-01","2010-07-31","2",,"0","1","1","1","0","0","0","0","0",,"PDT DESIGN 401K PROFIT SHARING PLAN","001","1969-01-01","PDT DESIGN",,,"300 WEST FOURTH STREET",,"CINCINNATI","OH","45202",,,,,,,,,,,,,,,,,,"310530805","5137456703","541310","PDT DESIGN",,"300 WEST FOURTH STREET",,"CINCINNATI","OH","45202",,,,,,,"310530805","5137456703",,,,"2010-11-23T16:39:31-0600","MARK BROWNING",,,,,4,0,0,0,0,0,0,0,0,,"2E2H2J2K3D2A2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-11-23","Filed with authorized/valid electronic signature",,
"20101201121504P040010861010001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","0","0",,"REAMETRIX INC 401(K) PROFIT SHARING PLAN & TRUST","001","2004-01-01","REAMETRIX INC",,,"1585 INDUSTRIAL RD",,"SAN CARLOS","CA","94070",,,,,,,"1585 INDUSTRIAL RD",,"SAN CARLOS","CA","94070",,,,,,,"651185549","6509628845","325410","REAMETRIX INC",,"1585 INDUSTRIAL RD",,"SAN CARLOS","CA","94070",,,,,,,"651185549","6509628845",,,,"2010-11-30T17:02:46-0600","JUDY PAU",,,,,6,5,0,0,5,0,5,3,0,,"2E2G2J3E",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-12-01","Filed with authorized/valid electronic signature",,
"20101119095428P040001228179001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","0","0","0","0",,"SHANAHAN & SONS BUILDERS, INC. PROFIT SHARING PLAN","002","1992-01-01","SHANAHAN & SONS BUILDERS, INC.",,,"1635 SHANAHAN DRIVE",,"SOUTH ELGIN","IL","601772276",,,,,,,,,,,,,,,,,,"363042852","8476954320","236110","SHANAHAN & SONS BUILDERS, INC.",,"1635 SHANAHAN DRIVE",,"SOUTH ELGIN","IL","601772276",,,,,,,"363042852","8476954320",,,,"2010-11-19T09:54:22-0600","JEFFREY SHANAHAN",,,,,17,0,0,0,0,0,0,0,0,,"2E2F2G2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-11-19","Filed with authorized/valid electronic signature",,
"20101123170248P040001191892001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","0","0","0","0",,"UROLOGY ASSOCIATES, S.C. 401(K) PROFIT SHARING PLAN","002","1984-06-01","UROLOGY ASSOCIATES, S.C.",,,"500 HEALTH CENTER DRIVE, SUITE 305",,"MATTOON","IL","61938",,,,,,,,,,,,,,,,,,"371156677","2172584186","621111","UROLOGY ASSOCIATES, S.C.",,"500 HEALTH CENTER DRIVE, SUITE 305",,"MATTOON","IL","61938",,,,,,,"371156677","2172584186",,,,"2010-11-23T16:58:26-0600","ROGER RIVES",,,,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-11-23","Filed with authorized/valid electronic signature",,
"20101123094425P040002127555001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","1","0",,"NORTH OF BOSTON LIBRARY EXCHANGE DEFINED CONTRIBUTION RETIREMENT PLAN","001","1994-10-01","NORTH OF BOSTON LIBRARY EXCHANGE",,,"26 CHERRY HILL DRIVE",,"DANVERS","MA","01923",,,,,,,"26 CHERRY HILL DRIVE",,"DANVERS","MA","01923",,,,,,,"222712714","9787778844","519100","NORTH OF BOSTON LIBRARY EXCHANGE",,"26 CHERRY HILL DRIVE",,"DANVERS","MA","01923",,,,,,,"222712714","9787778844",,,,"2010-11-23T09:43:19-0600","PAULA ACQUAVIVA",,,,,,,0,0,0,0,0,,0,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2010-11-23","Filed with authorized/valid electronic signature",,
"20101123113326P040001157764001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","1","0",,"JPIE INC SAFE HARBOR 401K PLAN","002","2006-01-01","JPIE INC","DIXON PHARMACY & MAIN ST PHARMACY",,"742 NORTH GALENA AVENUE",,"DIXON","IL","61021",,,,,,,,,,,,,,,,,,"362825587","8152883384","446110","JPIE INC",,"742 NORTH GALENA AVENUE",,"DIXON","IL","61021",,,,,,,"362825587","8152883384",,,,"2010-11-23T11:33:18-0600","JAMES PIETRYGA",,,,,27,26,0,0,26,0,26,11,0,,"2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-11-23","Filed with authorized/valid electronic signature",,
"20101119060250P030002192520001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","0","0","0",,"BRIGHT COMPANIES EMPLOYEE HEALTH BENEFIT PLAN","501","1990-09-01","BRIGHT AND COMPANY",,,"2911 TURTLE CREEK BOULEVARD,","SUITE 700","DALLAS","TX","752197115",,,,,,,,,,,,,,,,,,"751583918","2145590889","488990","BRIGHT AND COMPANY",,"2911 TURTLE CREEK BOULEVARD,","SUITE 700","DALLAS","TX","752197115",,,,,,,"751583918","2145590889",,,,"2010-11-19T06:02:39-0600","GEOFF GIBSON","2010-11-19T06:02:39-0600","GEOFF GIBSON",,,153,0,0,0,0,,,,,,,"4A4B4D4H4L","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2010-11-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20101202090835P040007995864001","2010-01-01","2010-04-26","2",,"0","0","1","1","0","0","0","0","0",,"SPRING VALLEY NURSING CENTER 401(K) PLAN","001","2001-01-01","SPRING VALLEY NURSING CENTER",,,"1300 NORTH GREENWOOD STREET",,"SPRING VALLEY","IL","61362",,,,,,,"1300 NORTH GREENWOOD STREET",,"SPRING VALLEY","IL","61362",,,,,,,"363047842","8156644708","623000","SPRING VALLEY NURSING CENTER",,"1300 NORTH GREENWOOD STREET",,"SPRING VALLEY","IL","61362",,,,,,,"363047842","8156644708",,,,"2010-12-01T10:09:53-0600","MORRIS STEINBURG",,,,,38,0,0,0,0,0,0,0,0,,"2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-12-02","Filed with authorized/valid electronic signature",,
"20101117090520P030000738051001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"PEACOCK, HISLOP, STALEY & GIVEN, INC. PROFIT SHARING PLAN AND TRUST","001","1990-01-01","PEACOCK, HISLOP, STALEY & GIVEN, INC.",,,"9892 EAST CHARTER OAK ROAD",,"SCOTTSDALE","AZ","85260",,,,,,,,,,,,,,,,,,"860591513","6029526800","523110","PEACOCK, HISLOP, STALEY & GIVEN, INC.",,"9892 EAST CHARTER OAK ROAD",,"SCOTTSDALE","AZ","85260",,,,,,,"860591513","6029526800",,,,"2010-11-16T17:06:50-0600","DAVID MILLER",,,,,3,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2R2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-11-17","Filed with authorized/valid electronic signature",,
"20101202161942P040011607922001","2006-01-01","2006-12-31","2",,"1","0","0","0","0","0","0","1","0",,"MEDICAL, DENTAL AND LIFE INSURANCE PLAN","501","2005-01-01","ROCHE OPERATIONS, LTD.",,,"2875 PONCE BY PASS","PO BOX 7085","PONCE","PR","007327085",,,,,,,"2875 PONCE BY PASS","PO BOX 7085","PONCE","PR","007327085",,,,,,,"660446098","7878436195","339900","ROCHE OPERATIONS, LTD.",,"2875 PONCE BY PASS","PO BOX 7085","PONCE","PR","007327085",,,,,,,"660446098","7878436195",,,,"2010-12-02T15:37:55-0600","MAYRA LOPEZ",,,,,161,156,0,0,156,0,156,,,,,"4A4B4D","1",,,"0","1",,,,,,,,,"1","4",,,,"FILING_RECEIVED","2010-12-02","Filed with authorized/valid electronic signature",,
"20101124085542P030001296484001","2003-01-01","2003-12-31","2",,"0","0","0","0","0","0","0","1","0",,"JOHN H SEIFERT DMD AND JAY M WYLAM DMD PROFIT SHARING PLAN","002","1988-01-01","JOHN H SEIFERT DMD",,,"2605 12TH PLACE SE",,"SALEM","OR","97302",,,,,,,"2605 12TH PLACE SE",,"SALEM","OR","97302",,,,,,,"930952133","5035854281","621210","JOHN H SEIFERT DMD",,"2605 12TH PLACE SE",,"SALEM","OR","97302",,,,,,,"930952133","5035854281",,,,"2010-11-22T20:33:49-0600","JOHN SEIFERT",,,,,14,16,,,16,,16,15,,,"2E2F2J3B",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-11-24","Filed with authorized/valid electronic signature",,
"20101202195313P040004271043001","2010-01-01","2010-03-31","4","C","0","0","1","1","0","0","0","0","0",,"INVESCO MODERATE ASSET ALLOCATION TRUST","001",,"INVESCO NATIONAL TRUST COMPANY",,,"1555 PEACHTREE STREET NE, STE 1100","TWO PEACHTREE POINTE","ATLANTA","GA","303092460",,,,,,,,,,,,,,,,,,"841227972","4048920896",,"INVESCO NATIONAL TRUST COMPANY",,"1555 PEACHTREE STREET NE, STE 1100","TWO PEACHTREE POINTE","ATLANTA","GA","303092460",,,,,,,"840591534","4048920896",,,,,,,,"2010-12-02T15:34:42-0600","PAUL SPRIGGS",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2010-12-02",,"Filed with authorized/valid electronic signature",
"20101202153508P040004228835001","2005-01-01","2005-12-31","2",,"1","0","0","0","0","0","0","1","0",,"GLASS SPORTS MEDICINE, P.C. 401K PROFIT SHARING PLAN AND TRUST","001","2005-01-01","GLASSON SPORTS MEDICINE, P.C.",,,"968 FIRST COLONIAL ROAD, SUITE 101",,"VIRGINIA BEACH","VA","23454",,,,,,,,,,,,,,,,,,"753054815","7574121005","621111","GLASSON SPORTS MEDICINE, P.C.",,"968 FIRST COLONIAL ROAD, SUITE 101",,"VIRGINIA BEACH","VA","23454",,,,,,,"753054815","7574121005",,,,"2010-12-02T15:35:00-0600","SANDRA GLASSON",,,,,0,6,0,0,6,0,6,6,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-02","Filed with authorized/valid electronic signature",,
"20101122070215P030014170321001","2007-01-01","2007-12-31","2",,"0","0","1","0","0","0","0","0","0",,"SCFK RETIREMENT PLAN","001","1996-01-01","SHULMAN COHEN FURST & CO",,"MICHAEL FURST","36 BRIANBETH PL",,"TAPPAN","NY","10983",,,,,,,,,,,,,,,,,,"133595778","8453596458","541211","SHULMAN COHEN FURST & CO","MICHAEL FURST","36 BRIANBETH PL",,"TAPPAN","NY","10983",,,,,,,"133595778","8453596458",,,,"2010-11-22T06:55:42-0600","MICHAEL FURST",,,,,0,,,,,0,0,0,0,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2010-11-22","Filed with authorized/valid electronic signature",,
"20101122143327P030000969318001","2010-01-01","2010-11-05","2",,"0","0","1","1","0","0","0","0","0",,"J - NEX, INC. 401(K) PLAN","001","1999-01-01","J - NEX, INC.",,,"10201 RIVERSIDE DRIVE",,"TOLUCA LAKE","CA","91602",,,,,,,"#203",,"TOLUCA LAKE","CA","91602",,,,,,,"953940007","8185089990","512100","J - NEX, INC.",,"10201 RIVERSIDE DRIVE",,"TOLUCA LAKE","CA","91602",,,,,,,"953940007","8185089990",,,,"2010-11-22T14:33:08-0600","ROSA PEER ALBERT",,,,,1,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2010-11-22","Filed with authorized/valid electronic signature",,
"20101129104611P040001865732001","2010-01-01","2010-03-31","2",,"0","0","1","1","0","1","0","0","0",,"NORTH STAR MARINE, L.L.C. 401(K) RETIREMENT PLAN","001","2007-01-01","NORTH STAR MARINE, L.L.C.",,,"107 ANGELLE COURT",,"HOUMA","LA","70360",,,,,,,,,,,,,,,,,,"721562636","9858684512","483000","NORTH STAR MARINE, L.L.C.",,"107 ANGELLE COURT",,"HOUMA","LA","70360",,,,,,,"721562636","9858684512",,,,"2010-11-29T10:43:35-0600","NEAL CHERAMIE",,,,,3,0,0,0,0,0,0,0,0,,"2A2E2J2K2F2G3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2010-11-29","Filed with authorized/valid electronic signature",,
"20101122103108P040003641848001","2010-01-01","2010-02-28","2",,"0","0","1","1","0","1","0","0","0",,"GRAMERCY SURGERY CENTER 401K PLAN","001","2009-01-01","GRAMERCY SURGERY CENTER",,,"380 2ND AVENUE 10TH FLOOR","SUITE 1000","NEW YORK","NY","10010",,,,,,,,,,,,,,,,,,"204336660","2122543570","621493","GRAMERCY SURGERY CENTER",,"380 2ND AVENUE 10TH FLOOR","SUITE 1000","NEW YORK","NY","10010",,,,,,,"204336660","2122543570",,,,"2010-11-22T10:31:01-0600","MAY CHAN",,,,,29,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D3H",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-11-22","Filed with authorized/valid electronic signature",,
"20101204094320P040001948661001","2010-01-01","2010-07-15","2",,"0","1","1","1","0","0","0","0","0",,"CLEVELAND GROWERS MARKETING CO. PROFIT SHARING PLAN AND TRUST FOR SALARIED EMPLOYEES","001","1964-01-15","CLEVELAND GROWERS MARKETING CO.",,,"12200 CORPORATE DR.",,"PARMA","OH","441309316",,,,,,,,,,,,,,,,,,"340150580","2168983900","424400","CLEVELAND GROWERS MARKETING CO.",,"12200 CORPORATE DR.",,"PARMA","OH","441309316",,,,,,,"340150580","2168983900",,,,"2010-12-04T09:41:28-0600","ROBERT A RANLLO","2010-12-04T09:43:13-0600","ROBERT A RANALLO",,,9,0,0,0,0,0,0,0,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-12-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20101215133407P040001078404001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","0","0",,"INFORMATION TECHNOLOGY","001","2002-02-14","INFORMATION TECHNOLOGY MANAGEMENT",,,"6208 WATERLILY CT",,"ALEXANDRIA","VA","22310",,,,,,,"6208 WATERLILY CT",,"ALEXANDRIA","VA","22310",,,,,,,"541829240","7039894974","541512","INFORMATION TECHNOLOGY MANAGEMENT",,"6208 WATERLILY CT",,"ALEXANDRIA","VA","22310",,,,,,,"541829240","7039894974",,,,"2010-12-15T13:33:42-0600","THU PHAM",,,,,0,0,0,,0,,0,,,,"2E2F2G2J2K3E",,,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2010-12-15","Filed with authorized/valid electronic signature",,
"20101212172104P040001201635001","2006-01-01","2006-12-31","2",,"0","1","0","0","0","0","0","0","0",,"G. MICHAEL LOPEZ, M.D. SELF EMPLOYED PROFIT SHARING PLAN","001","1985-01-01","G. MICHAEL LOPEZ, M.D.",,,"105 MILLS AVE., SUITE 300",,"LAS VEGAS","NM","87701",,,,,,,,,,,,,,,,,,"850305634","5054259311","621111","G. MICHAEL LOPEZ, M.D.",,"105 MILLS AVE., SUITE 300",,"LAS VEGAS","NM","87701",,,,,,,"850305634","5054259311","G. MICHAEL LOPEZ, M.D.","840305634","001","2010-12-12T17:20:42-0600","G. MICHAEL LOPEZ MD",,,,,7,8,0,0,8,0,8,7,0,,"2E2F2R3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-12","Filed with authorized/valid electronic signature",,
"20101210084530P030004811873001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","1","0","0","0",,"ACCRETECH USA INC 401K SALARY REDUCTION PLAN","001","1991-11-01","ACCRETECH USA INC",,,"2600 TELEGRAPH ROAD, SUITE 180",,"BLOOMFIELD HILLS","MI","48302",,,,,,,,,,,,,,,,,,"383229282","2483320100","334410","ACCRETECH USA INC",,"2600 TELEGRAPH ROAD, SUITE 180",,"BLOOMFIELD HILLS","MI","48302",,,,,,,"383229282","2483320100",,,,"2010-12-10T08:17:01-0600","KOJI GOTO",,,,,7,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-12-10","Filed with authorized/valid electronic signature",,
"20101210100911P040005803793001","2010-01-01","2010-04-30","2",,"0","0","1","1","1","1","0","0","0",,"STELLA D'ORO BISCUIT CO., INC SAL RED PLAN FOR EMPL OF LOC 550","002","2001-04-01","STELLA D ORO BISCUIT CO INC",,,"115 STEVENS AVE","SUITE 202","VALHALLA","NY","10595",,,,,,,,,,,,,,,,,,"131704866","9149842290","311800","STELLA D ORO BISCUIT CO INC",,"115 STEVENS AVE","SUITE 202","VALHALLA","NY","10595",,,,,,,"131704866","9149842290",,,,"2010-12-10T10:09:07-0600","DENNIS TORTORA",,,,,13,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-10","Filed with authorized/valid electronic signature",,
"20101213121300P030004075778001","2010-01-01","2010-05-03","2",,"0","0","1","1","0","0","0","0","0",,"CAROLINA'S RECYCLING GROUP, LLC RETIREMENT SAVINGS PLAN","002","1999-01-01","OMNISOURCE CORPORATION",,,"P.O. BOX 578",,"SPARTANBURG","SC","29365",,,,,,,,,,,,,,,,,,"562256626","8644397039","423930","OMNISOURCE CORPORATION",,"P.O. BOX 578",,"SPARTANBURG","SC","29365",,,,,,,"562256626","8644397039","RECYCLE SOUTH, LLC","571075008","002","2010-12-13T12:09:55-0600","MICHAEL MUNAFO",,,,,279,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2010-12-13","Filed with authorized/valid electronic signature",,
"20101221141757P030000184978001","2010-05-01","2010-07-31","2",,"0","0","1","1","0","0","0","0","0",,"A. G. STROBEL, INC. PROFIT SHARING PLAN","001","1970-04-23","A. G. STROBEL, INC.",,,"PO BOX 241464",,"APPLE VALLEY","MN","55124",,,,,,,,,,,,,,,,,,"410904567","6128197984","236200","A. G. STROBEL, INC.",,"PO BOX 241464",,"APPLE VALLEY","MN","55124",,,,,,,"410904567","6128197984",,,,"2010-12-21T14:17:40-0600","DANIEL KUTZKE",,,,,4,0,0,0,0,0,0,0,0,,"2E3D2F2G2J",,"1","0","0","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-12-21","Filed with authorized/valid electronic signature",,
"20101221161927P030003708416001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","1","0",,"PRANALYTICA EMPLOYEE SAVINGS PLAN","001","2000-09-01","PRANALYTICA, INC.",,,"1101 COLORADO AVENUE",,"SANTA MONICA","CA","90401",,,,,,,,,,,,,,,,,,"954750629","3104584493","339900","PRANALYTICA, INC.",,"1101 COLORADO AVENUE",,"SANTA MONICA","CA","90401",,,,,,,"954750629","3104584493",,,,"2010-12-21T16:16:20-0600","FRANCIS MCGUIRE",,,,,19,12,0,2,14,0,14,16,0,,"2F2G2J",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-21","Filed with authorized/valid electronic signature",,
"20101219163229P030003890451001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","0","0","0",,"NINE DOT STRATEGIES, INC. 401(K) PLAN","001","2008-03-01","NINE DOT STRATEGIES, INC.",,,"529 14TH STREET NW","SUITE 750","WASHINGTON","DC","20045",,,,,,,,,,,,,,,,,,"261753066","2026628861","541990","NINE DOT STRATEGIES, INC.",,"529 14TH STREET NW","SUITE 750","WASHINGTON","DC","20045",,,,,,,"261753066","2026628861",,,,"2010-12-19T16:32:20-0600","LISA CARR",,,,,2,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2010-12-19","Filed with authorized/valid electronic signature",,
"20101206133316P040038808641001","2001-07-01","2002-06-30","2",,"0","1","0","0","0","0","0","0","0",,"COMMUNITY MENTAL HEALTH CENTER, INC. BENEFIT PLAN","501","1990-03-01","COMMUNITY MENTAL HEALTH CENTER, INC.",,,"285 BIELBY ROAD",,"LAWRENCEBURG","IN","47025",,,,,,,"285 BIELBY ROAD",,"LAWRENCEBURG","IN","47025",,,,,,,"351129339","8125371302","621330","COMMUNITY MENTAL HEALTH CENTER, INC.",,"285 BIELBY ROAD",,"LAWRENCEBURG","IN","47025",,,,,,,"351129339","8125371302",,,,"2010-12-06T13:28:39-0600","GEORGII ZHIRKIN",,,,,88,83,,,83,,83,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,"1","1","2","1",,,"FILING_RECEIVED","2010-12-06","Filed with authorized/valid electronic signature",,
"20101203143924P030001943253001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","1","0","0","0",,"SUNNYSIDE EDUCATION SYSTEM INC 401K","001","2008-01-01","SUNNYSIDE EDUCATION SYSTEM INC",,,"14210 SE SUNNYSIDE ROAD",,"CLACKAMAS","OR","97015",,,,,,,,,,,,,,,,,,"204535344","5036588715","611000","SUNNYSIDE EDUCATION SYSTEM INC",,"14210 SE SUNNYSIDE ROAD",,"CLACKAMAS","OR","97015",,,,,,,"204535344","5036588715",,,,"2010-12-03T14:39:19-0600","JENNIE BRAWN",,,,,14,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-03","Filed with authorized/valid electronic signature",,
"20101206133409P040009830680001","2003-07-01","2004-06-30","2",,"0","1","0","0","0","0","0","0","0",,"COMMUNITY MENTAL HEALTH CENTER, INC. BENEFIT PLAN","501","1990-03-01","COMMUNITY MENTAL HEALTH CENTER, INC.",,,"285 BIELBY ROAD",,"LAWRENCEBURG","IN","47025",,,,,,,"285 BIELBY ROAD",,"LAWRENCEBURG","IN","47025",,,,,,,"351129339","8125371302","621330","COMMUNITY MENTAL HEALTH CENTER, INC.",,"285 BIELBY ROAD",,"LAWRENCEBURG","IN","47025",,,,,,,"351129339","8125371302",,,,"2010-12-06T13:27:57-0600","GEORGII ZHIRKIN",,,,,89,99,,,99,,99,,,,,"4A4B4D4E4F4H4Q","1",,,"1","1",,,"1",,,,,"1","1","3","1",,,"FILING_RECEIVED","2010-12-06","Filed with authorized/valid electronic signature",,
"20101216102334P030013784881001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","0","0",,"PRIMARY CARE ASSOCIATES, INC. 401(K) PROFIT SHARING PLAN","001","2003-01-01","PRIMARY CARE ASSOCIATES OF S.W. FLORIDA, P.A.",,,"2091 TAMIAMI TRAIL",,"PORT CHARLOTTE","FL","339482112",,,,,,,"2091 TAMIAMI TRAIL",,"PORT CHARLOTTE","FL","339482112",,,,,,,"651052826","9416259494","621111","PRIMARY CARE ASSOCIATES OF S.W. FLORIDA, P.A.",,"2091 TAMIAMI TRAIL",,"PORT CHARLOTTE","FL","339482112",,,,,,,"651052826","9416259494",,,,"2010-12-16T10:13:36-0600","DEBRA HOOPER",,,,,7,5,0,1,6,0,6,6,1,,"2E2F2G2J3E",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2010-12-16","Filed with authorized/valid electronic signature",,
"20101222131819P030001340753001","2010-01-01","2010-06-17","2",,"0","0","1","1","0","0","0","0","0",,"UTIX GROUP, INC. 401K PLAN","001","2006-03-10","UTIX GROUP, INC.",,"VERDOLINO AND LOWEY, P.C.","124 WASHINGTON STREET","SUITE 101","FOXBOROUGH","MA","02035",,,,,,,"124 WASHINGTON STREET","SUITE 101","FOXBOROUGH","MA","02035",,,,,,,"752340624","5085431720","541800","UTIX GROUP, INC.","VERDOLINO AND LOWEY, P.C.","124 WASHINGTON STREET","SUITE 101","FOXBOROUGH","MA","02035",,,,,,,"752340624","5085431720",,,,"2010-12-22T13:13:35-0600","LYNNE RILEY",,,,,4,0,0,0,0,0,0,0,,,"2F2G2J3D",,,,"1",,,,"1",,,,,,"1",,,"0",,,"FILING_RECEIVED","2010-12-22","Filed with authorized/valid electronic signature",,
"20101217110542P040018112977001","2010-01-01","2010-11-10","2",,"0","0","1","1","0","0","0","0","0",,"DR. DAVID P. HOLTROP CHIROPRACTOR, LTD. PROFIT SHARING PLAN AND TRUST","002","2002-01-01","DR. DAVID P. HOLTROP CHIROPRACTOR, LTD.",,,"4171 SOUTH 15TH STREET",,"SHEBOYGAN","WI","53081",,,,,,,,,,,,,,,,,,"391746106","9204599690","621111","DR. DAVID P. HOLTROP CHIROPRACTOR, LTD.",,"4171 SOUTH 15TH STREET",,"SHEBOYGAN","WI","53081",,,,,,,"391746106","9204599690",,,,"2010-12-17T10:58:01-0600","MICHELLE HOLTROP",,,,,7,0,0,0,0,0,0,0,0,,"2A2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2010-12-17","Filed with authorized/valid electronic signature",,
"20110107171254P040010281441001","2008-05-01","2009-04-30","2",,"0","0","0","0","0","0","0","1","0",,"TIMOTHY J. WALTERS, PC DEFINED BENEFIT PENSION PLAN","001","2003-05-01","TIMOTHY J. WALTERS, PC",,,"237 NE BROADWAY, SUITE 100",,"PORTLAND","OR","972321109",,,,,,,,,,,,,,,,,,"931295596","5034955780","531210","TIMOTHY J. WALTERS, PC",,"237 NE BROADWAY, SUITE 100",,"PORTLAND","OR","972321109",,,,,,,"931295596","5034955780",,,,"2011-01-07T17:12:10-0600","TIM WALTERS",,,,,2,2,0,0,2,0,2,,0,,"1A3B",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-07","Filed with authorized/valid electronic signature",,
"20110104122909P030008393137001","2009-09-01","2010-08-31","4","C","0","0","0","0","0","0","0","0","0",,"SMALL COMPANY DIVERSIFIED VALUE PORTFOLIO OF THE WTFSC CIT FOR EMPLOYEE BENEFIT PLANS","944",,"WILMINGTON TRUST FIDUCIARY SERVICES COMPANY CIT FOR EMPLOYEE BENEFIT P",,,"P.O. BOX 52129",,"PHOENIX","AZ","850722129",,,,,,,,,,,,,,,,,,"263783916","6029558373",,"WILMINGTON TRUST FIDUCIARY SERVICES COMPANY CIT FOR EMPLOYEE BENEFIT P",,"P.O. BOX 52129",,"PHOENIX","AZ","850722129",,,,,,,"263783916","6029558373",,,,,,,,"2011-01-04T12:28:44-0600","DOUG GROCHOWSKI",,,,,,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-01-04",,"Filed with authorized/valid electronic signature",
"20101229161211P030005194209001","2010-01-01","2010-02-08","2",,"0","0","1","1","0","1","0","1","0",,"PROPAK LOGISTICS INC. 401K PLAN","001","2000-10-01","PROPAK LOGISTICS INC.",,,"815 FORT STREET",,"BARLING","AR","72923",,,,,,,,,,,,,,,,,,"753107303","4794787839","541600","PROPAK LOGISTICS INC.",,"815 FORT STREET",,"BARLING","AR","72923",,,,,,,"753107303","4794787839",,,,"2010-12-29T16:11:47-0600","CLAUDIA ABRAJAN","2010-12-29T16:11:47-0600","CLAUDIA ABRAJAN",,,2185,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,"1","0","0","0","0","0","1","0","1","0","0","1","0","1","1","1","1","0","FILING_RECEIVED","2010-12-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20101229223902P030005329633001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","0","0","0",,"MAYTA & JENSEN SALARY DEFERRAL PLAN","004","2003-01-01","MAYTA & JENSEN",,,"101 WILLIAMS AVE.",,"SAN FRANCISCO","CA","94124",,,,,,,,,,,,,,,,,,"941052871","4158222200","236200","MAYTA & JENSEN",,"101 WILLIAMS AVE.",,"SAN FRANCISCO","CA","94124",,,,,,,"941052871","4158222200",,,,"2010-12-29T22:38:53-0600","MARK EVERETT","2010-12-29T22:38:53-0600","MARK EVERETT",,,18,0,0,0,0,0,0,0,0,,"2E2F2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2010-12-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110105130204P040041776032001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ANDRUS FAMILY INVESTMENTS, LLC 401(K) PROFIT SHARING PLAN & TRUST","001","2006-10-01","ANDRUS FAMILY INVESTMENTS, LLC",,"DANIELLE ANDRUS MONTALIEU","PO BOX 1213",,"MC MINNVILLE","OR","97148",,,,,,,"PO BOX 1213",,"MC MINNVILLE","OR","97148",,,,,,,"680416795","5032607674","722410","ANDRUS FAMILY INVESTMENTS, LLC","DANIELLE ANDRUS MONTALIEU","PO BOX 1213",,"MC MINNVILLE","OR","97148",,,,,,,"680416795","5032607674",,,,"2011-01-05T11:57:21-0600","DANIELLE ANDRUS MONTALIEU",,,,,1,1,0,0,1,0,1,0,1,,"2E2G2J2K3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-01-05","Filed with authorized/valid electronic signature",,
"20101230172015P040001676311001","2010-01-01","2010-09-14","2",,"0","0","1","1",,,,,,,"WEITZ MEDICAL MANAGEMENT 401(K) PROFIT SHARING PLAN","002","2004-01-01","WEITZ MEDICAL MANAGEMENT",,,"2300 SUTTER STREET","SUITE 304","SAN FRANCISCO","CA","94115",,,,,,,"2300 SUTTER STREET","SUITE 304","SAN FRANCISCO","CA","94115",,,,,,,"043588847","4152793061","621111","WEITZ MEDICAL MANAGEMENT",,"2300 SUTTER STREET","SUITE 304","SAN FRANCISCO","CA","94115",,,,,,,"043588847","4152793061",,,,"2010-12-30T16:58:52-0600","CAROL WEITZ",,,,,5,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2010-12-30","Filed with authorized/valid electronic signature",,
"20110105151511P030009025537001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"DESOTO INSURANCE AGENCY SIMPLE 401 (K) PLAN","001","2001-01-01","DESOTO INSURANCE AGENCY, INC.",,,"243 N. BREVARD AVE.",,"ARCADIA","FL","34266",,,,,,,"243 N. BREVARD AVE.",,"ARCADIA","FL","34266",,,,,,,"590218850","8634942242","524210","DESOTO INSURANCE AGENCY, INC.",,"243 N. BREVARD AVE.",,"ARCADIA","FL","34266",,,,,,,"590218850","8634942242",,,,"2011-01-05T15:14:50-0600","DESOTO INSURANCE AGENCY INC",,,,,10,9,0,0,9,0,9,8,0,,"2J2K2G3E2F",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-01-05","Filed with authorized/valid electronic signature",,
"20110107084134P040046402000001","2009-04-01","2010-03-31","2",,"0","0","0","0","0","1","0","0","0",,"TEXAS INSURANCE BROKERS, INC. SAFE HARBOR 401(K) PLAN","003","1983-10-01","TEXAS INSURANCE BROKERS, INC.",,,"4112 ASCOT LN",,"HOUSTON","TX","770928312",,,,,,,,,,,,,,,,,,"760000406","7136861719","524210","TEXAS INSURANCE BROKERS, INC.",,"4112 ASCOT LN",,"HOUSTON","TX","770928312",,,,,,,"760000406","7136861719",,,,"2011-01-07T08:41:28-0600","JOE ASSAD",,,,,3,2,0,0,2,0,2,2,0,,"2E2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-07","Filed with authorized/valid electronic signature",,
"20110103075629P040007849121001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"CLIFFORD VANBLARCOM DDS PC","001","1976-07-01","CLIFFORD VANBLARCOM DDS PC",,"CLIFFORD VANBLARCOM","6834 LINDEN",,"PRAIRIE VILLAGE","KS","662081426",,,,,,,"6834 LINDEN",,"PRAIRIE VILLAGE","KS","662081426",,,,,,,"431079825","9134325025","621210","CLIFFORD VANBLARCOM DDS PC","CLIFFORD VANBLARCOM","6834 LINDEN",,"PRAIRIE VILLAGE","KS","662081426",,,,,,,"431079825","9134325025",,,,"2011-01-03T07:55:44-0600","CLIFFORD VANBLARCOM",,,,,2,1,,,1,,1,1,,,"2G2E3E2C",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-03","Filed with authorized/valid electronic signature",,
"20110110105010P040001775922001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"RALYN ENTERPRISES, INC. PROFIT-SHARING PLAN","001","1999-06-09","RALYN ENTERPRISES, INC.",,,"40 KEENAN CREEK WAY",,"SIMPSONVILLE","SC","296806336",,,,,,,,,,,,,,,,,,"710826088","8642283965","236110","RALYN ENTERPRISES, INC.",,"40 KEENAN CREEK WAY",,"SIMPSONVILLE","SC","296806336",,,,,,,"710826088","8642283965",,,,"2011-01-10T10:49:26-0600","RAYMOND DRAUSE",,,,,1,0,0,0,0,0,0,0,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-10","Filed with authorized/valid electronic signature",,
"20110103091828P030001274434001","2010-04-01","2010-07-13","2",,"0","0","1","1","0","0","0","0","0",,"CIRUJANOS UNIDOS DEL NOROESTE RETIREMENT PLAN","001","2000-04-01","CIRUJANOS UNIDOS DEL NOROESTE",,,"25 AVE. SEVERIANO CUEVAS",,"AGUADILLA","PR","00603",,,,,,,,,,,,,,,,,,"660391479","7878918090","621111","CIRUJANOS UNIDOS DEL NOROESTE",,"25 AVE. SEVERIANO CUEVAS",,"AGUADILLA","PR","00603",,,,,,,"660391479","7878918090",,,,"2011-01-03T09:18:12-0600","REINA RODRIGUEZ",,,,,5,0,0,0,0,0,0,0,0,,"2E3C3B",,"1","0","1",,"1",,"1",,"1",,,,"1","1","1",,,,"FILING_RECEIVED","2011-01-03","Filed with authorized/valid electronic signature",,
"20110110064105P030011562449001","2009-10-16","2010-03-31","4","C","1","0","0","1","0","0","0","0","0",,"EB DV NON-SL SMALL CAP STOCK INDEX FUND","235",,"THE BANK OF NEW YORK MELLON",,,"500 GRANT STREET","ROOM 2145","PITTSBURGH","PA","152580001",,,,,,,,,,,,,,,,,,"256078093","4122366165",,"THE BANK OF NEW YORK MELLON",,"500 GRANT STREET","ROOM 2145","PITTSBURGH","PA","152580001",,,,,,,"256078093","4122366165",,,,,,,,"2011-01-10T06:38:30-0600","JEFFREY VAUGHN",0,0,,,0,,0,,,,,,,,,,,,,,,,,"1",,,,,"1",,"FILING_RECEIVED","2011-01-10",,"Filed with authorized/valid electronic signature",
"20110111103043P040012328097001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","1","0",,"CASHE, LEWIS, COUDRAIN, & SANDAGE","001","1989-01-01","CASHE, LEWIS, COUDRAIN, & SANDAGE",,,"106 S MAGNOLIA ST",,"HAMMOND","LA","70403",,,,,,,"106 S MAGNOLIA ST",,"HAMMOND","LA","70403",,,,,,,"460513245","9855426848","541110","CASHE, LEWIS, COUDRAIN, & SANDAGE",,"106 S MAGNOLIA ST",,"HAMMOND","LA","70403",,,,,,,"460513245","9855426848",,,,"2011-01-11T10:30:34-0600","FRANK HARRISON",,,,,13,15,0,0,15,0,15,11,0,0,"2E2J3E2K2G2F",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-11","Filed with authorized/valid electronic signature",,
"20110111185103P030012377585001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HAYNES, STUDNICKA, KAHAN, ONEILL & POULAKIDAS, LLC 401(K) PROFIT SHARING PLAN & TRUST","002","2007-01-01","HAYNES, STUDNICKA, KAHAN, ONEILL & POULAKIDAS",,,"200 WEST ADAMS ST., STE. 500",,"CHICAGO","IL","60606",,,,,,,,,,,,,,,,,,"364459180","3123326644","541110","HAYNES, STUDNICKA, KAHAN, ONEILL & POULAKIDAS",,"200 WEST ADAMS ST., STE. 500",,"CHICAGO","IL","60606",,,,,,,"364459180","3123326644",,,,"2011-01-11T10:15:26-0600","JAMES STUDNICKA","2011-01-11T10:15:26-0600","JAMES STUDNICKA",,,25,13,1,9,23,1,24,22,,,"2A2E2G2J2K",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-01-11","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110111185206P030003569335001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"JOHN BATES ASSOCIATES 401K PLAN","001","1998-01-01","JOHN BATES ASSOCIATES",,,"22952 MILL CREEK ROAD",,"LAGUNA HILLS","CA","92653",,,,,,,,,,,,,,,,,,"953872876","9494559301","541310","JOHN BATES ASSOCIATES",,"22952 MILL CREEK ROAD",,"LAGUNA HILLS","CA","92653",,,,,,,"953872876","9494559301",,,,"2011-01-11T18:51:58-0600","JANET SCHMIDT",,,,,8,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-11","Filed with authorized/valid electronic signature",,
"20110117105200P040072052000001","2010-01-01","2010-07-21","2",,"0","0","1","1","0","0","0","0","0",,"SHIPPS WHEELSPORT, INC. 401(K) PROFIT SHARING PLAN & TRUST","001","1999-01-01","SHIPPS WHEELSPORT, INC.",,,"7220 DIXIE HIGHWAY",,"FAIRFIELD","OH","45014",,,,,,,,,,,,,,,,,,"310984070","5138603232","441221","SHIPPS WHEELSPORT, INC.",,"7220 DIXIE HIGHWAY",,"FAIRFIELD","OH","45014",,,,,,,"310984070","5138603232",,,,"2011-01-17T10:51:54-0600","JEFF ZANG","2011-01-17T10:51:54-0600","JEFF ZANG",,,9,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-01-17","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110120143942P040002665410001","2008-09-01","2009-08-31","2",,"0","1","0","0","0","0","0","0","0",,"NEW YORK HEALTH CARE WELFARE BENEFIT PLAN","501","2002-09-01","NEW YORK HEALTH CARE, INC.",,,"20 EAST SUNRISE HIGHWAY",,"VALLEY STREAM","NY","11581",,,,,,,,,,,,,,,,,,"112636089","7183756700","541990","NEW YORK HEALTH CARE, INC.",,"20 EAST SUNRISE HIGHWAY",,"VALLEY STREAM","NY","11581",,,,,,,"112636089","7183756700",,,,"2011-01-20T14:35:20-0600","GERALD GARTNER",,,,,1266,1256,0,0,1256,,,,,,,"4A4B4D4E","1","0","0","0","1","0","0","0","0","0","0","0","0","1","4","0","0","0","FILING_RECEIVED","2011-01-20","Filed with authorized/valid electronic signature",,
"20110120085202P040017177281001","2010-01-01","2010-12-31","2",,"1","0","0","0","0","0","0","0","0",,"GROSFILLEX GROUP LIFE, STD, LTD","502","1989-07-01","GROSFILLEX INC","GROSFILLEX INC","SHIRLEY M STALLER","230 OLD WEST PENN AVENUE",,"ROBESONIA","PA","19551",,,,,,,"230 OLD WEST PENN AVENUE",,"ROBESONIA","PA","19551",,,,,,,"231714549","6106933504","337000","GROSFILLEX INC","SHIRLEY M STALLER","230 OLD WEST PENN AVENUE",,"ROBESONIA","PA","19551",,,,,,,"231714549","6106933504",,,,"2011-01-20T08:51:45-0600","SHIRLEY STALLER",,,,,145,155,0,0,155,0,155,,,,,"4B4F4H","1",,,,"1",,,,,,,,,"1","3",,,,"FILING_RECEIVED","2011-01-20","Filed with authorized/valid electronic signature",,
"20110120131004P030017339905001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"KOBRA INTERNATIONAL, LTD. 401K PROFIT SHARING PLAN","002","1995-01-01","KOBRA INTERNATIONAL, LTD.",,,"525 7TH AVE",,"NEW YORK","NY","100184901",,,,,,,,,,,,,,,,,,"133108059","2126557709","315990","KOBRA INTERNATIONAL, LTD.",,"525 7TH AVE",,"NEW YORK","NY","100184901",,,,,,,"133108059","2126557709",,,,"2011-01-20T13:05:38-0600","ANTHONY LODOLCE",,,,,93,65,0,21,86,0,86,51,0,,"2E2F2G2J3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-01-20","Filed with authorized/valid electronic signature",,
"20110118141145P030002609330001","2010-01-01","2010-06-07","2",,"0","0","1","1","0","1","0","0","0",,"RONALD S. WRIGHT, D.D.S., P.C. DEFINED BENEFIT PENSION PLAN & TRUST","002","2004-01-01","RONALD S. WRIGHT, D.D.S., P.C.",,,"3011 JACKSON ROAD",,"SPRING HILL","TN","37174",,,,,,,,,,,,,,,,,,"621120244","8654827876","621210","RONALD S. WRIGHT, D.D.S., P.C.",,"3011 JACKSON ROAD",,"SPRING HILL","TN","37174",,,,,,,"621120244","8654827876",,,,"2011-01-18T14:11:37-0600","RONALD S. WRIGHT, D.D.S.",,,,,6,0,0,0,0,0,0,,0,,"1B1I",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-18","Filed with authorized/valid electronic signature",,
"20110120065022P030078812080001","2010-01-01","2010-11-30","2",,"0","0","1","1","0","0","0","0","0",,"BAY STATE COOLING, INC. PROFIT SHARING PLAN","001","1997-12-03","BAY STATE COOLING, INC.",,,"992 BEDFORD STREET",,"BRIDGEWATER","MA","02324",,,,,,,,,,,,,,,,,,"043214565","5086979798","238220","BAY STATE COOLING, INC.",,"992 BEDFORD STREET",,"BRIDGEWATER","MA","02324",,,,,,,"043214565","5086979798",,,,"2011-01-19T15:03:47-0600","JAMES KJELGAARD","2011-01-19T15:03:47-0600","JAMES KJELGAARD",,,8,0,0,0,0,0,0,0,0,,"2A2E2H2J",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-20","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110121102404P030081753024001","2010-01-01","2010-06-30","2",,"0","0","0","1","0","0","0","0","0",,"HUBBARDTON FORGE, LLC FLEXIBLE BENEFITS PLAN","501","1991-06-01","HUBBARDTON FORGE, LLC",,,"P.O. BOX 827",,"CASTLETON","VT","05735",,,,,,,"154 ROUTE 30 SOUTH",,"CASTLETON","VT","05735",,,,,,,"203535651","8024682711","335100","HUBBARDTON FORGE, LLC",,"P.O. BOX 827",,"CASTLETON","VT","05735",,,,,,,"203535651","8024682711",,,,"2011-01-21T09:48:56-0600","MARGARET DUGAN",,,,,198,180,2,0,182,,,,,,,"4A4B4D4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","2","1","0","0","FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",,
"20110118092328P040000502675001","2010-01-01","2010-06-14","2",,"0","0","1","1","0","0","0","0","0",,"PBG HOURLY PENSION PLAN","021","1988-08-31","PEPSICO, INC.",,"ERIK A. SOSSA, 2/2","700 ANDERSON HILL ROAD",,"PURCHASE","NY","10577",,,,,,,,,,,,,,,,,,"131584302","9142532000","312110","PEPSICO, INC.","ERIK A. SOSSA, 2/2","700 ANDERSON HILL ROAD",,"PURCHASE","NY","10577",,,,,,,"131584302","9142532000",,,,"2011-01-18T07:57:46-0600","ERIK SOSSA",,,,,65707,0,0,,0,0,0,0,361,,"1B1G3H",,"0","0","1","0","0","0","1","0","1","0","1","1","0","0",,"1","1","0","FILING_RECEIVED","2011-01-18","Filed with authorized/valid electronic signature",,
"20110120094657P030017251153001","2010-01-01","2010-04-30","2",,"0","0","1","1","0","1","1","0","0",,"STRUCSURE HOME WARRENTY LLC PROFIT SHARING PLAN & TRUST","001","2000-01-01","STRUCSURE HOME WARRANTY LLC.",,,"6825 EAST TENNESSE AVENUE","SUITE 410","DENVER","CO","80224",,,,,,,,,,,,,,,,,,"841390859","3038068688","524290","STRUCSURE HOME WARRANTY LLC.",,"6825 EAST TENNESSE AVENUE","SUITE 410","DENVER","CO","80224",,,,,,,"841390859","3038068688",,,,"2011-01-20T09:46:45-0600","CRAIG STEPHENSON",,,,,20,0,0,0,0,0,0,0,0,,"2E2F2G2J2S2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-01-20","Filed with authorized/valid electronic signature",,
"20110117131501P030015648865001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"MIDWESTHR, LLC 401K RETIREMENT PLAN","001","2005-09-01","BUTTERFIELD MEMORIAL FOUNDATION",,"MIDWESTHR LLC","4355 WEAVER PARKWAY SUITE 140",,"WARRENVILLE","IL","60555",,,,,,,,,,,,,,,,,,"900607049","4056080517","541990","MIDWESTHR, LLC","4355 WEAVER PARKWAY","SUITE 140",,"WARRENVILLE","IL","60555",,,,,,,"880457743","6308363000","BUTTERFIELD MEMORIAL FOUNDATION","731283806","001","2011-01-17T10:15:27-0600","JEFFREY BARTELT",,,,,13,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-01-17","Filed with authorized/valid electronic signature",,
"20110121145117P040017848705001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"HARTWICK COLLEGE HEALTHCARE PLAN","523","2007-07-01","HARTWICK COLLEGE",,"SUZANNE JANITZ","ONE HARTWICK DRIVE",,"ONEONTA","NY","13820",,,,,,,,,,,,,,,,,,"150533561","6074314319","611000","HARTWICK COLLEGE","SUZANNE JANITZ","ONE HARTWICK DRIVE",,"ONEONTA","NY","13820",,,,,,,"150533561","6074314319",,,,"2011-01-21T14:49:55-0600","SUZANNE JANITZ",,,,,225,219,6,0,225,,225,,,,,"4A","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",,
"20110121121507P030017886705001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"MOANA COMMUNITY ASSOCIATION MONEY PURCHASE PLAN","001","2005-01-01","MOANA COMMUNITY ASSOCIATION",,,"PO BOX 7669",,"NEWPORT BEACH","CA","926587669",,,,,,,,,,,,,,,,,,"330540818","9494768100","531390","MOANA COMMUNITY ASSOCIATION",,"PO BOX 7669",,"NEWPORT BEACH","CA","926587669",,,,,,,"330540818","9494768100",,,,"2011-01-21T12:07:18-0600","DAVID BROUNSTEIN",,,,,1,1,0,0,1,0,1,1,,,"2R2G3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",,
"20110121150403P040002755330001","2008-05-01","2009-04-30","2",,"0","1","0","0","0","0","0","1","0",,"KINDERBERRY HILL CHILD DEVELOPMENT CENTER","502","2000-02-01","NEW HORIZON ENTERPRISES LTD",,,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"411949522","7633836227","624410","NEW HORIZON ENTERPRISES LTD",,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"411949522","7633836227",,,,"2011-01-21T15:03:55-0600","KELLY BLACK",,,,,128,139,1,0,140,0,140,0,0,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",,
"20110126143745P040000639379001","2010-01-01","2010-11-30","2",,"0","0","1","1","0","0","0","0","0",,"FIRST NATIONAL BANK AT ST. JAMES EMPLOYEE STOCK OWNERSHIP PLAN","002","1982-01-01","FIRST NATIONAL BANK AT ST. JAMES",,,"PO BOX 270",,"ST. JAMES","MN","560810270",,,,,,,,,,,,,,,,,,"410256860","5073753376","522110","FIRST NATIONAL BANK AT ST. JAMES",,"PO BOX 270",,"ST. JAMES","MN","560810270",,,,,,,"410256860","5073753376",,,,"2011-01-26T14:37:11-0600","MYRON J. JOHNSON",,,,,14,0,0,0,0,0,0,0,0,,"2I2P",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",,
"20110126175306P030020677777001","2008-01-01","2008-12-31","2",,"0","1","0","0","0","0","0","0","0",,"JOHANSON DIELECTRICS, INC. EMPLOYEES PROFIT SHARING PLAN","001","1978-01-01","JOHANSON DIELECTRICS, INC.",,,"15191 BLEDSOE STREET",,"SYLMAR","CA","91342",,,,,,,,,,,,,,,,,,"952416273","8053891166","335900","JOHANSON DIELECTRICS, INC.",,"15191 BLEDSOE STREET",,"SYLMAR","CA","91342",,,,,,,"952416273","8053891166",,,,"2011-01-26T17:52:55-0600","SUSAN FARINACCI",,,,,929,531,0,258,789,1,790,608,51,,"2E2F2G2J2K2T3D3H",,"0","0","1","0","0","0","1","0","0","0","0","1","0","0",,"0","1","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",,
"20110121143434P040082850064001","2008-08-01","2009-07-31","2",,"1","0","0","0","0","0","0","1","0",,"QUANTUM REAL ESTATE MANAGEMENT LLC LIFE PLAN","501","2008-08-01","QUANTUM REAL ESTATE MANAGEMENT LLC",,,"5101 RIVER ROAD SUITE 101",,"BETHESDA","MD","208161560",,,,,,,,,,,,,,,,,,"134206996","3019418040","531310","QUANTUM REAL ESTATE MANAGEMENT LLC",,"5101 RIVER ROAD SUITE 101",,"BETHESDA","MD","208161560",,,,,,,"134206996","3019418040",,,,"2011-01-21T14:30:28-0600","SANDRA BUDOCK","2011-01-21T14:24:10-0600","MARGARET BESSETTE",,,108,117,0,0,117,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110124143021P030089868976001","2010-01-01","2010-09-20","2",,"0","0","1","1","0","0","0","0","0",,"SOUTH Y FIREPLACE INC. 401(K) PLAN","001","2008-03-18","SOUTH Y FIREPLACE INC.",,,"568 SOUTH MOHLER ROAD",,"RIPON","CA","95366",,,,,,,,,,,,,,,,,,"262263918","2095995774","238990","SOUTH Y FIREPLACE INC.",,"568 SOUTH MOHLER ROAD",,"RIPON","CA","95366",,,,,,,"262263918","2095995774",,,,"2011-01-24T14:30:12-0600","CURT DOWHOWER",,,,,4,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-24","Filed with authorized/valid electronic signature",,
"20110126073745P030020437009001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"JAT CONSTRUCTION INC 401(K) PLAN AND TRUST","001","2004-01-01","JAT CONSTRUCTION INC",,,"17105 QUARTER HORSE WAY",,"OLNEY","MD","208322515",,,,,,,"17105 QUARTER HORSE WAY",,"OLNEY","MD","208322515",,,,,,,"311206450","3019241128","236200","JAT CONSTRUCTION INC",,"17105 QUARTER HORSE WAY",,"OLNEY","MD","208322515",,,,,,,"311206450","3019241128",,,,"2011-01-26T07:25:56-0600","MANFRED HAMER",,,,,3,3,0,0,3,0,3,3,0,,"2A2E2G2J3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",,
"20110123085056P040018802609001","2010-01-01","2010-12-31","2",,"0",,"1","0","0","0","0","0","0",,"KAYTEE PRODUCTS INC. GROUP HEALTH PLAN","502","1981-08-01","KAYTEE PRODUCTS, INC.","KAYTEE PRODUCTS, INC.",,"521 CLAY STREET","P O BOX 230","CHILTON","WI","53014",,,,,,,"521 CLAY STREET","P O BOX 230","CHILTON","WI","53014",,,,,,,"390399490","9208492321","311110","KAYTEE PRODUCTS, INC.",,"521 CLAY STREET","P O BOX 230","CHILTON","WI","53014",,,,,,,"390399490","9208492321",,,,"2011-01-23T08:49:48-0600","JUDY WOELFEL","2011-01-23T08:49:08-0600","JUDY WOELFEL",,,0,0,0,0,0,0,0,0,0,0,,"4A4D4F",,,,"1",,,,"1",,,,,,,,,,,"FILING_RECEIVED","2011-01-23","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110119085332P030002677314001","2010-01-01","2010-04-01","2",,"0","0","1","1","0","1","0","0","0",,"EATON VANCE MANAGEMENT SAVINGS PLAN","002","1969-06-01","EATON VANCE MANAGEMENT",,,"TWO INTERNATIONAL PLACE, 8TH FLOOR",,"BOSTON","MA","02110",,,,,,,,,,,,,,,,,,"043101341","6176728581","523120","EATON VANCE MANAGEMENT",,"TWO INTERNATIONAL PLACE, 8TH FLOOR",,"BOSTON","MA","02110",,,,,,,"043101341","6176728581",,,,"2011-01-19T08:53:11-0600","DAN ETHIER","2011-01-19T08:53:11-0600","DAN ETHIER",,,1039,0,0,0,0,0,0,0,0,,"2E2F2H2J2K3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-01-19","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110126142712P040095525392001","2007-05-01","2008-04-30","2",,"0","0","0","0","0","1","0","1","0",,"APEX RACK AND COATING CO., INC 401(K) RETIREMENT PLAN","001","1983-04-01","APEX RACK AND COATING CO., INC",,,"3434 BUSCH DR SW",,"GRANDVILLE","MI","494181098",,,,,,,,,,,,,,,,,,"381657326","3135306811","332900","APEX RACK AND COATING CO., INC",,"3434 BUSCH DR SW",,"GRANDVILLE","MI","494181098",,,,,,,"381657326","3135306811",,,,"2011-01-26T14:25:32-0600","DENNIS CARLON","2011-01-26T14:25:32-0600","DENNIS CARLON",,,23,19,0,3,22,0,22,20,0,,"2E2F2G2J3H",,"0","0","1","0","1","0","1","0","0","0","0","0","1","1","1","0","0","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110121143759P040017844417001","2007-01-01","2007-12-31","2",,"0","1","0","0","0","0","0","1","0",,"NEW HORIZON ENTERPRISES INC","501","1988-05-01","NEW HORIZON ENTERPRISES LTD",,,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"411949522","7633836227","624410","NEW HORIZON ENTERPRISES LTD",,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"411949522","7633836227",,,,"2011-01-21T14:37:50-0600","KELLY BLACK",,,,,147,145,4,0,149,0,149,0,0,,,"4D","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",,
"20110124181849P040090846272001","2010-01-01","2010-06-30","2",,"0","0","1","1","0","0","0","0","0",,"RETIREMENT PLAN FOR FLIGHT ATTENDANTS OF ALOHA AIRLINES, INC.","006","1973-03-02","ALOHA AIRLINES, INC.",,,"PO BOX 30028",,"HONOLULU","HI","968200028",,,,,,,,,,,,,,,,,,"990064888","8088364239","481000","ALOHA AIRLINES, INC. PENSION COMMITTEE",,"PO BOX 30028",,"HONOLULU","HI","96820",,,,,,,"990172599","8088364239",,,,"2011-01-24T18:14:12-0600","DANE FIELD",,,,,407,0,0,0,0,0,0,0,0,,"2C",,"0","0","1","0","1","0","1","0","1","0","0","1","0","0","0","1","0","0","FILING_RECEIVED","2011-01-24","Filed with authorized/valid electronic signature",,
"20110125153125P040020024881001","2010-01-01","2010-06-22","2",,"0","1","1","1","0","0","0","0","0",,"THEERAWAT PATTAROPONG MD PROFIT SHARING PLAN","005","1985-01-01","THEERAWAT PATTAROPONG MD",,,"465 SAINT PETER DR",,"NEW MADRID","MO","63869",,,,,,,"465 SAINT PETER DR",,"NEW MADRID","MO","63869",,,,,,,"431017511","5737482546","621111","THEERAWAT PATTAROPONG MD",,"465 SAINT PETER DR",,"NEW MADRID","MO","63869",,,,,,,"431017511","5737482546",,,,"2011-01-25T15:30:57-0600","DOUG MCDOWELL",,,,,3,0,0,0,0,,0,0,0,0,"2C2G",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-25","Filed with authorized/valid electronic signature",,
"20110125164112P040020056593001","2010-01-01","2010-12-10","2",,"0","0","1","1","0","0","0","0","0",,"FLORENCE NEUROLOGICAL CLINIC, PA 401(K) PROFIT- SHARING PLAN","001","1972-04-01","FLORENCE NEUROLOGICAL CLINIC, PA",,,"1929 MOUNTAIN LAUREL COURT STE B",,"FLORENCE","SC","29505",,,,,,,,,,,,,,,,,,"570541060","8436644104","621112","FLORENCE NEUROLOGICAL CLINIC, PA",,"1929 MOUNTAIN LAUREL COURT STE B",,"FLORENCE","SC","29505",,,,,,,"570541060","8436644104",,,,"2011-01-25T16:40:02-0600","ASHLEY D. KENT",,,,,19,0,0,0,0,0,0,0,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-25","Filed with authorized/valid electronic signature",,
"20110119131845P040016732993001","2010-07-01","2010-07-07","2",,"0","0","1","1","0","0","0","0","0",,"J.C. HENRY BORGMAN, A PROFESSIONAL LAW CORPORATION PROFIT SHARING PLAN","003","1995-07-01","J.C. HENRY BORGMAN, A PROFESSIONAL LAW CORPORATION",,,"P.O. BOX 5197",,"WALNUT CREEK","CA","94596",,,,,,,"500 YGNACIO VALLEY ROAD, STE 490",,"WALNUT CREEK","CA","94596",,,,,,,"680065011","9259470580","541110","J.C. HENRY BORGMAN, A PROFESSIONAL LAW CORPORATION",,"P.O. BOX 5197",,"WALNUT CREEK","CA","94596",,,,,,,"680065011","9259470580",,,,"2011-01-19T13:18:40-0600","WARREN HUTSON",,,,,2,0,0,0,0,0,0,0,0,,"2E3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-19","Filed with authorized/valid electronic signature",,
"20110126142953P040003165506001","2005-01-01","2005-12-31","2",,"0","0","1","0","0","0","0","1","0",,"CARDINAL BANK LIFE AND AD&D PLAN","502","2001-01-01","CARDINAL FINANCIAL CORPORATION",,,"8270 GREENSBORO DRIVE SUITE 500",,"MCLEAN","VA","22102",,,,,,,,,,,,,,,,,,"541874630","7035843400","551111","CARDINAL FINANCIAL CORPORATION",,"8270 GREENSBORO DRIVE SUITE 500",,"MCLEAN","VA","22102",,,,,,,"541874630","7035843400",,,,"2011-01-26T14:25:45-0600","CHERYL STEINBACHER",,,,,366,0,0,0,0,,,,,,,"4B4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",,
"20110119102849P030016690657001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THE FIREMARK GROUP, INC. 401(K) SAVINGS PLAN","001","1990-03-01","THE FIREMARK GROUP, INC.",,,"200 W. DE VARGAS ST. - SUITE 9",,"SANTA FE","NM","87501",,,,,,,,,,,,,,,,,,"223044048","8669898384","524210","THE FIREMARK GROUP, INC.",,"200 W. DE VARGAS ST. - SUITE 9",,"SANTA FE","NM","87501",,,,,,,"223044048","8669898384",,,,"2011-01-19T10:28:42-0600","JOANNE MORRISSEY",,,,,7,0,0,7,7,0,7,7,0,,"2E2G2J2K2F",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-19","Filed with authorized/valid electronic signature",,
"20110121144458P030017943409001","2003-05-01","2004-04-30","2",,"1","1","0","0","0","0","0","1","0",,"KINDERBERRY HILL CHILD DEVELOPMENT CENTER","502","2000-02-01","NEW HORIZON ENTERPRISES LTD",,,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"411949522","7633836227","624410","NEW HORIZON ENTERPRISES LTD",,"3405 ANNAPOLIS LANE NORTH","SUITE 100","PLYMOUTH","MN","55447",,,,,,,"411949522","7633836227",,,,"2011-01-21T14:44:49-0600","KELLY BLACK",,,,,110,116,0,0,116,0,116,0,0,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-01-21","Filed with authorized/valid electronic signature",,
"20110126140624P040005947079001","2002-01-01","2002-12-31","2",,"0","0","0","0","0","0","0","1","0",,"CARDINAL FINANCIAL CORPORATION LONG TERM DISABILITY PLAN","503","2001-01-01","CARDINAL FINANCIAL CORPORATION","8270 GREENSBORO DRIVE SUITE 500",,"8270 GREENSBORO DRIVE SUITE 500",,"MCLEAN","VA","22102",,,,,,,,,,,,,,,,,,"541874630","7035843400","551111","CARDINAL FINANCIAL CORPORATION",,"8270 GREENSBORO DRIVE SUITE 500",,"MCLEAN","VA","22102",,,,,,,"541874630","7035843400",,,,"2011-01-26T14:02:21-0600","CHERYL STEINBACHER",,,,,115,104,0,0,104,,,,,,,"4H","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-01-26","Filed with authorized/valid electronic signature",,
"20110112130556P040012901121001","1989-07-01","1989-12-31","2",,"1","0","0","1","0","0","0","1","0",,"ASMO MANUFACTURING, INC. ASSOCIATE BENEFIT PLAN","501","1989-07-01","ASMO MANUFACTURING, INC.",,,"500 FRITZ-KEIPER BOULEVARD",,"BATTLE CREEK","MI","49037",,,,,,,,,,,,,,,,,,"383442601","2699628257","336300","ASMO MANUFACTURING, INC.",,"500 FRITZ-KEIPER BOULEVARD",,"BATTLE CREEK","MI","49037",,,,,,,"383442601","2699628257",,,,"2011-01-12T13:05:50-0600","CARRIE A. NICHOLSON",,,,,0,0,0,0,0,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","0",,"0","0","0","FILING_RECEIVED","2011-01-12","Filed with authorized/valid electronic signature",,
"20110112131408P040012904801001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"ASMO MANUFACTURING, INC. ASSOCIATE BENEFIT PLAN","501","1989-07-01","ASMO MANUFACTURING, INC.",,,"500 FRITZ-KEIPER BOULEVARD",,"BATTLE CREEK","MI","49037",,,,,,,,,,,,,,,,,,"383442601","2699628257","336300","ASMO MANUFACTURING, INC.",,"500 FRITZ-KEIPER BOULEVARD",,"BATTLE CREEK","MI","49037",,,,,,,"383442601","2699628257",,,,"2011-01-12T13:14:02-0600","CARRIE A. NICHOLSON",,,,,297,292,2,0,294,,,,,,,"4A4B4D4E4F4H4L","1","0","0","1","1","0","0","1","0","0","0","0","0","1","3","0","0","0","FILING_RECEIVED","2011-01-12","Filed with authorized/valid electronic signature",,
"20110113125317P030013372337001","2010-01-01","2010-08-31","2",,"0","0","1","1","0","0","0","0","0",,"OASYS DESIGN SYSTEMS INC. 401K PLAN","001","2005-07-01","OASYS DESIGN SYSTEMS INC.",,,"3250 OLCOTT STREET","SUITE 120","SANTA CLARA","CA","95054",,,,,,,,,,,,,,,,,,"562470572","5105798963","511210","OASYS DESIGN SYSTEMS INC.",,"3250 OLCOTT STREET","SUITE 120","SANTA CLARA","CA","95054",,,,,,,"562470572","5105798963",,,,"2011-01-13T12:53:13-0600","JOHNSON LIMQUECO",,,,,14,0,0,0,0,0,0,0,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-01-13","Filed with authorized/valid electronic signature",,
"20110113115744P030061519680001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"PARSONS CONSTRUCTION INC CAFETERIA PLAN","501","2002-01-01","PARSONS CONSTRUCTION INC","PARSONS CONSTRUCTION INC",,"7703 E. TRENT AVE",,"SPOKANE","WA","99212",,,,,,,"7703 E. TRENT AVE",,"SPOKANE","WA","99212",,,,,,,"911646270","5099289008","236110","PARSONS CONSTRUCTION INC",,"7703 E. TRENT AVE",,"SPOKANE","WA","99212",,,,,,,"911646270","5099289008",,,,"2011-01-13T11:55:39-0600","DAVID PARSONS",,,,,3,3,0,0,3,0,3,0,0,,,"4A","0",,,"1","1",,,,,,,,,,,,,,"FILING_RECEIVED","2011-01-13","Filed with authorized/valid electronic signature",,
"20110113155145P040013492593001","2008-01-01","2008-12-31","2",,"0","0","0","0","0","0","0","1","0",,"NATIONAL UNIVERSITY OF HEALTH SCIENCES DEFINED CONTRIBUTION RETIREMENT AND TAX DEFERRED ANNUITY PLAN","003","1991-01-01","NATIONAL UNIVERSITY OF HEALTH SCIENCES",,,"200 E ROOSEVELT RD",,"LOMBARD","IL","601484539",,,,,,,,,,,,,,,,,,"361521940","6308896556","611000","NATIONAL UNIVERSITY OF HEALTH SCIENCES",,"200 E ROOSEVELT RD",,"LOMBARD","IL","601484539",,,,,,,"361521940","6308896556",,,,"2011-01-13T15:51:18-0600","RON MENSCHING",,,,,,,,,0,,0,,,,"2L2G2F2M",,"0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","0","FILING_RECEIVED","2011-01-13","Filed with authorized/valid electronic signature",,
"20110112141015P030012816129001","2010-01-01","2010-08-31","1",,"0","0","0","1","1","0","0","0","0",,"IPM HEALTH & WELFARE TRUST OF CALIFORNIA","501","1970-07-01","IPM HEALTH & WELFARE TRUST OF CALIFORNIA",,,"1168 E LA CADENA DRIVE",,"RIVERSIDE","CA","92507",,,,,,,"1168 E LA CADENA DRIVE",,"RIVERSIDE","CA","92507",,,,,,,"956289239","9516841791","525100","IPM HEALTH & WELFARE TRUST OF CALIFORNIA",,"1168 E LA CADENA DRIVE",,"RIVERSIDE","CA","92507",,,,,,,"956289239","9516841791",,,,"2011-01-11T11:56:10-0600","CYNTHIA SMITH","2011-01-12T13:31:45-0600","JAMES REED",,,705,688,,,688,,688,,,,,"4A4D4E4F4H4L",,,"1",,,,"1",,,,,"1",,,,"1",,,"FILING_RECEIVED","2011-01-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110113121617P030013357873001","2010-01-01","2010-03-31","2",,,,"1","1",,"1",,,,,"YONKERS CONTRACTING CO., INC.INCENTIVE SAVINGS TRUST","002","1987-01-01","YONKERS CONTRACTING CO., INC.",,,"969 MIDLAND AVENUE",,"YONKERS","NY","10704",,,,,,,,,,,,,,,,,,"132981331","9149651500","238100","YONKERS CONTRACTING CO., INC.",,"969 MIDLAND AVENUE",,"YONKERS","NY","10704",,,,,,,"132981331","9149651500",,,,"2011-01-13T12:16:09-0600","MICHAEL KELLER",,,,,129,0,0,0,0,0,0,0,0,,"2G2J3H",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-01-13","Filed with authorized/valid electronic signature",,
"20110112204123P040060336768001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"NORBERT CRONIN & COMPANY PROFIT SHARING PLAN","002","1994-01-01","NORBERT CRONIN & COMPANY",,,"582 MARKET STREET, SUITE 1104",,"SAN FRANCISCO","CA","941045312",,,,,,,,,,,,,,,,,,"941377397","4159812222","524210","NORBERT CRONIN & COMPANY",,"582 MARKET STREET, SUITE 1104",,"SAN FRANCISCO","CA","941045312",,,,,,,"941377397","4159812222",,,,"2011-01-12T20:41:17-0600","JAMES CRONIN","2011-01-12T20:41:17-0600","JAMES CRONIN",,,3,3,0,0,3,0,3,3,0,,"2A2E2F2G2R2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-01-12","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110112141454P040012933761001","2010-01-01","2010-12-23","2",,"0","0","1","1","0","0","0","0","0",,"WD COMMUNICATIONS, INC. DEFINED BENEFIT PLAN AND TRUST","002","2000-01-01","WD COMMUNICATIONS, INC.",,,"6800 W. COMMERCIAL BLVD., SUITE 5",,"LAUDERHILL","FL","333192149",,,,,,,,,,,,,,,,,,"591953252","9547484353","541400","WD COMMUNICATIONS, INC.",,"6800 W. COMMERCIAL BLVD., SUITE 5",,"LAUDERHILL","FL","333192149",,,,,,,"591953252","9547484353",,,,"2011-01-12T14:14:52-0600","BEVERLY DURLING",,,,,38,0,0,0,0,0,0,,0,,"1A1G1I3D",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-12","Filed with authorized/valid electronic signature",,
"20110209153751P040007518737001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PEGASUS EMERGENCY GROUP NEW JERSEY 401(K) PLAN AND TRUST","002","1997-01-01","PEGASUS EMERGENCY GROUP PA",,,"22 BADGER DR",,"SKILLMAN","NJ","085581667",,,,,,,"22 BADGER DR",,"SKILLMAN","NJ","085581667",,,,,,,"223436121","9082375420","812990","PEGASUS EMERGENCY GROUP PA",,"22 BADGER DR",,"SKILLMAN","NJ","085581667",,,,,,,"223436121","9082375420",,,,"2011-02-09T15:25:38-0600","EDWARD SPECTOR",,,,,16,14,0,2,16,0,16,16,0,,"2E2G2J2K2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",,
"20110209153908P040002363511001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"PEOPLES BANK OF DEER LODGE","501","1990-07-15","PEOPLES BANK OF DEER",,,"430 MAIN ST",,"DEER LODGE","MT","59722",,,,,,,"430 MAIN ST",,"DEER LODGE","MT","59722",,,,,,,"810445110","4068462400","522110","PEOPLES BANK OF DEER",,"430 MAIN ST",,"DEER LODGE","MT","59722",,,,,,,"810445110","4068462400",,,,"2011-02-09T15:37:25-0600","LAURA MCGHEE",,,,,6,5,0,0,5,0,5,0,,,,"4A4B4D4E",,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",,
"20110209192101P030007258097001","2007-03-01","2008-02-29","2",,,,,,,,,"1",,,"SPACE CRAFTERS, INC.401(K) PLAN","001","1995-03-01","SPACE CRAFTERS, INC.",,,"31 APPLES CHURCH ROAD",,"THURMONT","MD","21788",,,,,,,"31 APPLES CHURCH ROAD",,"THURMONT","MD","21788",,,,,,,"521916261","3016631134","236110","SPACE CRAFTERS, INC.",,"31 APPLES CHURCH ROAD",,"THURMONT","MD","21788",,,,,,,"521916261","3016631134",,,,"2011-02-07T11:09:07-0600","WILLIAM EYLER","2011-02-07T11:09:07-0600","WILLIAM EYLER",,,10,7,0,5,12,0,12,12,0,,"2E2F2G2J2K",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110212101055P030008659313002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"CONTROL LINE EQUIPMENT, INC. PROFIT SHARING PLAN","003","1984-01-01","CONTROL LINE EQUIPMENT, INC.",,,"14750 INDUSTRIAL PARKWAY",,"CLEVELAND","OH","44135",,,,,,,,,,,,,,,,,,"251368949","2164337766","423990","CONTROL LINE EQUIPMENT, INC.",,"14750 INDUSTRIAL PARKWAY",,"CLEVELAND","OH","44135",,,,,,,"251368949","2164337766",,,,"2011-02-09T05:48:58-0600","MICHAEL ROTELLA",,,,,10,10,,,10,,10,10,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-12","Filed with authorized/valid electronic signature",,
"20110209115703P040001110178001","2010-01-01","2010-08-25","2",,"0","0","1","1","0","0","0","0","0",,"BETSY ROSS REHABILITATION CENTER, INC. 401(K) PROFIT SHARING PLAN","001","1998-06-01","BETSY ROSS REHABILITATION CTR., INC",,,"1 ELSIE STREET",,"ROME","NY","13440",,,,,,,"1 ELSIE STREET",,"ROME","NY","13440",,,,,,,"161549991","3153392200","621498","BETSY ROSS REHABILITATION CTR., INC",,"1 ELSIE STREET",,"ROME","NY","13440",,,,,,,"161549991","3153392200",,,,"2011-02-09T11:39:25-0600","DONALD ALTMAN",,,,,147,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","1","1","1",,"FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",,
"20110127103434P030000205505001","2007-07-01","2008-06-30","2",,"0","0","0","0","0","0","0","1","0",,"TIB FINANCIAL CORP. EMPLOYEE BENEFITS PLAN","501","1974-07-01","TIB FINANCIAL CORP.",,,"9465 TAMIAMI TRAIL N",,"NAPLES","FL","34108",,,,,,,,,,,,,,,,,,"650655973","2394495856","522110","TIB FINANCIAL CORP.",,"9465 TAMIAMI TRAIL N",,"NAPLES","FL","34108",,,,,,,"650655973","2394495856",,,,"2011-01-27T10:33:33-0600","BARBARA CUEVAS",,,,,323,324,0,0,324,,,,,,,"4A4B4D4F4H4Q","1","0","0","1","1","0","0","1","0","0","0","0","0","1","5","0","0","0","FILING_RECEIVED","2011-01-27","Filed with authorized/valid electronic signature",,
"20110201211744P030003046209001","2010-01-01","2010-07-31","2",,"0","0","1","1","0","0","0","0","0",,"CONNECTION STRATEGIES ENTERPRISES, INC. 401(K) PSP","001","1988-01-01","CONNECTION STRATEGIES",,,"N28 W23050 ROUNDY DRIVE",,"PEWAUKEE","WI","53072",,,,,,,,,,,,,,,,,,"391342589","2626506500","541511","CONNECTION STRATEGIES",,"N28 W23050 ROUNDY DRIVE",,"PEWAUKEE","WI","53072",,,,,,,"391342589","2626506500",,,,"2011-02-01T21:14:37-0600","TODD LUTZ",,,,,39,0,0,0,0,0,0,0,0,,"2E2G2J2K2T3D",,"1","0","1","0","1","0","0","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-01","Filed with authorized/valid electronic signature",,
"20110211094937P040008527649001","2008-10-01","2009-09-30","2",,"0","1","0","0","0","0","0","0","0",,"R. E. DYE MANUFACTURING CORPORATION EMPLOYEE STOCK OWNERSHIP PLAN","001","1965-07-20","R. E. DYE MANUFACTURING CORPORATION",,,"207 WEST WILLIAMS ST.",,"BRECKENRIDGE","TX","764244441",,,,,,,,,,,,,,,,,,"750970865","2545592268","336410","R. E. DYE MANUFACTURING CORPORATION",,"207 WEST WILLIAMS ST.",,"BRECKENRIDGE","TX","764244441",,,,,,,"750970865","2545592268",,,,"2011-02-11T09:49:29-0600","JIMMY D. DYE",,,,,72,56,0,14,70,0,70,55,3,,"2E2O",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-11","Filed with authorized/valid electronic signature",,
"20110214110816P030001436882001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","1","0",,"PLATTNER ORTHOPEDIC CO INC PROFIT SHARING PLAN","001","1973-12-01","PLATTNER ORTHOPEDIC CO INC",,,"311 W ROMEO B GARRETT AVE",,"PEORIA","IL","616052504",,,,,,,,,,,,,,,,,,"370727577","3096821382","339110","PLATTNER ORTHOPEDIC CO INC",,"311 W ROMEO B GARRETT AVE",,"PEORIA","IL","616052504",,,,,,,"370727577","3096821382",,,,"2011-02-14T11:08:07-0600","CRAIG PLATTNER",,,,,24,22,0,0,22,0,22,22,1,,"2A2E2G2J",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-14","Filed with authorized/valid electronic signature",,
"20110209221433P040034949712001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MICHAEL G. DAB, D.D.S. PROFIT SHARING PLAN","001","1987-01-01","MICHAEL G. DAB, D.D.S.",,,"750 LAS GALLINAS AVENUE, SUITE 111",,"SAN RAFAEL","CA","949033431",,,,,,,,,,,,,,,,,,"680000120","4154725211","621210","ADMINISTRATIVE COMMITTEE",,"750 LAS GALLINAS AVENUE, SUITE 111",,"SAN RAFAEL","CA","949033431",,,,,,,"680214629","4154725211",,,,"2011-02-09T22:07:17-0600","MICHAEL DAB",,,,,4,5,0,0,5,0,5,5,0,,"2A2E2J3B3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",,
"20110127155058P040000054946001","2009-08-01","2010-07-31","2",,,,,,,,,,,,"LTD INSURANCE PLAN FOR THE EMPLOYEES OF BOSCOV'S, INC.","503","1965-01-01","BOSCOVS, INC.",,,"4500 PERKIOMEN AVENUE",,"READING","PA","19606",,,,,,,,,,,,,,,,,,"231571589","6107792000","452110","BOSCOVS, INC.",,"4500 PERKIOMEN AVENUE",,"READING","PA","19606",,,,,,,"231571589","6107792000",,"263753691",,"2011-01-27T03:50:31-0600","TONI MILLER",,,,,177,173,,,173,,173,,,,,"4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-01-27","Filed with authorized/valid electronic signature",,
"20110204143008P030004514081002","2010-01-01","2010-12-31","2",,,,,,,,,,,,"HOLMES MEDICAL SERVICES PLC EMPLOYEES 401(K) PLAN","001","2009-01-01","DEREK HOLMES, D.O.","HOLMES MEDICAL SERVICES, PLC",,"1908 N. 14TH ST",,"PONCA CITY","OK","74601",,,,,,,,,,,,,,,,,,"271560425","5807671777","621111","DEREK HOLMES, D.O.",,"1908 N. 14TH ST",,"PONCA CITY","OK","74601",,,,,,,"271560425","5807671777",,,,"2011-02-04T14:20:12-0600","DEREK HOLMES","2011-02-04T14:20:24-0600","DEREK HOLMES",,,4,3,1,0,4,0,4,4,,,"2J3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-04","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110212140233P040009173377001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"THORNTON & SONS JEWELERS 401(K) SAVINGS PLAN","001","2005-01-01","THORNTON & SONS JEWELERS, INC.",,,"1100 PITT SCHOOL ROAD",,"DIXON","CA","95620",,,,,,,,,,,,,,,,,,"942861909","7076782996","448310","THORNTON & SONS JEWELERS, INC.",,"1100 PITT SCHOOL ROAD",,"DIXON","CA","95620",,,,,,,"942861909","7076782996",,,,"2011-02-12T14:01:20-0600","GERALD W. THORNTON",,,,,18,10,0,5,15,0,15,15,0,,"2A2E2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-12","Filed with authorized/valid electronic signature",,
"20110127104058P030000887920001","2008-07-01","2009-06-30","2",,"0","0","0","0","0","0","0","1","0",,"LOWELL WHITEMAN PRIMARY SCHOOL DEFINED CONTRIBUTION PLAN","002","2005-07-01","LOWELL WHITEMAN PRIMARY SCHOOL INC.",,,"PO BOX 770723",,"STEAMBOAT SPRINGS","CO","80477",,,,,,,"818 OAK STREET",,"STEAMBOAT SPRINGS","CO","80477",,,,,,,"841240640","9708798081","611000","LOWELL WHITEMAN PRIMARY SCHOOL INC.",,"PO BOX 770723",,"STEAMBOAT SPRINGS","CO","80477",,,,,,,"841240640","9708798081",,,,"2011-01-26T17:08:42-0600","NANCY SPILLANE",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-01-27","Filed with authorized/valid electronic signature",,
"20110127125340P040001141232001","2010-01-01","2010-05-31","2",,"0","0","1","1","0","0","0","0","0",,"NANCY BALLES A PROFESSIONAL CORP 401(K) PROFIT SHARING PLAN & TRT","002","2007-01-01","NANCY BALLES A PROFESSIONAL CORP",,,"710 S. BROADWAY","SUITE 204","WALNUT CREEK","CA","94596",,,,,,,,,,,,,,,,,,"680261705","9253242806","541110","NANCY BALLES A PROFESSIONAL CORP",,"710 S. BROADWAY","SUITE 204","WALNUT CREEK","CA","94596",,,,,,,"680261705","9253242806",,,,"2011-01-27T12:53:31-0600","MK HARTLEY",,,,,3,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2S2T3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","1","0","FILING_RECEIVED","2011-01-27","Filed with authorized/valid electronic signature",,
"20110201122530P040000459042001","2010-01-01","2010-12-31","3",,"0","1","0","0","0","0","0","0","0",,"ROBERT M. COPLEN P.A. 401K PLAN","001","2004-01-01","ROBERT M. COPLEN P.A.",,"ROBERT M. COPLEN","10225 ULMERTON RD","SUITE 5A","LARGO","FL","337713538",,,,,,,,,,,,,,,,,,"260005733","7275884550","541110","ROBERT M. COPLEN P.A.","ROBERT M. COPLEN","10225 ULMERTON RD","SUITE 5A","LARGO","FL","337713538",,,,,,,"260005733","7275884550",,,,"2011-02-01T12:24:40-0600","ROBERT M. COPLEN",,,,,4,7,0,0,7,0,7,3,0,,"2E2F2G2J2K2R3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-01","Filed with authorized/valid electronic signature",,
"20110127104341P040000202417001","2005-07-01","2006-06-30","2",,"0","1","0","0","0","0","0","0","0",,"TAX DEFERRED ANNUITY PLAN FOR EMPLOYEES OF LOWELL WHITEMAN PRIMARY SCHOOL","001","1994-07-15","LOWELL WHITEMAN PRIMARY SCHOOL INC.",,,"PO BOX 770723",,"STEAMBOAT SPRINGS","CO","80477",,,,,,,"818 OAK STREET",,"STEAMBOAT SPRINGS","CO","80477",,,,,,,"841240640","9708798081","611000","LOWELL WHITEMAN PRIMARY SCHOOL INC.",,"PO BOX 770723",,"STEAMBOAT SPRINGS","CO","80477",,,,,,,"841240640","9708798081",,,,"2011-01-26T17:04:01-0600","NANCY SPILLANE",,,,,,,,,,,,,,,"2L",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-01-27","Filed with authorized/valid electronic signature",,
"20110201103418P030013747728001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"NORSON SERVICES, LLC 401K PLAN","002","2009-09-01","NORSON SERVICES, LLC",,,"8030 LEGHORN STREET","SUITE C1","HOUSTON","TX","77040",,,,,,,,,,,,,,,,,,"020557312","7136903152","541330","NORSON SERVICES, LLC",,"8030 LEGHORN STREET","SUITE C1","HOUSTON","TX","77040",,,,,,,"020557312","7136903152",,,,"2011-02-01T10:33:44-0600","STEWART EMMERSON",,,,,4,0,0,0,0,0,0,0,0,,"2E2F2G2J2K2T3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-01","Filed with authorized/valid electronic signature",,
"20110213140451P030002986359001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"E.A. MANGIERI, M.D., P.C. PROFIT SHARING PLAN","001","1987-01-01","E.A. MANGIERI, M.D., P.C. ANESTHESIOLOGY & PAIN MANAGEMENT","E.A. MANGIERI, M.D., P.C. ANESTHESIOLOGY & PAIN MANAGEMENT","EUGENE A. MANGIERI, MD","2510 HOSPITAL DRIVE",,"NORTHPORT","AL","35476",,,,,,,"2510 HOSPITAL DRIVE",,"NORTHPORT","AL","35476",,,,,,,"630926409","2053399000","621111","E.A. MANGIERI, M.D., P.C. ANESTHESIOLOGY & PAIN MANAGEMENT","EUGENE A. MANGIERI, MD","2510 HOSPITAL DRIVE",,"NORTHPORT","AL","35476",,,,,,,"630926409","2053399000",,,,"2011-02-13T13:49:46-0600","EUGENE MANGIERI",,,,,5,5,,,5,,5,5,0,,"2E2J",,,,"1",,,,"1",,"0",,,,"1",,,,,,"FILING_RECEIVED","2011-02-13","Filed with authorized/valid electronic signature",,
"20110214125845P030001444450001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BOX 1, INC. 401(K) PLAN","001","2008-01-01","BOX 1, INC.",,,"3352 BLAKE DRIVE","P.O. BOX 882","DALTON","GA","30722",,,,,,,,,,,,,,,,,,"582581422","7062172691","322100","BOX 1, INC.",,"3352 BLAKE DRIVE","P.O. BOX 882","DALTON","GA","30722",,,,,,,"582581422","7062172691",,,,"2011-02-14T10:17:06-0600","P. ANTONY ELROD","2011-02-14T10:17:06-0600","P. ANTONY ELROD",,,29,26,,2,28,,28,10,0,,"2E2G2J2K3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-14","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110209102349P030007042049001","2006-07-01","2007-06-30","2",,"0","0","0","0","0","0","0","1","0",,"REHAB PRO HEALTH PLAN","501","2001-01-01","REHAB PRO THERAPY",,,"17521 US HIGHWAY 69S",,"TYLER","TX","75703",,,,,,,,,,,,,,,,,,"752962410","9038393600","621340","SAME",,"17521 US HIGHWAY 69S",,"TYLER","TX","75703",,,,,,,"752962410","9038393600",,,,"2011-02-09T10:19:27-0600","TRACY GUNTER",,,,,111,128,0,0,128,,,,,,,"4A4B4D4E4F4H4Q","1","0","0","0","1","0","0","0","0","0","0","0","0","1","2","0","0","0","FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",,
"20110203093100P040018467488001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"LAW OFFICES OF EDWARD J. BILINKAS, INC. 401(K) SAVINGS PLAN","001","2001-05-01","LAW OFFICE OF EDWARD J. BILINKAS",,,"415 RT 10 EAST",,"RANDOLPH","NJ","07869",,,,,,,,,,,,,,,,,,"223750099","9733611212","541110","LAW OFFICE OF EDWARD J. BILINKAS",,"415 RT 10 EAST",,"RANDOLPH","NJ","07869",,,,,,,"223750099","9733611212",,,,"2011-02-03T09:30:40-0600","DOLORES BILINKAS",,,,,4,3,0,1,4,0,4,4,0,,"2E2F2G2J2K3E",,"1",,"1",,"1",,"1",,,,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-02-03","Filed with authorized/valid electronic signature",,
"20110201104608P030013769744001","2010-01-01","2010-12-31","2",,"0","1","0","0","0","0","0","0","0",,"ALLTEMATED, INC. EMPLOYEES' PROFIT SHARING PLAN","001","1995-01-01","ALLTEMATED, INC.",,,"3196 N KENNICOTT AVENUE",,"ARLINGTON HEIGHTS","IL","60004",,,,,,,,,,,,,,,,,,"363933245","8473945800","339900","ALLTEMATED, INC.",,"3196 N KENNICOTT AVENUE",,"ARLINGTON HEIGHTS","IL","60004",,,,,,,"363933245","8473945800",,,,"2011-02-01T10:45:47-0600","RANDALL TEMPLE",,,,,33,11,0,20,31,0,31,31,0,,"2E2J2K2F2G3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-01","Filed with authorized/valid electronic signature",,
"20110201073006P030000886583001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"S. REED WARREN, PA PROFIT SHARING PLAN","001","1993-01-01","S. REED WARREN, PA",,,"P.O. BOX 10507",,"GOLDSBORO","NC","275320507",,,,,,,,,,,,,,,,,,"561801560","9197783877","541110","S. REED WARREN, PA",,"P.O. BOX 10507",,"GOLDSBORO","NC","275320507",,,,,,,"561801560","9197783877",,"561801560","001","2011-01-31T20:26:18-0600","S. REED WARREN","2011-01-31T20:26:22-0600","S. REED WARREN",,,2,2,0,0,2,0,2,2,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-01","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110209144506P040007495169001","2010-01-01","2010-12-31","2",,,,,,,,,,,,"KPS GROUP, INC. PROFIT SHARING RETIREMENT PLAN","001","1982-10-01","KPS GROUP, INC.",,,"2101 FIRST AVENUE NORTH",,"BIRMINGHAM","AL","35203",,,,,,,,,,,,,,,,,,"630756617","2052510125","541310","KPS GROUP, INC.",,"2101 FIRST AVENUE NORTH",,"BIRMINGHAM","AL","35203",,,,,,,"630756617","2052510125",,,,"2011-02-09T14:32:50-0600","MIKE LACKEY",,,,,40,43,0,5,48,0,48,48,1,,"2E2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",,
"20110203130553P030019165440001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"PHILLIPS ACCOUNTANCY CORPORATION 401(K) PROFIT SHARING PLAN","001","1997-01-01","PHILLIPS ACCOUNTANCY CORPORATION",,,"1851 EAST FIRST STREET","SUITE 835","SANTA ANA","CA","92705",,,,,,,,,,,,,,,,,,"330616134","7146672311","541211","PHILLIPS ACCOUNTANCY CORPORATION",,"1851 EAST FIRST STREET","SUITE 835","SANTA ANA","CA","92705",,,,,,,"330616134","7146672311",,,,"2011-02-03T13:05:46-0600","ROBERT PHILLIPS","2011-02-03T13:05:46-0600","ROBERT PHILLIPS",,,8,7,0,1,8,0,8,7,0,,"2E2F2G2J2K",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-03","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110203173004P040004247905001","2008-01-01","2008-12-31","3",,"0","1","0","0","0","1","0","0","0",,"AQUATECH SOCIETY RETIREMENT PLAN","001","2004-01-01","AQUATECH CORPORATION",,,"2900 BRISTOL STREET","BUILDING B, THIRD FLOOR","COSTA MESA","CA","92626",,,,,,,"2900 BRISTOL STREET","BUILDING B, THIRD FLOOR","COSTA MESA","CA","92626",,,,,,,"860196677","7149292660","541990","AQUATECH CORPORATION",,"2900 BRISTOL STREET","BUILDING B, THIRD FLOOR","COSTA MESA","CA","92626",,,,,,,"860196677","7149292660",,,,"2011-02-03T17:17:52-0600","JEFFREY FAUSETT",,,,,471,380,0,77,457,0,457,310,2,,"2E2F2G2J2K",,"1",,"1",,"1",,"1",,"1",,,"1",,"1","3",,"1",,"FILING_RECEIVED","2011-02-03","Filed with authorized/valid electronic signature",,
"20110214144112P030009887041001","2010-01-01","2010-12-31","2",,"0","0","1","0","0","0","0","0","0",,"WESKEM, LLC 401(K) PLAN","001","2000-01-01","WESKEM, LLC C/O WESTON SOLUTIONS",,,"1400 WESTON WAY",,"WEST CHESTER","PA","19380",,,,,,,,,,,,,,,,,,"582495329","6107013918","562000","WESKEM, LLC C/O WESTON SOLUTIONS",,"1400 WESTON WAY",,"WEST CHESTER","PA","19380",,,,,,,"582495329","6107013918",,,,"2011-02-14T14:41:00-0600","ANDREW LEISTER",,,,,5,0,0,0,0,0,0,0,0,,"3D2J2G2E2K2F2T",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-14","Filed with authorized/valid electronic signature",,
"20110201085627P040002902273001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BANKS MANUFACTURING CO. 401K RETIREMENT PLAN","001","1999-01-01","BANKS MANUFACTURING CO.",,,"40259 BANKS RD",,"GRAFTON","OH","440449791",,,,,,,,,,,,,,,,,,"340805079","4404588661","339900","BANKS MANUFACTURING CO.",,"40259 BANKS RD",,"GRAFTON","OH","440449791",,,,,,,"340805079","4404588661",,,,"2011-02-01T08:50:58-0600","TIMOTHY BOYD",,,,,7,4,0,2,6,0,6,6,0,,"2E2F2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-01","Filed with authorized/valid electronic signature",,
"20110209084835P040007340833001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AT-HOME SENIOR SERVICES, INC. 401(K) PLAN","001","2008-09-01","AT-HOME SENIOR SERVICES, INC.",,,"1648 DOVES VIEW CIRCLE",,"AUBURNDALE","FL","33823",,,,,,,,,,,,,,,,,,"371568483","8632681220","621610","AT-HOME SENIOR SERVICES, INC",,"1648 DOVES VIEW CIRCLE",,"AUBURNDALE","FL","33823",,,,,,,"371568483","8632681220",,,,"2011-02-09T08:42:54-0600","JAMES CLOUSE",,,,,2,4,0,0,4,0,4,2,0,,"2E2J2K2F2G",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-09","Filed with authorized/valid electronic signature",,
"20110207162734P030006131249001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","1","0",,"SNN INVESTMENTS, INC PROFIT SHARING PLAN","001","2006-02-07","SNN INVESTMENTS, INC",,,"5709 BRUSHY CREEK TRAIL",,"DALLAS","TX","75252",,,,,,,"5709 BRUSHY CREEK TRAIL",,"DALLAS","TX","75252",,,,,,,"204294118","9722483400","551112","SNN INVESTMENTS, INC",,"5709 BRUSHY CREEK TRAIL",,"DALLAS","TX","75252",,,,,,,"204294118","9722483400",,,,"2011-02-07T16:26:11-0600","STEVE NEPOMNICK",,,,,1,1,,,1,,1,1,,,"2E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-07","Filed with authorized/valid electronic signature",,
"20110211134122P040001285874001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","1","0","0","0",,"MICHAEL FROST FINE ART LLC PENSION PLAN","001","2005-01-01","MICHAEL FROST FINE ART LLC",,,"1175 YORK AVENUE, APT. 17J",,"NEW YORK","NY","10065",,,,,,,,,,,,,,,,,,"202181724","2124213160","453920","MICHAEL FROST FINE ART LLC",,"1175 YORK AVENUE, APT. 17J",,"NEW YORK","NY","10065",,,,,,,"202181724","2124213160",,,,"2011-02-11T13:40:27-0600","MICHAEL FROST",,,,,1,1,0,0,1,0,1,,0,,"1A3E",,"0","0","1","0","0","0","1","0","1","0","1","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-11","Filed with authorized/valid electronic signature",,
"20110205084722P030000720146001","2007-01-01","2007-12-31","2",,"0","0","1","0","0","0","0","1","0",,"CROW PEAK ANESTHESIA, PC PROFIT SHARING PLAN","002","1999-08-01","CROW PEAK ANESTHESIA, PC",,,"P.O. BOX 216",,"SPEARFISH","SD","577830216",,,,,,,,,,,,,,,,,,"460452434","6056441485","621399","CROW PEAK ANESTHESIA, PC",,"P.O. BOX 216",,"SPEARFISH","SD","577830216",,,,,,,"460452434","6056441485",,,,"2011-02-05T06:55:34-0600","REX VIGOREN",,,,,3,0,0,0,0,0,0,0,0,,"2E2F2G2R3E",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-02-05","Filed with authorized/valid electronic signature",,
"20110128135951P030000122546001","2007-01-01","2007-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COLLINS INK 401(K) PROFIT SHARING PLAN","001","2003-03-01","COLLINS INK CORPORATION",,,"1201 EDISON DRIVE",,"CINCINNATI","OH","45216",,,,,,,"1201 EDISON DRIVE",,"CINCINNATI","OH","45216",,,,,,,"311437766","5139489000","323100","COLLINS INK CORPORATION",,"1201 EDISON DRIVE",,"CINCINNATI","OH","45216",,,,,,,"311437766","5139489000",,,,"2011-01-28T13:59:03-0600","BOB HENDRICKS",,,,,52,52,0,11,63,0,63,48,7,,"2E2F2G2J3E3H",,"1",,,,"1",,,,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-01-28","Filed with authorized/valid electronic signature",,
"20110208160106P030000976674001","2006-01-01","2006-04-20","2",,"0","0","1","1","0","0","0","1","0",,"PROCACCI COMMERCIAL REALTY INC 401K","001","2001-01-01","PROCACCI COMMERCIAL REALTY, INC.",,,"925 S FEDERAL HWY STE 400",,"BOCA RATON","FL","334326145",,,,,,,,,,,,,,,,,,"650122542","5614161400","236200","PROCACCI COMMERCIAL REALTY, INC.",,"925 S FEDERAL HWY STE 400",,"BOCA RATON","FL","334326145",,,,,,,"650122542","5614161400",,,,"2011-02-08T15:53:16-0600","PHILIP J. PROCACCI",,,,,9,0,0,0,0,0,0,0,0,,"2E2F2G2J2K3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",,
"20110211165111P040001299346001","2008-01-01","2008-12-31","2",,"1","0","0","0","0","0","0","1","0",,"BEST CARE INC 401(K) PROFIT SHARING PLAN & TRUST","002","2006-01-01","BEST CARE INC",,,"888 WEST ITHACA AVENUE",,"ENGLEWOOD","CO","80110",,,,,,,"888 WEST ITHACA AVENUE",,"ENGLEWOOD","CO","80110",,,,,,,"841321302","3037652515","621610","BEST CARE INC",,"888 WEST ITHACA AVENUE",,"ENGLEWOOD","CO","80110",,,,,,,"841321302","3037652515",,,,"2011-02-11T16:50:50-0600","ANNA ZARLENGO",,,,,134,91,,10,101,,101,43,,,"2E2G2J3E",,,,"1",,,,"1",,"1",,,"1",,,,,,,"FILING_RECEIVED","2011-02-11","Filed with authorized/valid electronic signature",,
"20110129094051P040001249473001","2010-01-01","2010-10-01","2",,"0","0","1","1","0","0","0","0","0",,"MAYVIEW CONVALESCENT HOME 401(K) PROFIT SHARING PLAN","001","1990-04-26","MAYVIEW CONVALESCENT HOME, INC.",,,"513 E WHITAKER MILL RD.",,"RALEIGH","NC","27608",,,,,,,,,,,,,,,,,,"560705968","9198282348","623000","MAYVIEW CONVALESCENT HOME, INC.",,"513 E WHITAKER MILL RD.",,"RALEIGH","NC","27608",,,,,,,"560705968","9198282348",,,,"2011-01-29T09:40:40-0600","TRAVIS H.TOMLINSON, JR.","2011-01-29T09:40:40-0600","TRAVIS H.TOMLINSON, JR.",,,190,0,0,0,0,0,0,0,0,,"2E2F2G2J2T3D3H",,"0","0","1","0","0","0","1","0","1","0","0","1","0","0",,"1","0","0","FILING_RECEIVED","2011-01-29","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110129105414P030006090080001","2010-01-01","2010-12-31","2",,"0","1","1","0","0","0","0","0","0",,"CARLOTTA R. EVANS, MD PROFIT SHARING/401(K) PLAN","001","1992-09-01","CARLOTTA EVANS, MD","CARLOTTA R. EVANS, MD",,"1020 BROAD STREET",,"SUMMERSVILLE","WV","26651",,,,,,,"1020 BROAD STREET",,"SUMMERSVILLE","WV","26651",,,,,,,"550717035","3048722450","621111","CARLOTTA EVANS, MD",,"1020 BROAD STREET",,"SUMMERSVILLE","WV","26651",,,,,,,"550717035","3048722450",,,,"2011-01-29T10:53:24-0600","CARLOTTA EVANS",,,,,3,0,0,0,0,0,0,0,0,,"2E3B2J",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-01-29","Filed with authorized/valid electronic signature",,
"20110210092817P040036117056001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"SEMMEL EXCAVATING, INC. MONEY PURCHASE PENSION TRUST FOR PREVAILING","003","1999-03-01","SEMMEL EXCAVATING, INC.",,,"5000 SPRINGSIDE COURT",,"ALLENTOWN","PA","18104",,,,,,,,,,,,,,,,,,"231684574","6104819300","238900","SEMMEL EXCAVATING, INC.",,"5000 SPRINGSIDE COURT",,"ALLENTOWN","PA","18104",,,,,,,"231684574","6104819300",,,,"2011-02-10T08:55:35-0600","KEITH MALCOLM",,,,,23,17,0,3,20,0,20,20,0,,"2C2F2G3D",,"1",,"1",,,,"1",,"1",,,,"1","1","1",,"1",,"FILING_RECEIVED","2011-02-10","Filed with authorized/valid electronic signature",,
"20110207124530P040000945122001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"FIRST STATE BANK OF SIOUX RAPIDS PROFIT SHARING PLAN AND TRUST","001","1966-01-01","FIRST STATE BANK",,,"123 MAIN STREET",,"SIOUX RAPIDS","IA","50585",,,,,,,,,,,,,,,,,,"420253630","7122832593","522110","FIRST STATE BANK",,"123 MAIN STREET",,"SIOUX RAPIDS","IA","50585",,,,,,,"420253630","7122832593",,,,"2011-02-07T12:45:24-0600","ANN LEE",,,,,9,8,0,1,9,0,9,9,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-07","Filed with authorized/valid electronic signature",,
"20110208101816P040006781857001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"AMERICAN INSTITUTE OF FOOD DISTRIBUTION 401K PLAN","002","1998-01-01","AMERICAN INSTITUTE OF FOOD DISTRIBUTION",,,"10 MOUNTAINVIEW ROAD","SUITE S125","UPPER SADDLE RIVER","NJ","07458",,,,,,,,,,,,,,,,,,"222310010","2017915570","519100","AMERICAN INSTITUTE OF FOOD DISTRIBUTION",,"10 MOUNTAINVIEW ROAD","SUITE S125","UPPER SADDLE RIVER","NJ","07458",,,,,,,"222310010","2017915570",,,,"2011-02-08T10:13:20-0600","BRIAN TODD",,,,,18,13,0,6,19,0,19,14,1,,"2A2E2F2G2J2K2T3D",,"1","0","1","0","1","0","1","0","1","0","0","0","1","1","1","0","1","0","FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",,
"20110128083303P040000117954001","2006-01-01","2006-12-31","2",,"0","0","0","0","0","0","0","1","0",,"MORAVIAN COLLEGE LIFE INSURANCE PLAN","501","1969-09-01","MORAVIAN COLLEGE",,,"1200 MAIN STREET",,"BETHLEHEM","PA","18018",,,,,,,,,,,,,,,,,,"240795460","6108611527","611000","MORAVIAN COLLEGE",,"1200 MAIN STREET",,"BETHLEHEM","PA","18018",,,,,,,"240795460","6108611527",,,,"2011-01-28T08:31:54-0600","JON B. CONRAD",,,,,339,348,0,0,348,,,,,,,"4B","1","0","0","0","1","0","0","0","0","0","0","0","0","1","1","0","0","0","FILING_RECEIVED","2011-01-28","Filed with authorized/valid electronic signature",,
"20110128101949P030000235431001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"VIDALIA FEDERAL SAVINGS BANK MONEY PURCHASE PENSION PLAN AND TRUST","002","1989-01-01","VIDALIA FEDERAL SAVINGS BANK",,,"300 JACKSON STREET",,"VIDALIA","GA","304750666",,,,,,,,,,,,,,,,,,"580473062","9125374622","522120","VIDALIA FEDERAL SAVINGS BANK",,"PO BOX 666",,"VIDALIA","GA","304750666",,,,,,,"580473062","9125374622",,,,"2011-01-28T10:16:06-0600","HAL CHESSER",,,,,35,33,0,1,34,0,34,34,0,,"2C3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-28","Filed with authorized/valid electronic signature",,
"20110129155729P030006608336001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MONUMENT CAPITAL MANAGEMENT, INC. PROFIT SHARING PLAN & TRUST","001","1999-01-01","MONUMENT CAPITAL MANAGEMENT, INC.",,,"3400 E. SPEEDWAY BLVD.","SUITE 118-188","TUCSON","AZ","85716",,,,,,,"3400 E. SPEEDWAY BLVD.","SUITE 118-188","TUCSON","AZ","85716",,,,,,,"841429764","5203703709","523900","MONUMENT CAPITAL MANAGEMENT, INC.",,"3400 E. SPEEDWAY BLVD.","SUITE 118-188","TUCSON","AZ","85716",,,,,,,"841429764","5203703709",,,,"2011-01-29T15:55:59-0600","PAUL SORENSEN",,,,,2,2,,,2,,2,2,,,"2A2E3D",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-01-29","Filed with authorized/valid electronic signature",,
"20110207183614P030006173345001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"DAVID HESKIAOFF, M.D., INC. & ASSOC. ERS. PROFIT SHARING PLAN","002","2000-01-01","DAVID HESKIAOFF, M.D., INC.",,,"5170 SEPULVEDA BLVD., SUITE 100",,"SHERMAN OAKS","CA","91403",,,,,,,,,,,,,,,,,,"953920544","8187843878","621111","TRUSTEE,DAVID HESKIAOFF, MD, INC. & ASSOC. ERS. RETIREMENT TRUST",,"5170 SEPULVEDA BLVD., SUITE 100",,"SHERMAN OAKS","CA","91403",,,,,,,"957111606","3105529608",,,,"2011-02-07T06:34:57-0600","DAVID HESKIAOFF, TRUSTEE","2011-02-07T06:36:13-0600","DAVID HESKIAOFF, PRESIDENT",,,18,0,0,0,0,0,0,0,0,,"2E3D3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-07","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110208075845P040030932400001","2003-03-01","2004-02-29","2",,"0","0","0","0","0","0","0","1","0",,"WAINWRIGHT BANK & TRUST COMPANY EMPLOYEE BENEFITS PLAN","501","2003-03-01","WAINWRIGHT BANK & TRUST COMPANY",,,"63 FRANKLIN STREET",,"BOSTON","MA","02110",,,,,,,,,,,,,,,,,,"042962636","6174784000","522110","WAINWRIGHT BANK & TRUST COMPANY",,"63 FRANKLIN STREET",,"BOSTON","MA","02110",,,,,,,"042962636","6174784000",,,,"2011-02-08T07:58:31-0600","NANCY HUNTINGTON STAGER","2011-02-08T07:58:31-0600","NANCY HUNTINGTON STAGER",,,147,151,,,151,,0,,,,,"4B","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110129171537P040001442385001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RICHARD D. ALSTON, DDS, MSD, PS 401K PLAN","003","2007-01-01","RICHARD D. ALSTON, DDS, MSD, PA",,,"120 CLINTON COURT",,"ROCKY MOUNT","NC","278042403",,,,,,,,,,,,,,,,,,"200577978","2524511010","621210","RICHARD D. ALSTON, DDS, MSD, PA",,"120 CLINTON COURT",,"ROCKY MOUNT","NC","278042403",,,,,,,"200577978","2524511010",,,,"2011-01-29T17:10:49-0600","RICHARD D. ALSTON",,,,,3,5,0,0,5,0,5,5,0,,"2A2E2J2K",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-01-29","Filed with authorized/valid electronic signature",,
"20110207092739P030028949136001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"MILLENNIUM HOME HEALTH CARE INC. 401K PLAN","002","2002-01-01","MILLENNIUM HOME HEALTH CARE INC.",,,"18600 W. 10 MILE ROAD, SUITE 104",,"SOUTHFIELD","MI","48075",,,,,,,,,,,,,,,,,,"383507210","2485699303","621610","MILLENNIUM HOME HEALTH CARE",,"18600 W. 10 MILE, SUITE 104",,"SOUTHFIELD","MI","48075",,,,,,,"383507210","2485699303",,,,"2011-02-07T09:26:59-0600","FARID KAZI",,,,,20,18,0,0,18,0,18,18,,,"2E",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-07","Filed with authorized/valid electronic signature",,
"20110208131305P040031484240001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"RKA, LLC 401(K) RETIREMENT PLAN","001","2003-01-01","RKA, LLC",,,"225 BROADWAY",,"HAMMONTON","NJ","08037",,,,,,,,,,,,,,,,,,"010642338","6095610188","238220","RKA, LLC",,"225 BROADWAY",,"HAMMONTON","NJ","08037",,,,,,,"010642338","6095610188",,,,"2011-02-08T13:12:58-0600","RICHARD ADAMUCCI, JR.","2011-02-08T13:12:58-0600","RICHARD ADAMUCCI, JR.",,,24,20,1,4,25,0,25,25,0,,"2E2J2K",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110210124744P040008018913001","2006-01-01","2006-12-31","4","M","0","0","0","0","0","0","0","0","0",,"THE EASTERN COMPANY PENSION PLAN TRUST","010",,"THE EASTERN COMPANY PENSION PLAN TRUST",,,"P.O. BOX 460","112 BRIDGE STREET","NAUGATUCK","CT","06770",,,,,,,,,,,,,,,,,,"060330020","2037292255",,"THE EASTERN COMPANY PENSION PLAN TRUST",,"P.O. BOX 460","112 BRIDGE STREET","NAUGATUCK","CT","06770",,,,,,,"060330020","2037292255",,,,,,,,"2011-02-10T12:41:36-0600","GENE FINELLI",,,,,0,,,,,,,,"0","0","0","0","0","0","0","0","0","0","0","1","0","0","0","1","1","0","FILING_RECEIVED","2011-02-10",,"Filed with authorized/valid electronic signature",
"20110211152854P040002730823001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"BLACKBURN MOTOR COMPANY, INC. 401(K)PLAN","001","1966-11-01","BLACKBURN MOTOR COMPANY, INC.",,,"2195 N. FRONTAGE RD",,"VICKSBURG","MS","39180",,,,,,,,,,,,,,,,,,"640287962","6016362766","441110","BLACKBURN MOTOR COMPANY, INC.",,"2195 N. FRONTAGE RD",,"VICKSBURG","MS","39180",,,,,,,"640287962","6016362766",,,,"2011-02-11T15:28:01-0600","JAMES E. BLACKBURN, JR.",,,,,34,27,0,4,31,0,31,31,0,,"2E2G2J3D",,"0","0","1","0","0","0","1","0","1","0","0","0","1","0","0","0","0","0","FILING_RECEIVED","2011-02-11","Filed with authorized/valid electronic signature",,
"20110208080914P030002060999001","2007-03-01","2008-02-28","2",,"0","0","0","0","0","0","0","1","0",,"WAINWRIGHT BANK & TRUST COMPANY","501","2003-03-01","WAINWRIGHT BANK & TRUST COMPANY",,,"63 FRANKLIN STREET",,"BOSTON","MA","02110",,,,,,,,,,,,,,,,,,"042962636","6174784000","522110","WAINWRIGHT BANK & TRUST COMPANY",,"63 FRANKLIN STREET",,"BOSTON","MA","02110",,,,,,,"042962636","6174784000",,,,"2011-02-08T08:09:04-0600","NANCY HUNTINGTON STAGER","2011-02-08T08:09:04-0600","NANCY HUNTINGTON STAGER",,,162,140,,,140,,0,,,,,"4B4H","1",,,,"1",,,,,,,,,"1","1",,,,"FILING_RECEIVED","2011-02-08","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110207130559P030006041537001","2008-01-01","2008-12-31","2",,"0","0","1","1","0","0","0","1","0",,"MIRANDA Y MAS PROFIT SHARING PLAN","007","1999-01-01","MIRANDA Y MAS",,,"895 BROADWAY FL 5",,"NEW YORK","NY","10003",,,,,,,"895 BROADWAY FL 5",,"NEW YORK","NY","10003",,,,,,,"134008596","2125056633","541600","MIRANDA Y MAS",,"895 BROADWAY FL 5",,"NEW YORK","NY","10003",,,,,,,"134008596","2125056633",,,,"2011-02-07T13:05:25-0600","LUZ MIRANDA",,,,,2,0,0,0,0,0,0,0,0,,"2A2E3E3H",,,,"1",,,,"1",,"1",,,,"1",,,,,,"FILING_RECEIVED","2011-02-07","Filed with authorized/valid electronic signature",,
"20110202123152P040003532513001","2010-01-01","2010-12-31","2",,"0","0","0","0","0","0","0","0","0",,"COPENHAGEN-SACRAMENTO, INC. PROFIT SHARING PLAN","003","1989-06-01","COPENHAGEN-SACRAMENTO, INC.",,,"323 RICHARDSON DR.",,"MILL VALLEY","CA","94941",,,,,,,,,,,,,,,,,,"942425897","4157754000","442110","COPENHAGEN-SACRAMENTO, INC.",,"323 RICHARDSON DR.",,"MILL VALLEY","CA","94941",,,,,,,"942425897","4157754000",,,,"2011-02-02T12:31:39-0600","WEI GUO YU",,,,,5,4,0,0,4,0,4,4,0,,"2E3D",,"0","0","1","0","0","0","1","0","0","0","0","0","1","0",,"0","0","0","FILING_RECEIVED","2011-02-02","Filed with authorized/valid electronic signature",,
"20110203110043P030001236999001","2003-01-01","2003-12-31","2",,"0","0","0","0","0","0","0","1","0",,"THE DONAGHUE MEDICAL RESEARCH FOUNDATION RETIREMENT PLAN","001","1998-01-01","THE PATRICK AND CATHERINE WELDON DONAGHUE MEDICAL RESEARCH FOUNDATION",,,"18 N. MAIN STREET",,"WEST HARTFORD","CT","06107",,,,,,,"18 N. MAIN STREET",,"WEST HARTFORD","CT","06107",,,,,,,"066348275","8605219011","813000","THE PATRICK AND CATHERINE WELDON DONAGHUE MEDICAL RESEARCH FOUNDATION",,"18 N. MAIN STREET",,"WEST HARTFORD","CT","06107",,,,,,,"066348275","8605219011",,,,"2010-12-14T12:12:04-0600","LYNNE GARNER",,,,,,,,,,,,,,,"2F2G2K2M",,,,,,,,,,,,,,,,,,,,"FILING_RECEIVED","2011-02-03","Filed with authorized/valid electronic signature",,
"20110131114436P030000355410001","2010-01-01","2010-12-31","2",,,,"1",,,,,,,,"FULCRUM BUSINESS SOLUTIONS, INC. PROFIT SHARING PLAN AND TRUST","001","2000-01-01","FULCRUM BUSINESS SOLUTIONS, INC.",,,"16200 DEERHAVEN COURT",,"MORRISON","CO","80465",,,,,,,"16200 DEERHAVEN COURT",,"MORRISON","CO","80465",,,,,,,"841303339","3039727663","812990","FULCRUM BUSINESS SOLUTIONS, INC.",,"16200 DEERHAVEN COURT",,"MORRISON","CO","80465",,,,,,,"841303339","3039727663",,,,"2011-02-01T12:04:35-0600","EDWARD WEKESSER","2011-02-01T12:04:35-0600","EDWARD WEKESSER",,,1,0,0,0,0,0,0,0,0,,"2E3D",,,,"1",,,,"1",,,,,,"1",,,,,,"FILING_RECEIVED","2011-01-31","Filed with authorized/valid electronic signature",,"Filed with authorized/valid electronic signature"
"20110202143048P040003591249001","1992-01-01","1992-12-31","2",,"0","0","0","0","0","0","0","1","0",,"WILSON COLLEGE DEFINED CONTRIBUTION RETIREMENT PLAN","001","1937-10-09","WILSON COLLEGE",,,"1015 PHILADELPHIA AVENUE",,"CHAMBERSBURG","PA","17201",,,,,,,,,,,,,,,,,,"231352692","7172622017","611000","WILSON COLLEGE",,"1015 PHILADELPHIA AVENUE",,"CHAMBERSBURG","PA","17201",,,,,,,"231352692","7172622017",,,,"2011-02-02T14:30:40-0600","DONALD KIME",,,,,0,,,,0,,0,,,,"2G2L2M",,"1","0","
gitextract_uyirh5rw/
├── .gitattributes
├── .github/
│ ├── FUNDING.yml
│ ├── dependabot.yml
│ └── workflows/
│ ├── coverage-comment.yml
│ ├── dep_build_v2.yml
│ ├── dep_build_v3.yml
│ └── main.yml
├── .gitignore
├── .mvn/
│ └── wrapper/
│ ├── MavenWrapperDownloader.java
│ ├── maven-wrapper.jar
│ └── maven-wrapper.properties
├── .travis.yml
├── LICENSE
├── README.md
├── SECURITY.md
├── csv/
│ ├── .gitattributes
│ ├── README.md
│ ├── pom.xml
│ ├── samples/
│ │ └── f_5500_2010_first9999.csv
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ ├── module-info.java
│ │ │ └── tools/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── csv/
│ │ │ ├── CsvCharacterEscapes.java
│ │ │ ├── CsvFactory.java
│ │ │ ├── CsvFactoryBuilder.java
│ │ │ ├── CsvGenerator.java
│ │ │ ├── CsvMapper.java
│ │ │ ├── CsvParser.java
│ │ │ ├── CsvReadException.java
│ │ │ ├── CsvReadFeature.java
│ │ │ ├── CsvSchema.java
│ │ │ ├── CsvValueDecorator.java
│ │ │ ├── CsvValueDecorators.java
│ │ │ ├── CsvWriteException.java
│ │ │ ├── CsvWriteFeature.java
│ │ │ ├── PackageVersion.java.in
│ │ │ └── impl/
│ │ │ ├── BufferedValue.java
│ │ │ ├── CsvDecoder.java
│ │ │ ├── CsvEncoder.java
│ │ │ ├── CsvParserBootstrapper.java
│ │ │ ├── UTF8Reader.java
│ │ │ └── UTF8Writer.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ └── services/
│ │ ├── tools.jackson.core.TokenStreamFactory
│ │ └── tools.jackson.databind.ObjectMapper
│ └── test/
│ ├── java/
│ │ ├── module-info.java
│ │ ├── perf/
│ │ │ ├── BogusOutputStream.java
│ │ │ ├── F5500Entry.java
│ │ │ ├── F5500Reader.java
│ │ │ ├── ManualPerfComparison.java
│ │ │ └── RequestEntry.java
│ │ └── tools/
│ │ └── jackson/
│ │ └── dataformat/
│ │ └── csv/
│ │ ├── CSVFactoryFeaturesTest.java
│ │ ├── ModuleTestBase.java
│ │ ├── NullReader122Test.java
│ │ ├── SchemaCaching288Test.java
│ │ ├── TestVersions.java
│ │ ├── deser/
│ │ │ ├── AnySetterTest.java
│ │ │ ├── ArrayReadTest.java
│ │ │ ├── BasicCSVParserTest.java
│ │ │ ├── BlogPost2021AprilTest.java
│ │ │ ├── BrokenEncodingTest.java
│ │ │ ├── CaseInsensitiveHeader657Test.java
│ │ │ ├── CommentsTest.java
│ │ │ ├── EmptyStringAsMissingTest.java
│ │ │ ├── EmptyStringAsNullTest.java
│ │ │ ├── EmptyUnquotedStringAsNullTest.java
│ │ │ ├── FastParserStreamingCSVReadTest.java
│ │ │ ├── IgnoreUnmappableTest.java
│ │ │ ├── IntOverflow485Test.java
│ │ │ ├── ListField199Test.java
│ │ │ ├── MappingIteratorEnd9Test.java
│ │ │ ├── MissingColumns285Test.java
│ │ │ ├── MissingColumns579Test.java
│ │ │ ├── MissingColumnsTest.java
│ │ │ ├── NullReadTest.java
│ │ │ ├── NullValueUnquotedAsNullTest.java
│ │ │ ├── NumberDeserWithCSVTest.java
│ │ │ ├── ParserAutoCloseTest.java
│ │ │ ├── ParserLocation483Test.java
│ │ │ ├── ParserQuotes643Test.java
│ │ │ ├── ParserTrimSpacesTest.java
│ │ │ ├── ParserWithHeaderTest.java
│ │ │ ├── ReadBracketedArray442Test.java
│ │ │ ├── ReadSequencesTest.java
│ │ │ ├── SequenceRecoveryTest.java
│ │ │ ├── SkipEmptyLines15Test.java
│ │ │ ├── SkipEmptyLines191Test.java
│ │ │ ├── SkipEmptyRows368Test.java
│ │ │ ├── StreamingCSVReadTest.java
│ │ │ ├── TestParserEscapes.java
│ │ │ ├── TestParserNoSchema.java
│ │ │ ├── TestParserQuotes.java
│ │ │ ├── TestParserStrictQuoting.java
│ │ │ ├── TestParserWorkarounds.java
│ │ │ ├── TrailingCommaCSVTest.java
│ │ │ ├── UTF8ReaderTest.java
│ │ │ ├── UnicodeCSVRead497Test.java
│ │ │ └── UnwrappingWithCSVTest.java
│ │ ├── filter/
│ │ │ ├── JsonViewFilteringTest.java
│ │ │ └── StreamingDecoratorsTest.java
│ │ ├── fuzz/
│ │ │ ├── CSVFuzz499695465Test.java
│ │ │ ├── CSVFuzz50036Test.java
│ │ │ └── CSVFuzz50402Test.java
│ │ ├── limits/
│ │ │ ├── CSVBigNumberReadLimitsTest.java
│ │ │ ├── CSVBigStringLimitsTest.java
│ │ │ ├── CSVLargeDocReadLimitsTest.java
│ │ │ └── CSVNameLengthLimitsTest.java
│ │ ├── schema/
│ │ │ ├── CsvSchemaTest.java
│ │ │ ├── PropertyOrder74Test.java
│ │ │ ├── SchemaDefaultView308Test.java
│ │ │ └── SchemaFromBuilder207Test.java
│ │ ├── ser/
│ │ │ ├── ArrayWriteTest.java
│ │ │ ├── CSVGeneratorQuotingTest.java
│ │ │ ├── CSVGeneratorTest.java
│ │ │ ├── CSVJDKSerializationTest.java
│ │ │ ├── FilteringTest.java
│ │ │ ├── GeneratorFileCloseOnErrorTest.java
│ │ │ ├── GeneratorIgnoreUnknown51Test.java
│ │ │ ├── GeneratorIgnoreUnknownTest.java
│ │ │ ├── HeaderWriteTest.java
│ │ │ ├── MaxQuoteCheckCharsTest.java
│ │ │ ├── MultipleWritesTest.java
│ │ │ ├── NullWritingTest.java
│ │ │ ├── ObjectArrayNullWrite10Test.java
│ │ │ ├── ObjectArrayNullWrite116Test.java
│ │ │ ├── QuoteLeadingTrailingWhitespace210Test.java
│ │ │ ├── SchemaReorderTest.java
│ │ │ ├── StrictQuotingNewline479Test.java
│ │ │ ├── TestGeneratorNoSchema.java
│ │ │ ├── TestGeneratorWithCustomSeparators.java
│ │ │ ├── TestGeneratorWithSequences.java
│ │ │ ├── TestWriterWithMissingValues.java
│ │ │ ├── TestWriterWithSomeMoreMissingValues.java
│ │ │ ├── UnicodeWritingTest.java
│ │ │ ├── UnwrappedWriteTest.java
│ │ │ ├── WriteBracketedArray495Test.java
│ │ │ └── dos/
│ │ │ └── CyclicCSVDataSerTest.java
│ │ ├── testutil/
│ │ │ ├── PrefixInputDecorator.java
│ │ │ ├── PrefixOutputDecorator.java
│ │ │ └── failure/
│ │ │ ├── JacksonTestFailureExpected.java
│ │ │ ├── JacksonTestFailureExpectedInterceptor.java
│ │ │ └── JacksonTestShouldFailException.java
│ │ └── tofix/
│ │ └── package-info.java
│ └── resources/
│ └── data/
│ ├── clusterfuzz-testcase-minimized-CSVFuzzer-499695465.csv
│ ├── fuzz-50402.csv
│ └── story-100.csv
├── docs/
│ └── javadoc/
│ ├── csv/
│ │ ├── 2.10/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── csv/
│ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ ├── CsvFactory.html
│ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ ├── CsvGenerator.html
│ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ ├── CsvMapper.html
│ │ │ │ ├── CsvMappingException.html
│ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ ├── CsvParser.html
│ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ ├── CsvSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ │ ├── CsvFactory.html
│ │ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ │ ├── CsvGenerator.html
│ │ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ │ ├── CsvMapper.html
│ │ │ │ │ ├── CsvMappingException.html
│ │ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ │ ├── CsvParser.html
│ │ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ │ ├── CsvSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ ├── UTF8Writer.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ │ └── UTF8Writer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.11/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── csv/
│ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ ├── CsvFactory.html
│ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ ├── CsvGenerator.html
│ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ ├── CsvMapper.html
│ │ │ │ ├── CsvMappingException.html
│ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ ├── CsvParser.html
│ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ ├── CsvSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ │ ├── CsvFactory.html
│ │ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ │ ├── CsvGenerator.html
│ │ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ │ ├── CsvMapper.html
│ │ │ │ │ ├── CsvMappingException.html
│ │ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ │ ├── CsvParser.html
│ │ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ │ ├── CsvSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ ├── UTF8Writer.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ │ └── UTF8Writer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.12/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── csv/
│ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ ├── CsvFactory.html
│ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ ├── CsvGenerator.html
│ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ ├── CsvMapper.html
│ │ │ │ ├── CsvMappingException.html
│ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ ├── CsvParser.html
│ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ ├── CsvSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ │ ├── CsvFactory.html
│ │ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ │ ├── CsvGenerator.html
│ │ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ │ ├── CsvMapper.html
│ │ │ │ │ ├── CsvMappingException.html
│ │ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ │ ├── CsvParser.html
│ │ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ │ ├── CsvSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ ├── UTF8Writer.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ │ └── UTF8Writer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.13/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── csv/
│ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ ├── CsvFactory.html
│ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ ├── CsvGenerator.html
│ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ ├── CsvMapper.html
│ │ │ │ ├── CsvMappingException.html
│ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ ├── CsvParser.html
│ │ │ │ ├── CsvReadException.html
│ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ ├── CsvSchema.html
│ │ │ │ ├── CsvWriteException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ │ ├── CsvFactory.html
│ │ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ │ ├── CsvGenerator.html
│ │ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ │ ├── CsvMapper.html
│ │ │ │ │ ├── CsvMappingException.html
│ │ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ │ ├── CsvParser.html
│ │ │ │ │ ├── CsvReadException.html
│ │ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ │ ├── CsvSchema.html
│ │ │ │ │ ├── CsvWriteException.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ ├── UTF8Writer.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ │ └── UTF8Writer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.14/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── csv/
│ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ ├── CsvFactory.html
│ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ ├── CsvGenerator.html
│ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ ├── CsvMapper.ViewKey.html
│ │ │ │ ├── CsvMapper.html
│ │ │ │ ├── CsvMappingException.html
│ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ ├── CsvParser.html
│ │ │ │ ├── CsvReadException.html
│ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ ├── CsvSchema.html
│ │ │ │ ├── CsvWriteException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── CsvCharacterEscapes.html
│ │ │ │ │ ├── CsvFactory.html
│ │ │ │ │ ├── CsvFactoryBuilder.html
│ │ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ │ ├── CsvGenerator.html
│ │ │ │ │ ├── CsvMapper.Builder.html
│ │ │ │ │ ├── CsvMapper.ViewKey.html
│ │ │ │ │ ├── CsvMapper.html
│ │ │ │ │ ├── CsvMappingException.html
│ │ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ │ ├── CsvParser.html
│ │ │ │ │ ├── CsvReadException.html
│ │ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ │ ├── CsvSchema.html
│ │ │ │ │ ├── CsvWriteException.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ ├── UTF8Writer.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ │ ├── SimpleTokenWriteContext.html
│ │ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ │ └── UTF8Writer.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── javadoc.sh
│ │ │ ├── options
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── packages
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ └── 2.9/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── csv/
│ │ │ ├── CsvFactory.html
│ │ │ ├── CsvGenerator.Feature.html
│ │ │ ├── CsvGenerator.html
│ │ │ ├── CsvMapper.html
│ │ │ ├── CsvMappingException.html
│ │ │ ├── CsvParser.Feature.html
│ │ │ ├── CsvParser.html
│ │ │ ├── CsvSchema.Builder.html
│ │ │ ├── CsvSchema.Column.html
│ │ │ ├── CsvSchema.ColumnType.html
│ │ │ ├── CsvSchema.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── class-use/
│ │ │ │ ├── CsvFactory.html
│ │ │ │ ├── CsvGenerator.Feature.html
│ │ │ │ ├── CsvGenerator.html
│ │ │ │ ├── CsvMapper.html
│ │ │ │ ├── CsvMappingException.html
│ │ │ │ ├── CsvParser.Feature.html
│ │ │ │ ├── CsvParser.html
│ │ │ │ ├── CsvSchema.Builder.html
│ │ │ │ ├── CsvSchema.Column.html
│ │ │ │ ├── CsvSchema.ColumnType.html
│ │ │ │ ├── CsvSchema.html
│ │ │ │ └── PackageVersion.html
│ │ │ ├── impl/
│ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ ├── BufferedValue.html
│ │ │ │ ├── CsvDecoder.html
│ │ │ │ ├── CsvEncoder.html
│ │ │ │ ├── CsvIOContext.html
│ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ ├── LRUMap.html
│ │ │ │ ├── NumberInput.html
│ │ │ │ ├── NumberOutput.html
│ │ │ │ ├── TextBuffer.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── UTF8Writer.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── BufferedValue.BooleanValue.html
│ │ │ │ │ ├── BufferedValue.DoubleValue.html
│ │ │ │ │ ├── BufferedValue.IntValue.html
│ │ │ │ │ ├── BufferedValue.LongValue.html
│ │ │ │ │ ├── BufferedValue.NullValue.html
│ │ │ │ │ ├── BufferedValue.RawValue.html
│ │ │ │ │ ├── BufferedValue.TextValue.html
│ │ │ │ │ ├── BufferedValue.html
│ │ │ │ │ ├── CsvDecoder.html
│ │ │ │ │ ├── CsvEncoder.html
│ │ │ │ │ ├── CsvIOContext.html
│ │ │ │ │ ├── CsvParserBootstrapper.html
│ │ │ │ │ ├── LRUMap.html
│ │ │ │ │ ├── NumberInput.html
│ │ │ │ │ ├── NumberOutput.html
│ │ │ │ │ ├── TextBuffer.html
│ │ │ │ │ ├── UTF8Reader.html
│ │ │ │ │ └── UTF8Writer.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── properties/
│ │ ├── 2.10/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── javaprop/
│ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ ├── JavaPropsParser.html
│ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ │ ├── JavaPropsParser.html
│ │ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ ├── WriterBackedGenerator.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ │ └── WriterBackedGenerator.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── io/
│ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ ├── Latin1Reader.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ │ └── Latin1Reader.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── util/
│ │ │ │ ├── JPropNode.html
│ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ ├── Markers.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JPropNode.html
│ │ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ │ └── Markers.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── javadoc.sh
│ │ │ ├── options
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── packages
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.11/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── javaprop/
│ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ ├── JavaPropsParser.html
│ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ │ ├── JavaPropsParser.html
│ │ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ ├── WriterBackedGenerator.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ │ └── WriterBackedGenerator.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── io/
│ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ ├── Latin1Reader.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ │ └── Latin1Reader.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── util/
│ │ │ │ ├── JPropNode.html
│ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ ├── Markers.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JPropNode.html
│ │ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ │ └── Markers.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.12/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── javaprop/
│ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ ├── JavaPropsParser.html
│ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ │ ├── JavaPropsParser.html
│ │ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ ├── WriterBackedGenerator.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ │ └── WriterBackedGenerator.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── io/
│ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ ├── Latin1Reader.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ │ └── Latin1Reader.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── util/
│ │ │ │ ├── JPropNode.html
│ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ ├── Markers.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JPropNode.html
│ │ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ │ └── Markers.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.13/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── javaprop/
│ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ ├── JavaPropsParser.html
│ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ │ ├── JavaPropsParser.html
│ │ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ ├── WriterBackedGenerator.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ │ └── WriterBackedGenerator.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── io/
│ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ ├── Latin1Reader.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ │ └── Latin1Reader.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── util/
│ │ │ │ ├── JPropNode.html
│ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ ├── Markers.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JPropNode.html
│ │ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ │ └── Markers.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ ├── 2.14/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── javaprop/
│ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ ├── JavaPropsParser.html
│ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ │ ├── JavaPropsFactoryBuilder.html
│ │ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ │ ├── JavaPropsMapper.Builder.html
│ │ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ │ ├── JavaPropsParser.html
│ │ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ │ └── PackageVersion.html
│ │ │ │ ├── impl/
│ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ ├── WriterBackedGenerator.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ │ └── WriterBackedGenerator.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── io/
│ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ ├── Latin1Reader.html
│ │ │ │ │ ├── class-use/
│ │ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ │ └── Latin1Reader.html
│ │ │ │ │ ├── package-frame.html
│ │ │ │ │ ├── package-summary.html
│ │ │ │ │ ├── package-tree.html
│ │ │ │ │ └── package-use.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ ├── package-use.html
│ │ │ │ └── util/
│ │ │ │ ├── JPropNode.html
│ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ ├── Markers.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JPropNode.html
│ │ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ │ └── Markers.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-frame.html
│ │ │ ├── overview-summary.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ └── 2.9/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── javaprop/
│ │ │ ├── JavaPropsFactory.html
│ │ │ ├── JavaPropsGenerator.html
│ │ │ ├── JavaPropsMapper.html
│ │ │ ├── JavaPropsParser.html
│ │ │ ├── JavaPropsSchema.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── class-use/
│ │ │ │ ├── JavaPropsFactory.html
│ │ │ │ ├── JavaPropsGenerator.html
│ │ │ │ ├── JavaPropsMapper.html
│ │ │ │ ├── JavaPropsParser.html
│ │ │ │ ├── JavaPropsSchema.html
│ │ │ │ └── PackageVersion.html
│ │ │ ├── impl/
│ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ ├── WriterBackedGenerator.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── PropertiesBackedGenerator.html
│ │ │ │ │ └── WriterBackedGenerator.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── io/
│ │ │ │ ├── JPropEscapes.html
│ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ ├── JPropReadContext.html
│ │ │ │ ├── JPropWriteContext.html
│ │ │ │ ├── Latin1Reader.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── JPropEscapes.html
│ │ │ │ │ ├── JPropReadContext.ArrayContext.html
│ │ │ │ │ ├── JPropReadContext.ObjectContext.html
│ │ │ │ │ ├── JPropReadContext.html
│ │ │ │ │ ├── JPropWriteContext.html
│ │ │ │ │ └── Latin1Reader.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ └── util/
│ │ │ ├── JPropNode.html
│ │ │ ├── JPropNodeBuilder.html
│ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ ├── JPropPathSplitter.html
│ │ │ ├── Markers.html
│ │ │ ├── class-use/
│ │ │ │ ├── JPropNode.html
│ │ │ │ ├── JPropNodeBuilder.html
│ │ │ │ ├── JPropPathSplitter.CharPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.FullSplitter.html
│ │ │ │ ├── JPropPathSplitter.IndexOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.NonSplitting.html
│ │ │ │ ├── JPropPathSplitter.StringPathOnlySplitter.html
│ │ │ │ ├── JPropPathSplitter.html
│ │ │ │ └── Markers.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── toml/
│ │ ├── 2.13/
│ │ │ ├── allclasses-frame.html
│ │ │ ├── allclasses-noframe.html
│ │ │ ├── com/
│ │ │ │ └── fasterxml/
│ │ │ │ └── jackson/
│ │ │ │ └── dataformat/
│ │ │ │ └── toml/
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── TomlFactory.html
│ │ │ │ ├── TomlFactoryBuilder.html
│ │ │ │ ├── TomlMapper.Builder.html
│ │ │ │ ├── TomlMapper.html
│ │ │ │ ├── TomlReadFeature.html
│ │ │ │ ├── TomlStreamReadException.html
│ │ │ │ ├── TomlStreamWriteException.html
│ │ │ │ ├── TomlWriteFeature.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── PackageVersion.html
│ │ │ │ │ ├── TomlFactory.html
│ │ │ │ │ ├── TomlFactoryBuilder.html
│ │ │ │ │ ├── TomlMapper.Builder.html
│ │ │ │ │ ├── TomlMapper.html
│ │ │ │ │ ├── TomlReadFeature.html
│ │ │ │ │ ├── TomlStreamReadException.html
│ │ │ │ │ ├── TomlStreamWriteException.html
│ │ │ │ │ ├── TomlWriteFeature.html
│ │ │ │ │ └── UTF8Reader.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ ├── constant-values.html
│ │ │ ├── deprecated-list.html
│ │ │ ├── help-doc.html
│ │ │ ├── index-all.html
│ │ │ ├── index.html
│ │ │ ├── overview-tree.html
│ │ │ ├── package-list
│ │ │ ├── script.js
│ │ │ ├── serialized-form.html
│ │ │ └── stylesheet.css
│ │ └── 2.14/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── toml/
│ │ │ ├── PackageVersion.html
│ │ │ ├── TomlFactory.html
│ │ │ ├── TomlFactoryBuilder.html
│ │ │ ├── TomlMapper.Builder.html
│ │ │ ├── TomlMapper.html
│ │ │ ├── TomlReadFeature.html
│ │ │ ├── TomlStreamReadException.html
│ │ │ ├── TomlStreamWriteException.html
│ │ │ ├── TomlWriteFeature.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── class-use/
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── TomlFactory.html
│ │ │ │ ├── TomlFactoryBuilder.html
│ │ │ │ ├── TomlMapper.Builder.html
│ │ │ │ ├── TomlMapper.html
│ │ │ │ ├── TomlReadFeature.html
│ │ │ │ ├── TomlStreamReadException.html
│ │ │ │ ├── TomlStreamWriteException.html
│ │ │ │ ├── TomlWriteFeature.html
│ │ │ │ └── UTF8Reader.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── script.js
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ └── yaml/
│ ├── 2.10/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── yaml/
│ │ │ ├── JacksonYAMLParseException.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── UTF8Writer.html
│ │ │ ├── YAMLFactory.html
│ │ │ ├── YAMLFactoryBuilder.html
│ │ │ ├── YAMLGenerator.Feature.html
│ │ │ ├── YAMLGenerator.html
│ │ │ ├── YAMLMapper.Builder.html
│ │ │ ├── YAMLMapper.html
│ │ │ ├── YAMLParser.Feature.html
│ │ │ ├── YAMLParser.html
│ │ │ ├── class-use/
│ │ │ │ ├── JacksonYAMLParseException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── UTF8Writer.html
│ │ │ │ ├── YAMLFactory.html
│ │ │ │ ├── YAMLFactoryBuilder.html
│ │ │ │ ├── YAMLGenerator.Feature.html
│ │ │ │ ├── YAMLGenerator.html
│ │ │ │ ├── YAMLMapper.Builder.html
│ │ │ │ ├── YAMLMapper.html
│ │ │ │ ├── YAMLParser.Feature.html
│ │ │ │ └── YAMLParser.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ └── snakeyaml/
│ │ │ └── error/
│ │ │ ├── Mark.html
│ │ │ ├── MarkedYAMLException.html
│ │ │ ├── YAMLException.html
│ │ │ ├── class-use/
│ │ │ │ ├── Mark.html
│ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ └── YAMLException.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── javadoc.sh
│ │ ├── options
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── packages
│ │ ├── script.js
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── 2.11/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── yaml/
│ │ │ ├── JacksonYAMLParseException.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── UTF8Writer.html
│ │ │ ├── YAMLFactory.html
│ │ │ ├── YAMLFactoryBuilder.html
│ │ │ ├── YAMLGenerator.Feature.html
│ │ │ ├── YAMLGenerator.html
│ │ │ ├── YAMLMapper.Builder.html
│ │ │ ├── YAMLMapper.html
│ │ │ ├── YAMLParser.Feature.html
│ │ │ ├── YAMLParser.html
│ │ │ ├── class-use/
│ │ │ │ ├── JacksonYAMLParseException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── UTF8Writer.html
│ │ │ │ ├── YAMLFactory.html
│ │ │ │ ├── YAMLFactoryBuilder.html
│ │ │ │ ├── YAMLGenerator.Feature.html
│ │ │ │ ├── YAMLGenerator.html
│ │ │ │ ├── YAMLMapper.Builder.html
│ │ │ │ ├── YAMLMapper.html
│ │ │ │ ├── YAMLParser.Feature.html
│ │ │ │ └── YAMLParser.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ └── snakeyaml/
│ │ │ └── error/
│ │ │ ├── Mark.html
│ │ │ ├── MarkedYAMLException.html
│ │ │ ├── YAMLException.html
│ │ │ ├── class-use/
│ │ │ │ ├── Mark.html
│ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ └── YAMLException.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── script.js
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── 2.12/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── yaml/
│ │ │ ├── JacksonYAMLParseException.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── UTF8Writer.html
│ │ │ ├── YAMLFactory.html
│ │ │ ├── YAMLFactoryBuilder.html
│ │ │ ├── YAMLGenerator.Feature.html
│ │ │ ├── YAMLGenerator.html
│ │ │ ├── YAMLMapper.Builder.html
│ │ │ ├── YAMLMapper.html
│ │ │ ├── YAMLParser.Feature.html
│ │ │ ├── YAMLParser.html
│ │ │ ├── class-use/
│ │ │ │ ├── JacksonYAMLParseException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── UTF8Writer.html
│ │ │ │ ├── YAMLFactory.html
│ │ │ │ ├── YAMLFactoryBuilder.html
│ │ │ │ ├── YAMLGenerator.Feature.html
│ │ │ │ ├── YAMLGenerator.html
│ │ │ │ ├── YAMLMapper.Builder.html
│ │ │ │ ├── YAMLMapper.html
│ │ │ │ ├── YAMLParser.Feature.html
│ │ │ │ └── YAMLParser.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ ├── snakeyaml/
│ │ │ │ └── error/
│ │ │ │ ├── Mark.html
│ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ ├── YAMLException.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── Mark.html
│ │ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ │ └── YAMLException.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ └── util/
│ │ │ ├── StringQuotingChecker.Default.html
│ │ │ ├── StringQuotingChecker.html
│ │ │ ├── class-use/
│ │ │ │ ├── StringQuotingChecker.Default.html
│ │ │ │ └── StringQuotingChecker.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── javadoc.sh
│ │ ├── options
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── packages
│ │ ├── script.js
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── 2.13/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── yaml/
│ │ │ ├── JacksonYAMLParseException.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── UTF8Writer.html
│ │ │ ├── YAMLFactory.html
│ │ │ ├── YAMLFactoryBuilder.html
│ │ │ ├── YAMLGenerator.Feature.html
│ │ │ ├── YAMLGenerator.html
│ │ │ ├── YAMLMapper.Builder.html
│ │ │ ├── YAMLMapper.html
│ │ │ ├── YAMLParser.Feature.html
│ │ │ ├── YAMLParser.html
│ │ │ ├── class-use/
│ │ │ │ ├── JacksonYAMLParseException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── UTF8Writer.html
│ │ │ │ ├── YAMLFactory.html
│ │ │ │ ├── YAMLFactoryBuilder.html
│ │ │ │ ├── YAMLGenerator.Feature.html
│ │ │ │ ├── YAMLGenerator.html
│ │ │ │ ├── YAMLMapper.Builder.html
│ │ │ │ ├── YAMLMapper.html
│ │ │ │ ├── YAMLParser.Feature.html
│ │ │ │ └── YAMLParser.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ ├── snakeyaml/
│ │ │ │ └── error/
│ │ │ │ ├── Mark.html
│ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ ├── YAMLException.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── Mark.html
│ │ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ │ └── YAMLException.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ └── util/
│ │ │ ├── StringQuotingChecker.Default.html
│ │ │ ├── StringQuotingChecker.html
│ │ │ ├── class-use/
│ │ │ │ ├── StringQuotingChecker.Default.html
│ │ │ │ └── StringQuotingChecker.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── javadoc.sh
│ │ ├── options
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── packages
│ │ ├── script.js
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ ├── 2.14/
│ │ ├── allclasses-frame.html
│ │ ├── allclasses-noframe.html
│ │ ├── com/
│ │ │ └── fasterxml/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── yaml/
│ │ │ ├── JacksonYAMLParseException.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── UTF8Writer.html
│ │ │ ├── YAMLFactory.html
│ │ │ ├── YAMLFactoryBuilder.html
│ │ │ ├── YAMLGenerator.Feature.html
│ │ │ ├── YAMLGenerator.html
│ │ │ ├── YAMLMapper.Builder.html
│ │ │ ├── YAMLMapper.html
│ │ │ ├── YAMLParser.Feature.html
│ │ │ ├── YAMLParser.html
│ │ │ ├── class-use/
│ │ │ │ ├── JacksonYAMLParseException.html
│ │ │ │ ├── PackageVersion.html
│ │ │ │ ├── UTF8Reader.html
│ │ │ │ ├── UTF8Writer.html
│ │ │ │ ├── YAMLFactory.html
│ │ │ │ ├── YAMLFactoryBuilder.html
│ │ │ │ ├── YAMLGenerator.Feature.html
│ │ │ │ ├── YAMLGenerator.html
│ │ │ │ ├── YAMLMapper.Builder.html
│ │ │ │ ├── YAMLMapper.html
│ │ │ │ ├── YAMLParser.Feature.html
│ │ │ │ └── YAMLParser.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ ├── package-use.html
│ │ │ ├── snakeyaml/
│ │ │ │ └── error/
│ │ │ │ ├── Mark.html
│ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ ├── YAMLException.html
│ │ │ │ ├── class-use/
│ │ │ │ │ ├── Mark.html
│ │ │ │ │ ├── MarkedYAMLException.html
│ │ │ │ │ └── YAMLException.html
│ │ │ │ ├── package-frame.html
│ │ │ │ ├── package-summary.html
│ │ │ │ ├── package-tree.html
│ │ │ │ └── package-use.html
│ │ │ └── util/
│ │ │ ├── StringQuotingChecker.Default.html
│ │ │ ├── StringQuotingChecker.html
│ │ │ ├── class-use/
│ │ │ │ ├── StringQuotingChecker.Default.html
│ │ │ │ └── StringQuotingChecker.html
│ │ │ ├── package-frame.html
│ │ │ ├── package-summary.html
│ │ │ ├── package-tree.html
│ │ │ └── package-use.html
│ │ ├── constant-values.html
│ │ ├── deprecated-list.html
│ │ ├── help-doc.html
│ │ ├── index-all.html
│ │ ├── index.html
│ │ ├── javadoc.sh
│ │ ├── options
│ │ ├── overview-frame.html
│ │ ├── overview-summary.html
│ │ ├── overview-tree.html
│ │ ├── package-list
│ │ ├── packages
│ │ ├── script.js
│ │ ├── serialized-form.html
│ │ └── stylesheet.css
│ └── 2.9/
│ ├── allclasses-frame.html
│ ├── allclasses-noframe.html
│ ├── com/
│ │ └── fasterxml/
│ │ └── jackson/
│ │ └── dataformat/
│ │ └── yaml/
│ │ ├── JacksonYAMLParseException.html
│ │ ├── PackageVersion.html
│ │ ├── UTF8Reader.html
│ │ ├── UTF8Writer.html
│ │ ├── YAMLFactory.html
│ │ ├── YAMLGenerator.Feature.html
│ │ ├── YAMLGenerator.html
│ │ ├── YAMLMapper.html
│ │ ├── YAMLParser.Feature.html
│ │ ├── YAMLParser.html
│ │ ├── class-use/
│ │ │ ├── JacksonYAMLParseException.html
│ │ │ ├── PackageVersion.html
│ │ │ ├── UTF8Reader.html
│ │ │ ├── UTF8Writer.html
│ │ │ ├── YAMLFactory.html
│ │ │ ├── YAMLGenerator.Feature.html
│ │ │ ├── YAMLGenerator.html
│ │ │ ├── YAMLMapper.html
│ │ │ ├── YAMLParser.Feature.html
│ │ │ └── YAMLParser.html
│ │ ├── package-frame.html
│ │ ├── package-summary.html
│ │ ├── package-tree.html
│ │ ├── package-use.html
│ │ └── snakeyaml/
│ │ └── error/
│ │ ├── Mark.html
│ │ ├── MarkedYAMLException.html
│ │ ├── YAMLException.html
│ │ ├── class-use/
│ │ │ ├── Mark.html
│ │ │ ├── MarkedYAMLException.html
│ │ │ └── YAMLException.html
│ │ ├── package-frame.html
│ │ ├── package-summary.html
│ │ ├── package-tree.html
│ │ └── package-use.html
│ ├── constant-values.html
│ ├── deprecated-list.html
│ ├── help-doc.html
│ ├── index-all.html
│ ├── index.html
│ ├── overview-frame.html
│ ├── overview-summary.html
│ ├── overview-tree.html
│ ├── package-list
│ ├── serialized-form.html
│ └── stylesheet.css
├── mvnw
├── mvnw.cmd
├── pom.xml
├── properties/
│ ├── .gitattributes
│ ├── README.md
│ ├── pom.xml
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ ├── module-info.java
│ │ │ └── tools/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── javaprop/
│ │ │ ├── JavaPropsFactory.java
│ │ │ ├── JavaPropsFactoryBuilder.java
│ │ │ ├── JavaPropsGenerator.java
│ │ │ ├── JavaPropsMapper.java
│ │ │ ├── JavaPropsParser.java
│ │ │ ├── JavaPropsSchema.java
│ │ │ ├── PackageVersion.java.in
│ │ │ ├── impl/
│ │ │ │ ├── PropertiesBackedGenerator.java
│ │ │ │ └── WriterBackedGenerator.java
│ │ │ ├── io/
│ │ │ │ ├── JPropEscapes.java
│ │ │ │ ├── JPropReadContext.java
│ │ │ │ ├── JPropWriteContext.java
│ │ │ │ ├── Latin1Reader.java
│ │ │ │ └── package-info.java
│ │ │ ├── package-info.java
│ │ │ └── util/
│ │ │ ├── JPropNode.java
│ │ │ ├── JPropNodeBuilder.java
│ │ │ ├── JPropPathSplitter.java
│ │ │ ├── Markers.java
│ │ │ └── package-info.java
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ └── services/
│ │ ├── tools.jackson.core.TokenStreamFactory
│ │ └── tools.jackson.databind.ObjectMapper
│ └── test/
│ └── java/
│ ├── module-info.java
│ └── tools/
│ └── jackson/
│ └── dataformat/
│ └── javaprop/
│ ├── ArrayGenerationTest.java
│ ├── ArrayParsingTest.java
│ ├── BinaryParsingTest.java
│ ├── CustomSeparatorsTest.java
│ ├── DefaultConfigsTest.java
│ ├── GenerationEscapingTest.java
│ ├── GeneratorFileCloseOnErrorTest.java
│ ├── JDKSerializabilityTest.java
│ ├── MapParsingTest.java
│ ├── ModuleTestBase.java
│ ├── NumberDeserWithPropsTest.java
│ ├── PrefixTest.java
│ ├── PropertiesSupportTest.java
│ ├── SchemaConstructionTest.java
│ ├── SimpleGenerationTest.java
│ ├── SimpleParsingTest.java
│ ├── SimpleStreamingTest.java
│ ├── StreamClosingTest.java
│ ├── TestVersions.java
│ ├── WriteContextResetTest.java
│ ├── constraints/
│ │ ├── DeeplyNestedPropsReadWriteTest.java
│ │ └── PropsReadConstraintsTest.java
│ ├── deser/
│ │ ├── FuzzPropsReadTest.java
│ │ └── convert/
│ │ ├── CoerceToBooleanTest.java
│ │ └── DefaultFromEmptyCoercionsTest.java
│ ├── filter/
│ │ └── StreamingDecoratorsTest.java
│ ├── ser/
│ │ └── dos/
│ │ └── CyclicPropsDataSerTest.java
│ ├── testutil/
│ │ ├── CloseStateInputStream.java
│ │ ├── CloseStateReader.java
│ │ ├── PrefixInputDecorator.java
│ │ ├── PrefixOutputDecorator.java
│ │ └── failure/
│ │ ├── JacksonTestFailureExpected.java
│ │ ├── JacksonTestFailureExpectedInterceptor.java
│ │ └── JacksonTestShouldFailException.java
│ └── util/
│ └── JPropPathSplitterTest.java
├── release-notes/
│ ├── CREDITS
│ ├── CREDITS-2.x
│ ├── CREDITS-old-csv.txt
│ ├── CREDITS-old-properties.txt
│ ├── CREDITS-old-yaml.txt
│ ├── VERSION
│ └── VERSION-2.x
├── toml/
│ ├── .gitattributes
│ ├── LICENSE
│ ├── README.md
│ ├── pom.xml
│ └── src/
│ ├── main/
│ │ ├── java/
│ │ │ ├── module-info.java
│ │ │ └── tools/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── toml/
│ │ │ ├── PackageVersion.java.in
│ │ │ ├── StringOutputUtil.java
│ │ │ ├── TomlFactory.java
│ │ │ ├── TomlFactoryBuilder.java
│ │ │ ├── TomlGenerator.java
│ │ │ ├── TomlMapper.java
│ │ │ ├── TomlParser.java
│ │ │ ├── TomlReadFeature.java
│ │ │ ├── TomlStreamReadException.java
│ │ │ ├── TomlStreamWriteException.java
│ │ │ ├── TomlToken.java
│ │ │ ├── TomlWriteContext.java
│ │ │ ├── TomlWriteFeature.java
│ │ │ └── UTF8Reader.java
│ │ ├── jflex/
│ │ │ ├── skeleton-toml
│ │ │ └── tools/
│ │ │ └── jackson/
│ │ │ └── dataformat/
│ │ │ └── toml/
│ │ │ └── toml.jflex
│ │ └── resources/
│ │ └── META-INF/
│ │ ├── LICENSE
│ │ ├── NOTICE
│ │ └── services/
│ │ ├── tools.jackson.core.TokenStreamFactory
│ │ └── tools.jackson.databind.ObjectMapper
│ └── test/
│ ├── java/
│ │ ├── module-info.java
│ │ └── tools/
│ │ └── jackson/
│ │ └── dataformat/
│ │ └── toml/
│ │ ├── ComplexPojoReadWriteTest.java
│ │ ├── ComplianceInvalidTest.java
│ │ ├── ComplianceValidTest.java
│ │ ├── FuzzTomlRead57237Test.java
│ │ ├── FuzzTomlReadTest.java
│ │ ├── LongTokenTest.java
│ │ ├── POJOReadWriteTest.java
│ │ ├── StringOutputUtilTest.java
│ │ ├── TomlBigStringsTest.java
│ │ ├── TomlGeneratorFileCloseOnErrorTest.java
│ │ ├── TomlGeneratorTest.java
│ │ ├── TomlMapperTest.java
│ │ ├── TomlMapperTestBase.java
│ │ ├── TomlParserTest.java
│ │ ├── UTF8ReaderTest.java
│ │ ├── dos/
│ │ │ └── CyclicTOMLDataSerTest.java
│ │ └── testutil/
│ │ └── failure/
│ │ ├── JacksonTestFailureExpected.java
│ │ ├── JacksonTestFailureExpectedInterceptor.java
│ │ └── JacksonTestShouldFailException.java
│ └── resources/
│ ├── clusterfuzz-testcase-minimized-TOMLFuzzer-5068015447703552
│ ├── clusterfuzz-testcase-minimized-TOMLFuzzer-6370486359031808
│ └── clusterfuzz-testcase-minimized-TOMLFuzzer-6542204348006400
└── yaml/
├── .gitattributes
├── README.md
├── pom.xml
└── src/
├── main/
│ ├── java/
│ │ ├── module-info.java
│ │ └── tools/
│ │ └── jackson/
│ │ └── dataformat/
│ │ └── yaml/
│ │ ├── JacksonYAMLParseException.java
│ │ ├── JacksonYAMLWriteException.java
│ │ ├── PackageVersion.java.in
│ │ ├── UTF8Reader.java
│ │ ├── UTF8Writer.java
│ │ ├── WriterWrapper.java
│ │ ├── YAMLAnchorReplayingFactory.java
│ │ ├── YAMLAnchorReplayingFactoryBuilder.java
│ │ ├── YAMLAnchorReplayingParser.java
│ │ ├── YAMLFactory.java
│ │ ├── YAMLFactoryBuilder.java
│ │ ├── YAMLGenerator.java
│ │ ├── YAMLMapper.java
│ │ ├── YAMLParser.java
│ │ ├── YAMLReadFeature.java
│ │ ├── YAMLSchema.java
│ │ ├── YAMLWriteFeature.java
│ │ ├── package-info.java
│ │ └── util/
│ │ ├── StringQuotingChecker.java
│ │ └── package-info.java
│ └── resources/
│ └── META-INF/
│ ├── LICENSE
│ ├── NOTICE
│ └── services/
│ ├── tools.jackson.core.TokenStreamFactory
│ └── tools.jackson.databind.ObjectMapper
└── test/
├── java/
│ ├── module-info.java
│ ├── perf/
│ │ ├── MediaItem.java
│ │ ├── YAMLDeserPerf.java
│ │ └── YAMLSerPerf.java
│ └── tools/
│ └── jackson/
│ └── dataformat/
│ └── yaml/
│ ├── ExceptionConversionTest.java
│ ├── JDKSerializabilityTest.java
│ ├── ModuleTestBase.java
│ ├── MultipleDocumentsReadTest.java
│ ├── MultipleDocumentsWriteTest.java
│ ├── TestVersions.java
│ ├── YAMLMapperTest.java
│ ├── constraints/
│ │ ├── DeeplyNestedYAMLReadWriteTest.java
│ │ └── YAMLReadConstraintsTest.java
│ ├── deser/
│ │ ├── BinaryYAMLReadTest.java
│ │ ├── DatabindAdvancedTest.java
│ │ ├── DatabindReadTest.java
│ │ ├── EmptyDocumentDeser154Test.java
│ │ ├── NameQuoting306Test.java
│ │ ├── NullFromEmptyString130Test.java
│ │ ├── NumberDeserWithYAMLTest.java
│ │ ├── ParseBooleanLikeWordsAsStringsTest.java
│ │ ├── ParseOctalNumbers276Test.java
│ │ ├── ParserAutoCloseTest.java
│ │ ├── ParserDupHandlingTest.java
│ │ ├── StreamingParse337Test.java
│ │ ├── StreamingYAMLAnchorReplayingParseTest.java
│ │ ├── StreamingYAMLParseTest.java
│ │ ├── UTF8ReaderTest.java
│ │ ├── UnicodeYAMLRead497Test.java
│ │ ├── YAML12CoreSchema623Test.java
│ │ └── YAML12CoreSchemaParseTest.java
│ ├── filter/
│ │ └── StreamingDecoratorsTest.java
│ ├── fuzz/
│ │ ├── FuzzYAMLRead63274Test.java
│ │ ├── FuzzYAMLRead65855Test.java
│ │ ├── FuzzYAMLReadTest.java
│ │ └── FuzzYAML_65918_Test.java
│ ├── misc/
│ │ ├── ObjectAndTypeId231Test.java
│ │ ├── ObjectAndTypeId232Test.java
│ │ ├── ObjectAndTypeId292Test.java
│ │ ├── ObjectId123Test.java
│ │ ├── ObjectId63Test.java
│ │ ├── ObjectIdTest.java
│ │ ├── ObjectIdWithCreator22Test.java
│ │ ├── ObjectIdWithUUID550Test.java
│ │ ├── PolymorphicDeductionTest.java
│ │ ├── PolymorphicWithObjectId25Test.java
│ │ ├── ReservedNamesTest.java
│ │ └── ReservedValuesTest.java
│ ├── ser/
│ │ ├── BinaryWriteTest.java
│ │ ├── CustomNodeStyleTest.java
│ │ ├── CustomStringQuoting229Test.java
│ │ ├── DatabindWriteTest.java
│ │ ├── GeneratorAutoCloseTest.java
│ │ ├── GeneratorExceptionHandlingTest.java
│ │ ├── GeneratorFeature175Test.java
│ │ ├── GeneratorFeature34Test.java
│ │ ├── GeneratorFeatureTest.java
│ │ ├── GeneratorFileCloseOnErrorTest.java
│ │ ├── GeneratorWithMinimize568Test.java
│ │ ├── GeneratorWithMinimizeTest.java
│ │ ├── GeneratorWithSplitLinesTest.java
│ │ ├── GeneratorWriteCommentTest.java
│ │ ├── SimpleGeneration215Test.java
│ │ ├── SimpleGenerationTest.java
│ │ ├── UTF8WriterTest.java
│ │ ├── YAML12CoreSchema623Test.java
│ │ └── dos/
│ │ └── CyclicYAMLDataSerTest.java
│ ├── testutil/
│ │ ├── PrefixInputDecorator.java
│ │ ├── PrefixOutputDecorator.java
│ │ └── failure/
│ │ ├── JacksonTestFailureExpected.java
│ │ ├── JacksonTestFailureExpectedInterceptor.java
│ │ └── JacksonTestShouldFailException.java
│ ├── tofix/
│ │ ├── IntegerWithUnderscoresRead146Test.java
│ │ ├── LongWithUnderscoresRead146Test.java
│ │ ├── NumberAltIntRead71Test.java
│ │ ├── ObjectIdWithTree2Test.java
│ │ └── SimpleGeneration366NotaBugTest.java
│ └── type/
│ ├── PolymorphicIdTest.java
│ ├── RawTagTest.java
│ └── TypeIdTest.java
└── resources/
├── data/
│ └── fuzz-65918.yaml
└── log4j.properties
Showing preview only (273K chars total). Download the full file or copy to clipboard to get everything.
SYMBOL INDEX (3406 symbols across 308 files)
FILE: .mvn/wrapper/MavenWrapperDownloader.java
class MavenWrapperDownloader (line 21) | public class MavenWrapperDownloader {
method main (line 48) | public static void main(String args[]) {
method downloadFileFromURL (line 97) | private static void downloadFileFromURL(String urlString, File destina...
FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvCharacterEscapes.java
class CsvCharacterEscapes (line 17) | public final class CsvCharacterEscapes extends CharacterEscapes
method CsvCharacterEscapes (line 55) | private CsvCharacterEscapes(int[] escapes)
method noEscapesInstance (line 60) | public static CsvCharacterEscapes noEscapesInstance()
method quoteEscapesInstance (line 65) | public static CsvCharacterEscapes quoteEscapesInstance()
method controlEscapesInstance (line 70) | public static CsvCharacterEscapes controlEscapesInstance()
method controlQuoteEscapesInstance (line 75) | public static CsvCharacterEscapes controlQuoteEscapesInstance()
method fromCsvFeatures (line 80) | public static CsvCharacterEscapes fromCsvFeatures(int csvFeatures)
method getEscapeSequence (line 89) | @Override
method getEscapeCodesForAscii (line 95) | @Override
FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvFactory.java
class CsvFactory (line 13) | public class CsvFactory
method CsvFactory (line 70) | public CsvFactory() {
method CsvFactory (line 79) | protected CsvFactory(CsvFactory src)
method CsvFactory (line 91) | protected CsvFactory(CsvFactoryBuilder b)
method rebuild (line 98) | @Override
method builder (line 107) | public static CsvFactoryBuilder builder() {
method copy (line 111) | @Override
method snapshot (line 119) | @Override
method readResolve (line 135) | protected Object readResolve() {
method version (line 145) | @Override
method requiresPropertyOrdering (line 151) | @Override
method canUseCharArrays (line 157) | @Override
method canParseAsync (line 160) | @Override
method getFormatName (line 172) | @Override
method canUseSchema (line 177) | @Override
method getFormatReadFeatureType (line 182) | @Override
method getFormatWriteFeatureType (line 187) | @Override
method getFormatReadFeatures (line 192) | @Override
method getFormatWriteFeatures (line 195) | @Override
method isEnabled (line 201) | public final boolean isEnabled(CsvReadFeature f) {
method isEnabled (line 208) | public boolean isEnabled(CsvWriteFeature f) {
method _createParser (line 221) | @Override
method _createParser (line 232) | @Override
method _createParser (line 246) | @Override
method _createParser (line 257) | @Override
method _createParser (line 269) | @Override
method _getSchema (line 276) | private final CsvSchema _getSchema(ObjectReadContext readCtxt) {
method _createGenerator (line 290) | @Override
method _createUTF8Generator (line 301) | @SuppressWarnings("resource")
method _getSchema (line 313) | private final CsvSchema _getSchema(ObjectWriteContext writeCtxt) {
FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvFactoryBuilder.java
class CsvFactoryBuilder (line 18) | public class CsvFactoryBuilder extends DecorableTSFBuilder<CsvFactory, C...
method CsvFactoryBuilder (line 44) | protected CsvFactoryBuilder() {
method CsvFactoryBuilder (line 51) | public CsvFactoryBuilder(CsvFactory base) {
method build (line 57) | @Override
method enable (line 65) | public CsvFactoryBuilder enable(CsvReadFeature f) {
method enable (line 70) | public CsvFactoryBuilder enable(CsvReadFeature first, CsvReadFeature.....
method disable (line 78) | public CsvFactoryBuilder disable(CsvReadFeature f) {
method disable (line 83) | public CsvFactoryBuilder disable(CsvReadFeature first, CsvReadFeature....
method configure (line 91) | public CsvFactoryBuilder configure(CsvReadFeature f, boolean state) {
method enable (line 97) | public CsvFactoryBuilder enable(CsvWriteFeature f) {
method enable (line 102) | public CsvFactoryBuilder enable(CsvWriteFeature first, CsvWriteFeature...
method disable (line 110) | public CsvFactoryBuilder disable(CsvWriteFeature f) {
method disable (line 115) | public CsvFactoryBuilder disable(CsvWriteFeature first, CsvWriteFeatur...
method configure (line 123) | public CsvFactoryBuilder configure(CsvWriteFeature f, boolean state) {
method characterEscapes (line 133) | public CsvFactoryBuilder characterEscapes(CsvCharacterEscapes esc) {
method characterEscapes (line 138) | public CsvCharacterEscapes characterEscapes() {
method maxQuoteCheckChars (line 160) | public CsvFactoryBuilder maxQuoteCheckChars(int maxChars) {
method maxQuoteCheckChars (line 171) | public int maxQuoteCheckChars() {
FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvGenerator.java
class CsvGenerator (line 18) | public class CsvGenerator extends GeneratorBase
method CsvGenerator (line 123) | public CsvGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt,
method CsvGenerator (line 142) | public CsvGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt,
method version (line 161) | @Override
method canOmitProperties (line 172) | @Override
method has (line 178) | @Override
method streamWriteCapabilities (line 183) | @Override
method streamWriteContext (line 194) | @Override
method currentValue (line 197) | @Override
method assignCurrentValue (line 202) | @Override
method streamWriteOutputTarget (line 213) | @Override
method streamWriteOutputBuffered (line 223) | @Override
method setCharacterEscapes (line 228) | @Override
method getCharacterEscapes (line 236) | @Override
method getPrettyPrinter (line 242) | @Override
method writeName (line 257) | @Override
method writePropertyId (line 267) | @Override
method writeName (line 273) | @Override
method _writeFieldName (line 284) | private final void _writeFieldName(String name) throws JacksonException
method isEnabled (line 321) | public final boolean isEnabled(CsvWriteFeature f) {
method flush (line 331) | @Override
method close (line 340) | @Override
method _closeInput (line 358) | @Override
method writeStartArray (line 371) | @Override
method writeStartArray (line 417) | @Override
method writeEndArray (line 424) | @Override
method writeStartObject (line 455) | @Override
method writeStartObject (line 479) | @Override
method writeEndObject (line 486) | @Override
method writeString (line 511) | @Override
method writeString (line 532) | @Override
method writeString (line 551) | @Override
method writeRawUTF8String (line 570) | @Override
method writeUTF8String (line 575) | @Override
method writeRaw (line 586) | @Override
method writeRaw (line 592) | @Override
method writeRaw (line 598) | @Override
method writeRaw (line 604) | @Override
method writeRawValue (line 610) | @Override
method writeRawValue (line 620) | @Override
method writeRawValue (line 630) | @Override
method writeBinary (line 646) | @Override
method writeBoolean (line 681) | @Override
method writeNull (line 701) | @Override
method writeNumber (line 754) | @Override
method writeNumber (line 759) | @Override
method writeNumber (line 777) | @Override
method writeNumber (line 799) | @Override
method writeNumber (line 821) | @Override
method writeNumber (line 839) | @Override
method writeNumber (line 857) | @Override
method writeNumber (line 880) | @Override
method writeOmittedProperty (line 907) | @Override
method _verifyValueWrite (line 935) | @Override
method _releaseBuffers (line 946) | @Override
method _reportCsvWriteError (line 962) | protected void _reportCsvWriteError(String msg) throws JacksonException {
method _columnIndex (line 972) | protected final int _columnIndex()
method finishRow (line 986) | protected void finishRow() throws JacksonException
method _handleFirstLine (line 993) | protected void _handleFirstLine() throws JacksonException
method _addToArray (line 1008) | protected void _addToArray(String value) {
method _addToArray (line 1016) | protected void _addToArray(char[] value) {
FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvMapper.java
class CsvMapper (line 21) | public class CsvMapper extends ObjectMapper
class Builder (line 31) | public static class Builder extends MapperBuilder<CsvMapper, Builder>
method Builder (line 33) | public Builder(CsvFactory f) {
method Builder (line 37) | public Builder(StateImpl state) {
method build (line 41) | @Override
method _saveState (line 46) | @Override
method enable (line 58) | public Builder enable(CsvReadFeature... features) {
method disable (line 65) | public Builder disable(CsvReadFeature... features) {
method configure (line 72) | public Builder configure(CsvReadFeature feature, boolean state)
method enable (line 82) | public Builder enable(CsvWriteFeature... features) {
method disable (line 89) | public Builder disable(CsvWriteFeature... features) {
method configure (line 96) | public Builder configure(CsvWriteFeature feature, boolean state)
class StateImpl (line 106) | protected static class StateImpl extends MapperBuilderState
method StateImpl (line 111) | public StateImpl(Builder src) {
method readResolve (line 117) | @Override
method CsvMapper (line 148) | public CsvMapper() {
method CsvMapper (line 152) | public CsvMapper(CsvFactory f) {
method CsvMapper (line 160) | public CsvMapper(CsvMapper.Builder b) {
method builder (line 166) | public static CsvMapper.Builder builder() {
method builder (line 170) | public static CsvMapper.Builder builder(CsvFactory streamFactory) {
method rebuild (line 174) | @SuppressWarnings("unchecked")
method shared (line 192) | public static CsvMapper shared() {
method writeReplace (line 204) | @Override
method readResolve (line 209) | @Override
method tokenStreamFactory (line 224) | @Override
method isEnabled (line 235) | public boolean isEnabled(CsvReadFeature f) {
method isEnabled (line 239) | public boolean isEnabled(CsvWriteFeature f) {
method readerWithSchemaFor (line 264) | public ObjectReader readerWithSchemaFor(Class<?> pojoType)
method readerWithTypedSchemaFor (line 285) | public ObjectReader readerWithTypedSchemaFor(Class<?> pojoType)
method writerWithSchemaFor (line 317) | public ObjectWriter writerWithSchemaFor(Class<?> pojoType)
method writerWithTypedSchemaFor (line 336) | public ObjectWriter writerWithTypedSchemaFor(Class<?> pojoType)
method schemaWithHeader (line 361) | public CsvSchema schemaWithHeader() {
method schema (line 373) | public CsvSchema schema() {
method schemaFor (line 391) | public CsvSchema schemaFor(JavaType pojoType) {
method schemaForWithView (line 395) | public CsvSchema schemaForWithView(JavaType pojoType, Class<?> view) {
method schemaFor (line 399) | public final CsvSchema schemaFor(Class<?> pojoType) {
method schemaForWithView (line 403) | public final CsvSchema schemaForWithView(Class<?> pojoType, Class<?> v...
method schemaFor (line 407) | public final CsvSchema schemaFor(TypeReference<?> pojoTypeRef) {
method schemaForWithView (line 411) | public final CsvSchema schemaForWithView(TypeReference<?> pojoTypeRef,...
method typedSchemaFor (line 430) | public CsvSchema typedSchemaFor(JavaType pojoType) {
method typedSchemaForWithView (line 434) | public CsvSchema typedSchemaForWithView(JavaType pojoType, Class<?> vi...
method typedSchemaFor (line 438) | public final CsvSchema typedSchemaFor(Class<?> pojoType) {
method typedSchemaForWithView (line 442) | public final CsvSchema typedSchemaForWithView(Class<?> pojoType, Class...
method typedSchemaFor (line 446) | public final CsvSchema typedSchemaFor(TypeReference<?> pojoTypeRef) {
method typedSchemaForWithView (line 450) | public final CsvSchema typedSchemaForWithView(TypeReference<?> pojoTyp...
method _schemaFor (line 460) | protected CsvSchema _schemaFor(JavaType pojoType, SimpleLookupCache<Vi...
method _nonPojoType (line 477) | protected boolean _nonPojoType(JavaType t)
method _addSchemaProperties (line 505) | protected void _addSchemaProperties(SerializationContext ctxt, CsvSche...
method _determineType (line 563) | protected CsvSchema.ColumnType _determineType(Class<?> propType)
class ViewKey (line 609) | public static final class ViewKey
method ViewKey (line 619) | public ViewKey(final JavaType pojoType, final Class<?> view)
method hashCode (line 627) | @Override
method equals (line 630) | @Override
method toString (line 640) | @Override
class SharedWrapper (line 652) | private final static class SharedWrapper {
method wrapped (line 655) | public static CsvMapper wrapped() { return MAPPER; }
FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvParser.java
class CsvParser (line 32) | public class CsvParser
method CsvParser (line 248) | public CsvParser(ObjectReadContext readCtxt, IOContext ioCtxt,
method version (line 276) | @Override
method canReadObjectId (line 287) | @Override
method canReadTypeId (line 290) | @Override
method willInternPropertyNames (line 294) | @Override
method streamReadCapabilities (line 297) | @Override
method releaseBuffered (line 308) | @Override
method _closeInput (line 321) | @Override
method _releaseBuffers (line 326) | @Override
method isEnabled (line 372) | public boolean isEnabled(CsvReadFeature f) {
method getSchema (line 381) | @Override
method streamReadContext (line 392) | @Override
method assignCurrentValue (line 394) | @Override public void assignCurrentValue(Object v) { _streamReadContex...
method currentValue (line 395) | @Override public Object currentValue() { return _streamReadContext.cur...
method currentTokenLocation (line 397) | @Override
method currentLocation (line 402) | @Override
method streamReadInputSource (line 407) | @Override
method isExpectedStartArrayToken (line 423) | @Override
method isExpectedNumberIntToken (line 454) | @Override // since 2.12
method currentName (line 468) | @Override
method nextToken (line 473) | @Override
method nextName (line 521) | @Override
method nextName (line 537) | @Override
method nextStringValue (line 553) | @Override
method _readHeaderLine (line 586) | protected void _readHeaderLine() throws JacksonException {
method _handleStartDoc (line 716) | protected JsonToken _handleStartDoc() throws JacksonException
method _handleRecordStart (line 754) | protected JsonToken _handleRecordStart() throws JacksonException
method _handleNextEntry (line 768) | protected JsonToken _handleNextEntry() throws JacksonException
method _handleNamedValue (line 817) | protected JsonToken _handleNamedValue() throws JacksonException
method _handleUnnamedValue (line 836) | protected JsonToken _handleUnnamedValue() throws JacksonException
method _handleArrayValue (line 858) | protected JsonToken _handleArrayValue() throws JacksonException
method _handleExtraColumn (line 915) | protected JsonToken _handleExtraColumn(String value) throws JacksonExc...
method _handleMissingColumns (line 960) | protected JsonToken _handleMissingColumns() throws JacksonException
method _handleMissingName (line 978) | protected JsonToken _handleMissingName() throws JacksonException
method _handleMissingValue (line 989) | protected JsonToken _handleMissingValue() throws JacksonException
method _handleObjectRowEnd (line 1005) | protected final JsonToken _handleObjectRowEnd() throws JacksonException
method _skipUntilEndOfLine (line 1016) | protected final JsonToken _skipUntilEndOfLine() throws JacksonException
method hasStringCharacters (line 1037) | @Override
method getString (line 1045) | @Override
method getStringCharacters (line 1055) | @Override
method getStringLength (line 1063) | @Override
method getStringOffset (line 1071) | @Override
method getString (line 1076) | @Override
method getEmbeddedObject (line 1097) | @Override
method getBinaryValue (line 1103) | @SuppressWarnings("resource")
method getNumberType (line 1124) | @Override
method getNumberValue (line 1133) | @Override
method getNumberValueExact (line 1139) | @Override
method getIntValue (line 1145) | @Override
method getLongValue (line 1151) | @Override
method getBigIntegerValue (line 1157) | @Override
method getFloatValue (line 1163) | @Override
method getDoubleValue (line 1169) | @Override
method getDecimalValue (line 1175) | @Override
method isNaN (line 1182) | @Override
method _handleEOF (line 1193) | @Override
method _reportCsvReadError (line 1209) | public <T> T _reportCsvReadError(String msg, Object... args) throws Ja...
method _reportUnexpectedCsvChar (line 1216) | public <T> T _reportUnexpectedCsvChar(int ch, String msg) throws Jack...
method _reportError (line 1220) | @Override // just to make visible to decoder
method _wrapIOFailure (line 1225) | @Override // just to make visible to decoder
method _verifyNumberToken (line 1230) | protected void _verifyNumberToken() throws JacksonException {
method _reportNotNumericError (line 1236) | protected <T> T _reportNotNumericError() throws JacksonException {
method _setSchema (line 1248) | protected void _setSchema(CsvSchema schema)
method _getByteArrayBuilder (line 1260) | public ByteArrayBuilder _getByteArrayBuilder()
method _startArray (line 1270) | protected void _startArray(CsvSchema.Column column)
method _isNullValue (line 1291) | protected boolean _isNullValue(String value) {
FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvReadException.java
class CsvReadException (line 14) | public class CsvReadException
method CsvReadException (line 21) | public CsvReadException(CsvParser p, String msg, CsvSchema schema) {
method from (line 26) | public static CsvReadException from(CsvParser p, String msg, CsvSchema...
method getSchema (line 30) | public CsvSchema getSchema() { return _schema; }
FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvReadFeature.java
type CsvReadFeature (line 10) | public enum CsvReadFeature
method collectDefaults (line 241) | public static int collectDefaults()
method CsvReadFeature (line 252) | private CsvReadFeature(boolean defaultState) {
method enabledByDefault (line 257) | @Override
method enabledIn (line 259) | @Override
method getMask (line 261) | @Override
FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvSchema.java
class CsvSchema (line 88) | public class CsvSchema
type ColumnType (line 178) | public enum ColumnType
class Column (line 243) | public static class Column implements java.io.Serializable
method Column (line 268) | public Column(int index, String name) {
method Column (line 272) | public Column(int index, String name, ColumnType type) {
method Column (line 276) | public Column(int index, String name, ColumnType type, String arrayE...
method Column (line 286) | public Column(Column src, Column next) {
method Column (line 290) | protected Column(Column src, int index, Column next) {
method Column (line 294) | protected Column(Column src, CsvValueDecorator valueDecorator) {
method Column (line 298) | protected Column(Column src, int index, CsvValueDecorator valueDecor...
method withName (line 309) | public Column withName(String newName) {
method withType (line 316) | public Column withType(ColumnType newType) {
method withArrayElementSeparator (line 323) | public Column withArrayElementSeparator(String separator) {
method withValueDecorator (line 331) | public Column withValueDecorator(CsvValueDecorator valueDecorator) {
method withNext (line 338) | public Column withNext(Column next) {
method withNext (line 345) | public Column withNext(int index, Column next) {
method getIndex (line 352) | public int getIndex() { return _index; }
method getName (line 353) | public String getName() { return _name; }
method getType (line 354) | public ColumnType getType() { return _type; }
method getNext (line 356) | public Column getNext() { return _next; }
method getNextWithName (line 362) | public Column getNextWithName(String name) {
method hasName (line 369) | public boolean hasName(String n) {
method getArrayElementSeparator (line 373) | public String getArrayElementSeparator() { return _arrayElementSepar...
method getValueDecorator (line 375) | public CsvValueDecorator getValueDecorator() { return _valueDecorato...
method isArray (line 377) | public boolean isArray() {
class Builder (line 385) | public static class Builder
method Builder (line 419) | public Builder() { }
method Builder (line 425) | public Builder(CsvSchema src)
method addColumn (line 444) | public Builder addColumn(String name) {
method addColumn (line 458) | public Builder addColumn(String name, UnaryOperator<Column> transfor...
method addColumn (line 467) | public Builder addColumn(String name, ColumnType type) {
method addColumn (line 482) | public Builder addColumn(String name, ColumnType type,
method addColumn (line 492) | public Builder addColumn(Column c) {
method addColumns (line 501) | public Builder addColumns(Iterable<Column> cs) {
method addColumns (line 512) | public Builder addColumns(Iterable<String> names, ColumnType type) {
method addColumnsFrom (line 526) | public Builder addColumnsFrom(CsvSchema schema) {
method addArrayColumn (line 536) | public Builder addArrayColumn(String name) {
method addArrayColumn (line 544) | public Builder addArrayColumn(String name, String elementSeparator) {
method addNumberColumn (line 548) | public Builder addNumberColumn(String name) {
method addBooleanColumn (line 552) | public Builder addBooleanColumn(String name) {
method renameColumn (line 557) | public Builder renameColumn(int index, String newName) {
method replaceColumn (line 563) | public Builder replaceColumn(int index, Column c) {
method removeColumn (line 572) | public Builder removeColumn(int index) {
method dropLastColumnIfEmpty (line 585) | public void dropLastColumnIfEmpty() {
method setColumnType (line 594) | public Builder setColumnType(int index, ColumnType type) {
method removeArrayElementSeparator (line 600) | public Builder removeArrayElementSeparator(int index) {
method setArrayElementSeparator (line 609) | public Builder setArrayElementSeparator(int index, String sep) {
method setAnyPropertyName (line 615) | public Builder setAnyPropertyName(String name) {
method clearColumns (line 620) | public Builder clearColumns() {
method size (line 625) | public int size() {
method getColumns (line 629) | public Iterator<Column> getColumns() {
method hasColumn (line 642) | public boolean hasColumn(String name) {
method setUseHeader (line 664) | public Builder setUseHeader(boolean b) {
method setReorderColumns (line 683) | public Builder setReorderColumns(boolean b) {
method setStrictHeaders (line 698) | public Builder setStrictHeaders(boolean b) {
method setSkipFirstDataRow (line 708) | public Builder setSkipFirstDataRow(boolean b) {
method setAllowComments (line 720) | public Builder setAllowComments(boolean b) {
method _feature (line 725) | protected final void _feature(int feature, boolean state) {
method setColumnSeparator (line 734) | public Builder setColumnSeparator(char c) {
method setArrayElementSeparator (line 746) | public Builder setArrayElementSeparator(String separator) {
method disableArrayElementSeparator (line 754) | public Builder disableArrayElementSeparator() {
method setQuoteChar (line 765) | public Builder setQuoteChar(char c) {
method disableQuoteChar (line 773) | public Builder disableQuoteChar() {
method setEscapeChar (line 783) | public Builder setEscapeChar(char c) {
method disableEscapeChar (line 792) | public Builder disableEscapeChar() {
method setLineSeparator (line 797) | public Builder setLineSeparator(String lf) {
method setLineSeparator (line 802) | public Builder setLineSeparator(char lf) {
method setNullValue (line 807) | public Builder setNullValue(String nvl) {
method setNullValue (line 811) | public Builder setNullValue(char[] nvl) {
method build (line 816) | public CsvSchema build()
method _checkIndex (line 825) | protected void _checkIndex(int index) {
method CsvSchema (line 886) | public CsvSchema(Column[] columns, int features,
method CsvSchema (line 921) | protected CsvSchema(Column[] columns, int features,
method CsvSchema (line 943) | protected CsvSchema(CsvSchema base, Column[] columns)
method CsvSchema (line 971) | protected CsvSchema(CsvSchema base, int features) {
method _link (line 988) | private static Column[] _link(Column[] orig)
method builder (line 1001) | public static Builder builder() {
method emptySchema (line 1023) | public static CsvSchema emptySchema() {
method rebuild (line 1031) | public Builder rebuild() {
method withUseHeader (line 1041) | public CsvSchema withUseHeader(boolean state) {
method withColumnReordering (line 1067) | public CsvSchema withColumnReordering(boolean state) {
method withStrictHeaders (line 1080) | public CsvSchema withStrictHeaders(boolean state) {
method withHeader (line 1109) | public CsvSchema withHeader() {
method withoutHeader (line 1117) | public CsvSchema withoutHeader() {
method withSkipFirstDataRow (line 1121) | public CsvSchema withSkipFirstDataRow(boolean state) {
method withAllowComments (line 1131) | public CsvSchema withAllowComments(boolean state) {
method withComments (line 1141) | public CsvSchema withComments() {
method withoutComments (line 1151) | public CsvSchema withoutComments() {
method _withFeature (line 1155) | protected CsvSchema _withFeature(int feature, boolean state) {
method withColumnSeparator (line 1160) | public CsvSchema withColumnSeparator(char sep) {
method withQuoteChar (line 1167) | public CsvSchema withQuoteChar(char c) {
method withoutQuoteChar (line 1174) | public CsvSchema withoutQuoteChar() {
method withEscapeChar (line 1181) | public CsvSchema withEscapeChar(char c) {
method withoutEscapeChar (line 1188) | public CsvSchema withoutEscapeChar() {
method withArrayElementSeparator (line 1198) | public CsvSchema withArrayElementSeparator(String separator) {
method withoutArrayElementSeparator (line 1209) | public CsvSchema withoutArrayElementSeparator() {
method withLineSeparator (line 1216) | public CsvSchema withLineSeparator(String sep) {
method withNullValue (line 1225) | public CsvSchema withNullValue(String nvl) {
method withoutColumns (line 1233) | public CsvSchema withoutColumns() {
method withColumnsFrom (line 1254) | public CsvSchema withColumnsFrom(CsvSchema toAppend) {
method withColumn (line 1285) | public CsvSchema withColumn(String columnName, UnaryOperator<Column> t...
method withColumn (line 1314) | public CsvSchema withColumn(int columnIndex, UnaryOperator<Column> tra...
method _withColumn (line 1329) | protected CsvSchema _withColumn(int ix, Column toReplace) {
method withAnyPropertyName (line 1343) | public CsvSchema withAnyPropertyName(String name) {
method sortedBy (line 1364) | public CsvSchema sortedBy(String... columnNames)
method sortedBy (line 1385) | public CsvSchema sortedBy(Comparator<String> cmp) {
method getSchemaType (line 1399) | @Override
method usesHeader (line 1410) | public boolean usesHeader() { return (_features & ENCODING_FEATURE_USE...
method reordersColumns (line 1418) | public boolean reordersColumns() { return (_features & ENCODING_FEATUR...
method skipsFirstDataRow (line 1419) | public boolean skipsFirstDataRow() { return (_features & ENCODING_FEAT...
method allowsComments (line 1420) | public boolean allowsComments() { return (_features & ENCODING_FEATURE...
method strictHeaders (line 1421) | public boolean strictHeaders() { return (_features & ENCODING_FEATURE_...
method getColumnSeparator (line 1423) | public char getColumnSeparator() { return _columnSeparator; }
method getArrayElementSeparator (line 1424) | public String getArrayElementSeparator() { return _arrayElementSeparat...
method getQuoteChar (line 1425) | public int getQuoteChar() { return _quoteChar; }
method getEscapeChar (line 1426) | public int getEscapeChar() { return _escapeChar; }
method getLineSeparator (line 1428) | public char[] getLineSeparator() { return _lineSeparator; }
method getNullValue (line 1436) | public char[] getNullValue() { return _nullValue; }
method getNullValueOrEmpty (line 1444) | public char[] getNullValueOrEmpty() {
method getNullValueString (line 1454) | public String getNullValueString() {
method usesQuoteChar (line 1466) | public boolean usesQuoteChar() { return _quoteChar >= 0; }
method usesEscapeChar (line 1467) | public boolean usesEscapeChar() { return _escapeChar >= 0; }
method hasArrayElementSeparator (line 1472) | public boolean hasArrayElementSeparator() { return !_arrayElementSepar...
method getAnyPropertyName (line 1477) | public String getAnyPropertyName() { return _anyPropertyName; }
method iterator (line 1485) | @Override
method size (line 1495) | public int size() { return _columns.length; }
method column (line 1503) | public Column column(int index) {
method columnIndex (line 1515) | public int columnIndex(String name) {
method columnName (line 1523) | public String columnName(int index) {
method column (line 1527) | public Column column(String name) {
method columnIgnoreCase (line 1540) | public Column columnIgnoreCase(String name) {
method column (line 1560) | public Column column(String name, int probableIndex) {
method getColumnNames (line 1576) | public List<String> getColumnNames() {
method getColumnNames (line 1586) | public Collection<String> getColumnNames(Collection<String> names) {
method getColumnDesc (line 1598) | public String getColumnDesc()
method toString (line 1620) | @Override
method _validArrayElementSeparator (line 1660) | protected static String _validArrayElementSeparator(String sep) {
FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvValueDecorator.java
type CsvValueDecorator (line 17) | public interface CsvValueDecorator
method decorateValue (line 34) | public String decorateValue(CsvGenerator gen, String plainValue)
method decorateNull (line 52) | public default String decorateNull(CsvGenerator gen)
method undecorateValue (line 75) | public String undecorateValue(CsvParser parser, String decoratedValue)
FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvValueDecorators.java
class CsvValueDecorators (line 12) | public class CsvValueDecorators
method optionalPrefixSuffixDecorator (line 34) | public static CsvValueDecorator optionalPrefixSuffixDecorator(String p...
method requiredPrefixSuffixDecorator (line 42) | public static CsvValueDecorator requiredPrefixSuffixDecorator(String p...
class StringPrefixSuffixDecorator (line 53) | public static class StringPrefixSuffixDecorator
method StringPrefixSuffixDecorator (line 76) | public StringPrefixSuffixDecorator(String prefix, String suffix, boo...
method decorateValue (line 82) | @Override
method undecorateValue (line 92) | @Override
FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvWriteException.java
class CsvWriteException (line 10) | public class CsvWriteException
method CsvWriteException (line 17) | public CsvWriteException(CsvGenerator gen, String msg, CsvSchema schem...
method from (line 22) | public static CsvWriteException from(CsvGenerator gen, String msg, Csv...
method getSchema (line 26) | public CsvSchema getSchema() { return _schema; }
FILE: csv/src/main/java/tools/jackson/dataformat/csv/CsvWriteFeature.java
type CsvWriteFeature (line 10) | public enum CsvWriteFeature
method collectDefaults (line 121) | public static int collectDefaults()
method CsvWriteFeature (line 132) | private CsvWriteFeature(boolean defaultState) {
method enabledIn (line 137) | @Override
method enabledByDefault (line 139) | @Override
method getMask (line 141) | @Override
FILE: csv/src/main/java/tools/jackson/dataformat/csv/impl/BufferedValue.java
class BufferedValue (line 9) | public abstract class BufferedValue
method BufferedValue (line 11) | protected BufferedValue() { }
method write (line 13) | public abstract void write(CsvEncoder w) throws JacksonException;
method buffered (line 15) | public static BufferedValue buffered(String v) { return new TextValue(...
method bufferedRaw (line 16) | public static BufferedValue bufferedRaw(String v) { return new RawValu...
method buffered (line 17) | public static BufferedValue buffered(int v) { return new IntValue(v); }
method buffered (line 18) | public static BufferedValue buffered(long v) { return new LongValue(v); }
method buffered (line 19) | public static BufferedValue buffered(float v) { return new FloatValue(...
method buffered (line 20) | public static BufferedValue buffered(double v) { return new DoubleValu...
method bufferedNumber (line 21) | public static BufferedValue bufferedNumber(String numStr) { return new...
method buffered (line 22) | public static BufferedValue buffered(boolean v) {
method bufferedNull (line 26) | public static BufferedValue bufferedNull() {
class TextValue (line 30) | protected final static class TextValue extends BufferedValue
method TextValue (line 34) | public TextValue(String v) { _value = v; }
method write (line 36) | @Override
class RawValue (line 45) | protected final static class RawValue extends BufferedValue
method RawValue (line 49) | public RawValue(String v) { _value = v; }
method write (line 51) | @Override
class IntValue (line 57) | protected final static class IntValue extends BufferedValue
method IntValue (line 61) | public IntValue(int v) { _value = v; }
method write (line 63) | @Override
class LongValue (line 69) | protected final static class LongValue extends BufferedValue
method LongValue (line 73) | public LongValue(long v) { _value = v; }
method write (line 75) | @Override
class FloatValue (line 82) | protected final static class FloatValue extends BufferedValue
method FloatValue (line 86) | public FloatValue(float v) { _value = v; }
method write (line 88) | @Override
class DoubleValue (line 94) | protected final static class DoubleValue extends BufferedValue
method DoubleValue (line 98) | public DoubleValue(double v) { _value = v; }
method write (line 100) | @Override
class BigNumberValue (line 106) | protected final static class BigNumberValue extends BufferedValue
method BigNumberValue (line 110) | public BigNumberValue(String v) { _value = v; }
method write (line 112) | @Override
class BooleanValue (line 118) | protected final static class BooleanValue extends BufferedValue
method BooleanValue (line 125) | public BooleanValue(boolean v) { _value = v; }
method write (line 127) | @Override
class NullValue (line 133) | protected final static class NullValue extends BufferedValue {
method NullValue (line 136) | private NullValue() { }
method write (line 138) | @Override
FILE: csv/src/main/java/tools/jackson/dataformat/csv/impl/CsvDecoder.java
class CsvDecoder (line 26) | public class CsvDecoder
method CsvDecoder (line 312) | public CsvDecoder(IOContext ctxt, CsvParser owner, Reader r,
method setSchema (line 332) | public void setSchema(CsvSchema schema) {
method getInputSource (line 352) | public Object getInputSource() {
method close (line 356) | public void close() throws IOException {
method releaseBuffered (line 369) | public int releaseBuffered(Writer out) throws IOException {
method childArrayContext (line 380) | public SimpleStreamReadContext childArrayContext(SimpleStreamReadConte...
method childObjectContext (line 385) | public SimpleStreamReadContext childObjectContext(SimpleStreamReadCont...
method getTokenLocation (line 390) | public TokenStreamLocation getTokenLocation()
method getCurrentLocation (line 397) | public TokenStreamLocation getCurrentLocation() {
method getCurrentRow (line 409) | public final int getCurrentRow() {
method getCurrentColumn (line 413) | public final int getCurrentColumn() {
method isCurrentTokenQuoted (line 429) | public final boolean isCurrentTokenQuoted() {
method getTokenCharacterOffset (line 439) | protected final long getTokenCharacterOffset() {
method getTokenLineNr (line 443) | protected final int getTokenLineNr() {
method getTokenColumnNr (line 447) | protected final int getTokenColumnNr() {
method releaseBuffers (line 453) | protected void releaseBuffers() throws JacksonException {
method _closeInput (line 462) | protected void _closeInput() throws IOException {
method loadMore (line 480) | protected final boolean loadMore() throws JacksonException {
method getText (line 515) | public String getText() throws JacksonException {
method hasMoreInput (line 523) | public boolean hasMoreInput() throws JacksonException {
method startNewLine (line 536) | public boolean startNewLine() throws JacksonException {
method skipLinesWhenNeeded (line 554) | public boolean skipLinesWhenNeeded() throws JacksonException {
method _skipCommentLines (line 586) | public boolean _skipCommentLines() throws JacksonException
method _skipCommentContents (line 618) | protected void _skipCommentContents() throws JacksonException
method _trySkipEmptyRow (line 644) | protected boolean _trySkipEmptyRow() throws JacksonException
method skipLine (line 682) | public boolean skipLine() throws JacksonException {
method nextString (line 709) | public String nextString() throws JacksonException {
method nextStringOrLiteral (line 863) | public JsonToken nextStringOrLiteral() throws JacksonException {
method nextNumber (line 873) | public JsonToken nextNumber() throws JacksonException {
method nextNumberOrString (line 883) | public JsonToken nextNumberOrString() throws JacksonException {
method _nextUnquotedString (line 899) | protected String _nextUnquotedString(char[] outBuf, int outPtr) throws...
method _nextQuotedString (line 944) | protected String _nextQuotedString() throws JacksonException {
method _handleLF (line 1050) | protected final void _handleLF() throws JacksonException
method _unescape (line 1065) | protected char _unescape() throws JacksonException {
method _nextChar (line 1087) | protected final int _nextChar() throws JacksonException {
method _skipLeadingSpace (line 1096) | protected final int _skipLeadingSpace() throws JacksonException {
method isExpectedNumberIntToken (line 1126) | public boolean isExpectedNumberIntToken() throws JacksonException
method getNumberValue (line 1140) | public Number getNumberValue(boolean exact) throws JacksonException
method getNumberType (line 1166) | public NumberType getNumberType() throws JacksonException {
method getIntValue (line 1190) | public int getIntValue() throws JacksonException {
method getLongValue (line 1202) | public long getLongValue() throws JacksonException {
method getBigIntegerValue (line 1214) | public BigInteger getBigIntegerValue() throws JacksonException {
method getFloatValue (line 1226) | public float getFloatValue() throws JacksonException {
method getDoubleValue (line 1232) | public double getDoubleValue() throws JacksonException {
method getDecimalValue (line 1244) | public BigDecimal getDecimalValue() throws JacksonException {
method _getBigInteger (line 1260) | protected BigInteger _getBigInteger() throws JacksonException {
method _getBigDecimal (line 1277) | protected BigDecimal _getBigDecimal() throws JacksonException {
method _parseNumericValue (line 1305) | protected void _parseNumericValue(boolean exactNumber)
method looksLikeInt (line 1322) | private boolean looksLikeInt() throws JacksonException {
method _parseIntValue (line 1348) | protected void _parseIntValue() throws JacksonException
method _parseSlowFloatValue (line 1399) | private final void _parseSlowFloatValue(boolean exactNumber)
method _parseSlowIntValue (line 1425) | private final void _parseSlowIntValue(char[] buf, int offset, int len,
method convertNumberToInt (line 1453) | protected void convertNumberToInt() throws JacksonException {
method convertNumberToLong (line 1489) | protected void convertNumberToLong() throws JacksonException {
method convertNumberToBigInteger (line 1519) | protected void convertNumberToBigInteger()
method convertNumberToDouble (line 1538) | protected void convertNumberToDouble()
method convertNumberToBigDecimal (line 1560) | protected void convertNumberToBigDecimal() throws JacksonException {
method reportUnexpectedNumberChar (line 1586) | protected void reportUnexpectedNumberChar(int ch, String comment)
method reportInvalidNumber (line 1596) | protected void reportInvalidNumber(String msg) throws StreamReadExcept...
method reportOverflowInt (line 1600) | protected void reportOverflowInt() throws StreamReadException {
method reportOverflowLong (line 1604) | protected void reportOverflowLong() throws StreamReadException {
method _constructReadException (line 1608) | protected final StreamReadException _constructReadException(Throwable ...
method _getCharDesc (line 1612) | protected final static String _getCharDesc(int ch) {
method _throwInternal (line 1623) | private void _throwInternal() {
method _reportError (line 1630) | protected final void _reportError(String msg) throws StreamReadExcepti...
FILE: csv/src/main/java/tools/jackson/dataformat/csv/impl/CsvEncoder.java
class CsvEncoder (line 24) | public class CsvEncoder
method CsvEncoder (line 201) | public CsvEncoder(IOContext ctxt, int csvFeatures, Writer out, CsvSche...
method CsvEncoder (line 248) | @Deprecated // @since 3.2
method CsvEncoder (line 256) | public CsvEncoder(CsvEncoder base, CsvSchema newSchema)
method _verifyConfiguration (line 297) | private void _verifyConfiguration(CsvSchema schema)
method _getQuoteCharEscapeChar (line 311) | private final char _getQuoteCharEscapeChar(
method _calcSafeChar (line 331) | private final int _calcSafeChar()
method withSchema (line 345) | public CsvEncoder withSchema(CsvSchema schema) {
method setOutputEscapes (line 349) | public CsvEncoder setOutputEscapes(int[] esc) {
method getOutputTarget (line 360) | public Object getOutputTarget() {
method getOutputBuffered (line 369) | public int getOutputBuffered() {
method nextColumnIndex (line 373) | public int nextColumnIndex() {
method write (line 383) | public final void write(int columnIndex, String value) throws JacksonE...
method write (line 410) | public final void write(int columnIndex, char[] ch, int offset, int le...
method write (line 416) | public final void write(int columnIndex, int value) throws JacksonExce...
method write (line 441) | public final void write(int columnIndex, long value) throws JacksonExc...
method write (line 466) | public final void write(int columnIndex, BigInteger value) throws Jack...
method write (line 478) | public final void write(int columnIndex, float value) throws JacksonEx...
method write (line 489) | public final void write(int columnIndex, double value) throws JacksonE...
method write (line 500) | public final void write(int columnIndex, BigDecimal value, boolean pla...
method write (line 513) | public final void write(int columnIndex, boolean value) throws Jackson...
method writeNonEscaped (line 524) | public final void writeNonEscaped(int columnIndex, String rawValue) th...
method writeNull (line 534) | public final void writeNull(int columnIndex) throws JacksonException
method writeColumnName (line 544) | public final void writeColumnName(String name) throws JacksonException
method endRow (line 550) | public void endRow() throws JacksonException
method appendValue (line 593) | protected void appendValue(String value) throws JacksonException
method appendRawValue (line 615) | protected void appendRawValue(String value) throws JacksonException
method appendValue (line 626) | protected void appendValue(int value) throws JacksonException
method appendValue (line 644) | protected void appendValue(long value) throws JacksonException
method appendValue (line 662) | protected void appendValue(float value) throws JacksonException
method appendValue (line 675) | protected void appendValue(double value) throws JacksonException
method appendNumberValue (line 689) | protected void appendNumberValue(String numStr) throws JacksonException
method appendValue (line 701) | protected void appendValue(boolean value) throws JacksonException {
method appendNull (line 705) | protected void appendNull() throws JacksonException {
method _append (line 709) | protected void _append(char[] ch) throws JacksonException {
method appendColumnSeparator (line 723) | protected void appendColumnSeparator() throws JacksonException {
method writeRaw (line 736) | public void writeRaw(String text) throws JacksonException
method writeRaw (line 755) | public void writeRaw(String text, int start, int len) throws JacksonEx...
method writeRaw (line 773) | public void writeRaw(char[] text, int offset, int len) throws JacksonE...
method writeRaw (line 794) | public void writeRaw(char c) throws JacksonException
method writeRawLong (line 802) | private void writeRawLong(String text) throws JacksonException
method writeNumber (line 826) | private void writeNumber(String text) throws JacksonException
method _writeQuoted (line 850) | public void _writeQuoted(String text) throws JacksonException
method _writeQuoted (line 895) | protected void _writeQuoted(String text, char q, int i) throws Jackson...
method _writeLongQuoted (line 931) | private final void _writeLongQuoted(String text, char q) throws Jackso...
method _writeQuotedAndEscaped (line 964) | public void _writeQuotedAndEscaped(String text, char esc) throws Jacks...
method _writeQuotedAndEscaped (line 1001) | protected void _writeQuotedAndEscaped(String text, char q, char esc, i...
method _writeLongQuotedAndEscaped (line 1044) | private final void _writeLongQuotedAndEscaped(String text, char esc) t...
method flush (line 1093) | public void flush(boolean flushStream) throws IOException
method close (line 1101) | public void close(boolean autoClose, boolean flushStream) throws IOExc...
method _removeTrailingLF (line 1122) | private void _removeTrailingLF() throws IOException {
method _mayNeedQuotes (line 1141) | protected boolean _mayNeedQuotes(String value, int length, int columnI...
method _needsQuotingLoose (line 1183) | protected final boolean _needsQuotingLoose(String value)
method _needsQuotingLoose (line 1199) | protected final boolean _needsQuotingLoose(String value, int esc)
method _needsQuotingStrict (line 1210) | protected boolean _needsQuotingStrict(String value)
method _needsQuotingStrict (line 1239) | protected boolean _needsQuotingStrict(String value, int esc)
method _buffer (line 1270) | protected void _buffer(int index, BufferedValue v)
method _flushBuffer (line 1279) | protected void _flushBuffer() throws JacksonException
method _releaseBuffers (line 1292) | public void _releaseBuffers()
method _appendCharacterEscape (line 1305) | private void _appendCharacterEscape(char ch, int escCode)
method _wrapIOFailure (line 1342) | protected JacksonException _wrapIOFailure(IOException e) {
FILE: csv/src/main/java/tools/jackson/dataformat/csv/impl/CsvParserBootstrapper.java
class CsvParserBootstrapper (line 24) | public final class CsvParserBootstrapper
method CsvParserBootstrapper (line 83) | public CsvParserBootstrapper(IOContext ctxt, InputStream in)
method CsvParserBootstrapper (line 92) | public CsvParserBootstrapper(IOContext ctxt,
method constructParser (line 110) | public CsvParser constructParser(ObjectReadContext readCtxt,
method _createReader (line 166) | @SuppressWarnings("resource")
method handleBOM (line 216) | private boolean handleBOM(int quad) throws JacksonException
method checkUTF32 (line 260) | private boolean checkUTF32(int quad) throws JacksonException
method checkUTF16 (line 283) | private boolean checkUTF16(int i16)
method reportWeirdUCS4 (line 304) | private void reportWeirdUCS4(String type) throws JacksonException {
method ensureLoaded (line 314) | protected boolean ensureLoaded(int minimum) throws JacksonException
method _createIOFailure (line 347) | private static JacksonException _createIOFailure(String msg) throws Ja...
method _wrapIOFailure (line 354) | private static JacksonException _wrapIOFailure(IOException e) throws J...
FILE: csv/src/main/java/tools/jackson/dataformat/csv/impl/UTF8Reader.java
class UTF8Reader (line 14) | public final class UTF8Reader
method UTF8Reader (line 78) | public UTF8Reader(IOContext ctxt, InputStream in, boolean autoClose,
method UTF8Reader (line 93) | public UTF8Reader(IOContext ctxt, byte[] buf, int ptr, int len)
method UTF8Reader (line 106) | public UTF8Reader(IOContext ctxt, InputStream in, boolean autoClose)
method close (line 125) | @Override
method read (line 146) | @Override
method read (line 158) | @Override
method read (line 163) | @Override
method getStream (line 344) | protected final InputStream getStream() { return _inputSource; }
method readBytes (line 350) | protected final int readBytes()
method readBytesAt (line 372) | protected final int readBytesAt(int offset)
method freeBuffers (line 391) | public final void freeBuffers()
method loadMore (line 414) | private boolean loadMore(int available) throws IOException
method reportBounds (line 483) | protected void reportBounds(char[] cbuf, int start, int len) throws IO...
method reportStrangeStream (line 487) | protected void reportStrangeStream() throws IOException {
method reportInvalidInitial (line 491) | protected void reportInvalidInitial(int mask, int outputDecoded) throw...
method reportInvalidOther (line 511) | protected void reportInvalidOther(int mask, int outputDecoded, int err...
method reportDeferredInvalid (line 530) | protected void reportDeferredInvalid() throws IOException
method reportUnexpectedEOF (line 540) | protected void reportUnexpectedEOF(int gotBytes, int needed) throws IO...
FILE: csv/src/main/java/tools/jackson/dataformat/csv/impl/UTF8Writer.java
class UTF8Writer (line 13) | public final class UTF8Writer
method UTF8Writer (line 38) | public UTF8Writer(IOContext ctxt, OutputStream out)
method append (line 50) | @Override
method close (line 57) | @Override
method flush (line 87) | @Override
method write (line 99) | @Override
method write (line 104) | @Override
method write (line 200) | @Override
method write (line 246) | @Override
method write (line 251) | @Override
method convertSurrogate (line 356) | private int convertSurrogate(int secondPart) throws IOException
method throwIllegal (line 368) | private void throwIllegal(int code) throws IOException
FILE: csv/src/test/java/perf/BogusOutputStream.java
class BogusOutputStream (line 6) | public class BogusOutputStream extends OutputStream
method write (line 10) | @Override
method write (line 12) | @Override
method write (line 17) | @Override
method length (line 22) | public int length() { return _bytes; }
FILE: csv/src/test/java/perf/F5500Entry.java
class F5500Entry (line 8) | public class F5500Entry
FILE: csv/src/test/java/perf/F5500Reader.java
class F5500Reader (line 15) | public final class F5500Reader
method main (line 17) | public static void main(String[] args) throws Exception
method read (line 26) | private void read(File inputFile) throws IOException, InterruptedExcep...
method readAll (line 41) | private <T> int readAll(File inputFile, Class<T> cls) throws IOException
FILE: csv/src/test/java/perf/ManualPerfComparison.java
class ManualPerfComparison (line 17) | @SuppressWarnings("resource")
method ManualPerfComparison (line 26) | public ManualPerfComparison()
method readCsv (line 40) | private RequestEntry[] readCsv(byte[] csvInput) throws IOException
method writeAsJson (line 50) | private byte[] writeAsJson(RequestEntry[] entries) throws IOException
method test (line 61) | private void test(byte[] csvInput) throws IOException
method testJsonRead (line 115) | private final long testJsonRead(int REPS, byte[] input) throws IOExcep...
method testCsvRead (line 128) | private final long testCsvRead(int REPS, byte[] input) throws IOException
method testJsonWrite (line 140) | private final long testJsonWrite(int REPS, RequestEntry[] entries) thr...
method testCsvWrite (line 153) | private final long testCsvWrite(int REPS, RequestEntry[] entries) thro...
method main (line 166) | public static void main(String[] args) throws IOException
method readAll (line 175) | public static byte[] readAll(String filename) throws IOException
FILE: csv/src/test/java/perf/RequestEntry.java
class RequestEntry (line 5) | public class RequestEntry
FILE: csv/src/test/java/tools/jackson/dataformat/csv/CSVFactoryFeaturesTest.java
class CSVFactoryFeaturesTest (line 17) | public class CSVFactoryFeaturesTest extends ModuleTestBase
method testFactoryFeatures (line 19) | @Test
method testFactoryFastFeatures (line 41) | @Test
method testFactoryFastBigNumberFeature (line 59) | @Test
method testFactoryBuilderFastFeatures (line 73) | @Test
method testFactoryBuilderFastBigNumberFeature (line 92) | @Test
method testFormatFeatureDefaults (line 107) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ModuleTestBase.java
class ModuleTestBase (line 14) | public abstract class ModuleTestBase
type Gender (line 16) | public enum Gender { MALE, FEMALE }
class Address (line 18) | public static class Address {
method Address (line 23) | public Address(String streetName, String city) {
method getStreetName (line 28) | public String getStreetName() {
method setStreetName (line 32) | public void setStreetName(String streetName) {
method getCity (line 36) | public String getCity() {
method setCity (line 40) | public void setCity(String city) {
class LocalizedValue (line 45) | public static class LocalizedValue {
method LocalizedValue (line 48) | public LocalizedValue(String value) {
method getValue (line 52) | public String getValue() {
method setValue (line 56) | public void setValue(String value) {
class FiveMinuteUser (line 64) | @JsonPropertyOrder({"firstName", "lastName", "gender" ,"verified", "us...
method FiveMinuteUser (line 74) | public FiveMinuteUser() { }
method FiveMinuteUser (line 76) | public FiveMinuteUser(String first, String last, boolean verified, G...
method isVerified (line 85) | public boolean isVerified() { return _isVerified; }
method getGender (line 86) | public Gender getGender() { return _gender; }
method getUserImage (line 87) | public byte[] getUserImage() { return _userImage; }
method setVerified (line 89) | public void setVerified(boolean b) { _isVerified = b; }
method setGender (line 90) | public void setGender(Gender g) { _gender = g; }
method setUserImage (line 91) | public void setUserImage(byte[] b) { _userImage = b; }
method equals (line 93) | @Override
method hashCode (line 113) | @Override
class TenMinuteUser (line 120) | public static class TenMinuteUser extends FiveMinuteUser {
method TenMinuteUser (line 124) | public TenMinuteUser(String first, String last, boolean verified, Ge...
method getAddress (line 130) | public Address getAddress() {
method setAddress (line 134) | public void setAddress(Address address) {
class FifteenMinuteUser (line 139) | public static class FifteenMinuteUser extends FiveMinuteUser {
method FifteenMinuteUser (line 143) | public FifteenMinuteUser(String first, String last, boolean verified...
method getLocalizedName (line 148) | public Map<Locale, LocalizedValue> getLocalizedName() {
method setLocalizedName (line 152) | public void setLocalizedName(Map<Locale, LocalizedValue> localizedNa...
class IdDesc (line 157) | @JsonPropertyOrder({"id", "desc"})
method IdDesc (line 161) | protected IdDesc() { }
method IdDesc (line 162) | public IdDesc(String id, String desc) {
class Point (line 168) | @JsonPropertyOrder({ "x", "y" })
method Point (line 172) | protected Point() { }
method Point (line 173) | public Point(int x0, int y0) {
class Points (line 179) | public static class Points {
method Points (line 182) | protected Points() { }
method Points (line 183) | public Points(Point... p0) {
method ModuleTestBase (line 188) | protected ModuleTestBase() { }
method streamFactoryBuilder (line 196) | protected CsvFactoryBuilder streamFactoryBuilder() {
method mapperForCsv (line 200) | protected CsvMapper mapperForCsv() {
method mapperForCsv (line 204) | protected CsvMapper mapperForCsv(CsvFactory f) {
method newObjectMapper (line 208) | protected CsvMapper newObjectMapper() {
method mapperBuilder (line 212) | protected CsvMapper.Builder mapperBuilder() {
method mapperBuilder (line 216) | protected CsvMapper.Builder mapperBuilder(CsvFactory f) {
method q (line 226) | public String q(String str) {
method utf8 (line 230) | public byte[] utf8(String str) {
method a2q (line 234) | protected String a2q(String json) {
method mapOf (line 238) | protected static Map<String, Object> mapOf(Object...strings)
method assertToken (line 247) | protected void assertToken(JsonToken expToken, JsonToken actToken) {
method assertToken (line 253) | protected void assertToken(JsonToken expToken, JsonParser jp) {
method assertType (line 257) | protected void assertType(Object ob, Class<?> expType)
method getAndVerifyText (line 273) | protected String getAndVerifyText(JsonParser jp)
method verifyFieldName (line 289) | protected void verifyFieldName(JsonParser p, String expName)
method verifyIntValue (line 295) | protected void verifyIntValue(JsonParser jp, long expValue)
method verifyException (line 301) | protected void verifyException(Throwable e, String... matches)
method readResource (line 314) | protected byte[] readResource(String ref)
FILE: csv/src/test/java/tools/jackson/dataformat/csv/NullReader122Test.java
class NullReader122Test (line 12) | public class NullReader122Test extends ModuleTestBase
method testEmptyStream (line 17) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/SchemaCaching288Test.java
class SchemaCaching288Test (line 11) | public class SchemaCaching288Test extends ModuleTestBase
class ViewA (line 13) | static class ViewA { }
class ViewB (line 14) | static class ViewB { }
class Bean288 (line 16) | @JsonPropertyOrder({ "a", "aa", "b" })
method testCachingNoViewFirst (line 36) | @Test
method testCachingWithViewFirst (line 61) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/TestVersions.java
class TestVersions (line 12) | public class TestVersions extends ModuleTestBase
method testMapperVersions (line 14) | public void testMapperVersions() throws IOException
method testMapperDefaults (line 28) | public void testMapperDefaults()
method assertVersion (line 40) | private void assertVersion(Versioned vers)
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/AnySetterTest.java
class AnySetterTest (line 14) | public class AnySetterTest extends ModuleTestBase
class Entry (line 16) | static class Entry {
method set (line 22) | @JsonAnySetter
method testSimpleHeader (line 38) | @Test
method testWithMapToAny (line 52) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ArrayReadTest.java
class ArrayReadTest (line 13) | public class ArrayReadTest extends ModuleTestBase
class ValueEntry (line 15) | @JsonPropertyOrder({"id", "values", "extra"})
method ValueEntry (line 20) | @JsonCreator
method testSimpleExplicitLooseTyping (line 38) | @Test
method testSimpleExplicitLooseTypingWithQuotes (line 55) | @Test
method testSimpleExplicitStrictTyping (line 71) | @Test
method testSeparatorOverrideSpace (line 97) | @Test
method testSeparatorOverrideMulti (line 123) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/BasicCSVParserTest.java
class BasicCSVParserTest (line 19) | public class BasicCSVParserTest extends ModuleTestBase
class Point (line 21) | @JsonPropertyOrder({"x", "y", "z"})
method testSimpleExplicit (line 44) | @Test
method _testSimpleExplicit (line 52) | private void _testSimpleExplicit(ObjectReader r, boolean useBytes) thr...
method testSimpleExplicitWithBOM (line 69) | @Test
method testSimpleWithAutoSchema (line 94) | @Test
method testSimpleAsMaps (line 110) | @Test
method testMapsWithLinefeeds (line 130) | @Test
method _testMapsWithLinefeeds (line 136) | private void _testMapsWithLinefeeds(boolean useBytes) throws Exception {
method testEmptyHandlingForInteger (line 188) | @Test
method testStringNullHandlingForInteger (line 201) | @Test
method testLeadingZeroesForInts (line 214) | @Test
method testIncorrectDups41 (line 224) | @Test
method testColumnReordering (line 246) | @Test
method testColumnFailsOnOutOfOrder (line 369) | @Test
method testColumnFailsOnTooFew (line 392) | @Test
method testColumnFailsOnTooMany (line 415) | @Test
method testStrictColumnReturnsExpectedData (line 441) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/BlogPost2021AprilTest.java
class BlogPost2021AprilTest (line 17) | public class BlogPost2021AprilTest
class Point (line 20) | @JsonPropertyOrder({ "x", "y", "visible" })
method testAsListOfLists (line 35) | @Test
method testAsSequenceOfListsOfStrings (line 45) | @Test
method _assertListOfLists (line 61) | private void _assertListOfLists(List<List<String>> all) {
method testAsSequenceOfMaps (line 68) | @Test
method testAsSequenceOfPOJOsWithHeader (line 105) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/BrokenEncodingTest.java
class BrokenEncodingTest (line 15) | public class BrokenEncodingTest extends ModuleTestBase
method testLatin1AsUTF8 (line 26) | @Test
method testBrokenUTF8MiddleByte (line 65) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/CaseInsensitiveHeader657Test.java
class CaseInsensitiveHeader657Test (line 17) | public class CaseInsensitiveHeader657Test extends ModuleTestBase
method testCaseInsensitiveHeaderMatch (line 22) | @Test
method testCaseSensitiveHeaderStillFails (line 47) | @Test
method testCaseInsensitiveReorderedColumns (line 72) | @Test
method testCaseInsensitiveStillDetectsMissing (line 99) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/CommentsTest.java
class CommentsTest (line 15) | public class CommentsTest extends ModuleTestBase
method testWithoutComments (line 19) | @Test
method testSimpleComments (line 60) | @Test
method testLeadingComments (line 89) | @Test
method testCommentsWithHeaderRow (line 110) | @Test
method testSimpleCommentsWithDefaultProp (line 130) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/EmptyStringAsMissingTest.java
class EmptyStringAsMissingTest (line 16) | public class EmptyStringAsMissingTest
class PojoWithDefault (line 19) | @JsonPropertyOrder({"id", "value"})
class ThreeFields (line 25) | @JsonPropertyOrder({"firstName", "middleName", "lastName"})
method testEmptyCellUsesPOJODefault (line 41) | @Test
method testMissingColumnStillUsesDefault (line 56) | @Test
method testQuotedEmptyStringNotMissing (line 70) | @Test
method testNonEmptyValuesUnaffected (line 84) | @Test
method testEmptyMiddleCellSkipped (line 98) | @Test
method testFeatureDisabledGivesEmptyString (line 113) | @Test
method testWithFixedSchema (line 126) | @Test
method testAllColumnsEmpty (line 140) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/EmptyStringAsNullTest.java
class EmptyStringAsNullTest (line 17) | public class EmptyStringAsNullTest
class TestUser (line 20) | @JsonPropertyOrder({"firstName", "middleName", "lastName"})
method testEmptyStringAsNullDisabled (line 33) | @Test
method testEmptyStringAsNullEnabled (line 53) | @Test
method testEmptyStringAsNullNonPojo (line 78) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/EmptyUnquotedStringAsNullTest.java
class EmptyUnquotedStringAsNullTest (line 21) | public class EmptyUnquotedStringAsNullTest
class TestUser (line 24) | @JsonPropertyOrder({"firstName", "middleName", "lastName"})
method testDefaultParseAsEmptyString (line 37) | @Test
method testSimpleParseEmptyUnquotedStringAsNull (line 57) | @Test
method testSimpleParseEmptyQuotedStringAsNonNull (line 80) | @Test
method testEmptyUnquotedStringAsNullNonPojo (line 105) | @Test
method testEmptyQuotedStringAsNonNullNonPojo (line 130) | @Test
method testEmptyUnquotedStringAsNullAfterQuotedColumn615 (line 156) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/FastParserStreamingCSVReadTest.java
class FastParserStreamingCSVReadTest (line 7) | public class FastParserStreamingCSVReadTest extends StreamingCSVReadTest {
method csvMapper (line 13) | @Override
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/IgnoreUnmappableTest.java
class IgnoreUnmappableTest (line 15) | public class IgnoreUnmappableTest extends ModuleTestBase
class StringPair (line 19) | @JsonPropertyOrder({ "first", "second" })
method testSimpleIgnoral (line 24) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/IntOverflow485Test.java
class IntOverflow485Test (line 17) | public class IntOverflow485Test extends ModuleTestBase
class Numbers485 (line 20) | @JsonPropertyOrder({ "testInt", "testLong" })
method testNoOverflow485 (line 32) | @Test
method testIntOverflow (line 40) | @Test
method testLongOverflow (line 52) | @Test
method csv485 (line 65) | private static String csv485(Object intValue, Object longValue) {
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ListField199Test.java
class ListField199Test (line 15) | public class ListField199Test extends ModuleTestBase
class ModelString199 (line 18) | static class ModelString199 {
class ModelLong199 (line 26) | static class ModelLong199 {
type ABC (line 34) | enum ABC { A, B, C }
class ModelEnums199 (line 36) | static class ModelEnums199 {
method testReadEmptyStringList (line 55) | @Test
method testReadEmptyLongList (line 78) | @Test
method testReadEmptyEnumSet (line 102) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/MappingIteratorEnd9Test.java
class MappingIteratorEnd9Test (line 11) | public class MappingIteratorEnd9Test extends ModuleTestBase
method testDefaultSimpleQuotes (line 13) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/MissingColumns285Test.java
class MissingColumns285Test (line 18) | public class MissingColumns285Test extends ModuleTestBase
method testFailOnMissingWithReorder (line 36) | @Test
method testAllowMissingWithReorder (line 54) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/MissingColumns579Test.java
class MissingColumns579Test (line 17) | public class MissingColumns579Test extends ModuleTestBase
method testFailOnMissingWithReorder (line 36) | @Test
method testFailOnAllColumnsDifferent (line 52) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/MissingColumnsTest.java
class MissingColumnsTest (line 18) | public class MissingColumnsTest extends ModuleTestBase
class ABC (line 20) | @JsonPropertyOrder({ "a", "b", "c" })
method testDefaultMissingHandling (line 38) | @Test
method testInjectMissingAsNulls (line 69) | @Test
method testFailOnMissingColumns (line 100) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/NullReadTest.java
class NullReadTest (line 10) | public class NullReadTest extends ModuleTestBase
class Row330 (line 13) | static class Row330 {
method testReadNullValue72 (line 27) | @Test
method testReadNullValueFromEmptyString (line 58) | @Test
method testEmptyStringAsNull330 (line 118) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/NullValueUnquotedAsNullTest.java
class NullValueUnquotedAsNullTest (line 17) | public class NullValueUnquotedAsNullTest extends ModuleTestBase
class TestUser (line 19) | @JsonPropertyOrder({"firstName", "middleName", "lastName"})
method testDefaultBothQuotedAndUnquotedAsNull (line 27) | @Test
method testUnquotedNullValueAsNull (line 46) | @Test
method testUnquotedNullValueAsNullWithArrays (line 67) | @Test
method testUnquotedNullValueAsNullWithObjectArrays (line 97) | @Test
method testFeatureDisabledSameAsDefault (line 127) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/NumberDeserWithCSVTest.java
class NumberDeserWithCSVTest (line 15) | public class NumberDeserWithCSVTest extends ModuleTestBase
class BigDecimalHolder2784 (line 18) | static class BigDecimalHolder2784 {
class DoubleHolder2784 (line 22) | static class DoubleHolder2784 {
class FloatHolder2784 (line 26) | static class FloatHolder2784 {
class NestedBigDecimalHolder2784 (line 30) | static class NestedBigDecimalHolder2784 {
class NestedDoubleHolder2784 (line 35) | static class NestedDoubleHolder2784 {
class NestedFloatHolder2784 (line 40) | static class NestedFloatHolder2784 {
class DeserializationIssue4917 (line 45) | static class DeserializationIssue4917 {
class DecimalHolder4917 (line 50) | static class DecimalHolder4917 {
method DecimalHolder4917 (line 53) | private DecimalHolder4917(BigDecimal value) {
method of (line 57) | @JsonCreator(mode = JsonCreator.Mode.DELEGATING)
method testBigDecimalUnwrapped (line 72) | @Test
method testDoubleUnwrapped (line 84) | @Test
method testFloatUnwrapped (line 96) | @Test
method testFloatEdgeCase (line 108) | @Test
method bigDecimal4917 (line 121) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserAutoCloseTest.java
class ParserAutoCloseTest (line 14) | public class ParserAutoCloseTest extends ModuleTestBase
method testParseReaderWithAutoClose (line 16) | @Test
method testParseStreamWithAutoClose (line 27) | @Test
method testParseReaderWithoutAutoClose (line 38) | @Test
method testParseStreamWithoutAutoClose (line 52) | @Test
class CloseTrackerReader (line 65) | public static class CloseTrackerReader extends StringReader {
method CloseTrackerReader (line 68) | public CloseTrackerReader(String s) {
method close (line 72) | @Override
method isClosed (line 78) | public boolean isClosed() {
class CloseTrackerOutputStream (line 83) | public static class CloseTrackerOutputStream extends ByteArrayInputStr...
method CloseTrackerOutputStream (line 86) | public CloseTrackerOutputStream(String s) {
method close (line 90) | @Override
method isClosed (line 96) | public boolean isClosed() {
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserLocation483Test.java
class ParserLocation483Test (line 13) | public class ParserLocation483Test extends ModuleTestBase
method testAsSequence (line 18) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserQuotes643Test.java
class ParserQuotes643Test (line 12) | public class ParserQuotes643Test extends ModuleTestBase
class ThreeString (line 14) | @JsonPropertyOrder({"s1", "s2", "s3"})
method testSimpleQuotesWithSpaces (line 26) | @Test
method testUnquotedLeadingSpacesPreserved (line 43) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserTrimSpacesTest.java
class ParserTrimSpacesTest (line 12) | public class ParserTrimSpacesTest extends ModuleTestBase
class Entry (line 20) | @JsonPropertyOrder({"a", "b", "c"})
method testNonTrimming (line 32) | @Test
method testTrimming (line 71) | @Test
method testTrimmingTabSeparated (line 105) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserWithHeaderTest.java
class ParserWithHeaderTest (line 15) | public class ParserWithHeaderTest extends ModuleTestBase
class Entry (line 17) | @JsonPropertyOrder({ "age", "name", "cute" })
method testSimpleHeader (line 32) | @Test
method testSimpleQuotes (line 80) | @Test
method testSkipFirstDataLine (line 91) | @Test
method testLongHeader (line 107) | @Test
method testLongColumnName (line 142) | @Test
method testInvalidMissingHeader (line 176) | @Test
method testFailOnDuplicateHeaderColumns (line 188) | @Test
method testAllowDuplicateHeaderColumns (line 204) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ReadBracketedArray442Test.java
class ReadBracketedArray442Test (line 19) | public class ReadBracketedArray442Test extends ModuleTestBase
class Article (line 22) | @JsonPropertyOrder({"id", "title", "url", "score", "time", "comments",...
method testBracketsReadAutoSchema (line 51) | @Test
method testBracketsManualSchemaArray (line 64) | @Test
method testBracketsManualSchemaString (line 73) | @Test
method testBracketReadAutoSchemaFail (line 87) | @Test
method _automaticSchema (line 122) | private CsvSchema _automaticSchema(boolean required)
method _manualSchema (line 131) | private CsvSchema _manualSchema(ColumnType ct, boolean required)
method _bracketDecorator (line 150) | private CsvValueDecorator _bracketDecorator(boolean required) {
method _testArrayWithBracketsRead1 (line 156) | private void _testArrayWithBracketsRead1(CsvSchema schema) throws Exce...
method _testArrayWithBracketsRead100 (line 170) | private void _testArrayWithBracketsRead100(CsvSchema schema) throws Ex...
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/ReadSequencesTest.java
class ReadSequencesTest (line 21) | public class ReadSequencesTest extends ModuleTestBase
class Entry (line 23) | @JsonPropertyOrder({"x", "y"})
method Entry (line 27) | public Entry() { }
method Entry (line 28) | public Entry(int x, int y) {
method equals (line 33) | public boolean equals(Entry e) { // simplified just for testing
method toString (line 37) | @Override
method testAsSequence (line 52) | @Test
method testAsWrappedArray (line 78) | @Test
method testLongerUnwrapped (line 94) | @Test
method testRawObjectArrays (line 128) | @Test
method generateEntries (line 158) | private List<Entry> generateEntries(int count) throws IOException
method verifySame (line 168) | private void verifySame(Iterator<Entry> it, List<Entry> exp)
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/SequenceRecoveryTest.java
class SequenceRecoveryTest (line 16) | public class SequenceRecoveryTest extends ModuleTestBase
class Entry (line 18) | @JsonPropertyOrder({"x", "y"})
method Entry (line 22) | public Entry() { }
method Entry (line 23) | public Entry(int x, int y) {
method equals (line 28) | public boolean equals(Entry e) { // simplified just for testing
method toString (line 32) | @Override
method testSequenceRecovery (line 46) | @Test
method testRecoverFromExtraColumns91 (line 106) | @Test
method testRecoveryFromMissingQuote91 (line 153) | @Test
class ThreeString (line 188) | @JsonPropertyOrder({"s1", "s2", "s3"})
method testRecoveryFromUnclosedQuotes (line 195) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/SkipEmptyLines15Test.java
class SkipEmptyLines15Test (line 15) | public class SkipEmptyLines15Test extends ModuleTestBase {
class Entry (line 23) | @JsonPropertyOrder({ "age", "name", "cute" })
method testSkipEmptyLinesFeature (line 31) | @Test
method testCsvWithEmptyLineSkipBlankLinesFeatureDisabled (line 79) | @Test
method testCsvWithEmptyLineSkipBlankLinesFeatureEnabled (line 90) | @Test
method testCsvWithBlankLineSkipBlankLinesFeatureDisabled (line 103) | @Test
method testCsvWithBlankLineSkipBlankLinesFeatureEnabled (line 115) | @Test
method testCsvWithBlankLineAndCommentSkipBlankLinesFeatureDisabled (line 127) | @Test
method testCsvWithBlankLineAndCommentSkipBlankLinesFeatureEnabled (line 143) | @Test
method testCsvWithBlankLineAndCommentSkipBlankLinesFeatureEnabledAndAllowComments (line 158) | @Test
method testCsvWithFirstBlankLineSkipBlankLinesFeatureDisabled (line 172) | @Test
method testCsvWithFirstBlankLineSkipBlankLinesFeatureEnabled (line 184) | @Test
method testCsvWithTrailingBlankLineSkipBlankLinesFeatureDisabled (line 197) | @Test
method testCsvWithTrailingBlankLineSkipBlankLinesFeatureEnabled (line 210) | @Test
method mapperForCsvAsArray (line 222) | private ObjectReader mapperForCsvAsArray() {
method expected (line 229) | private String[][] expected(String[]... rowInputs) {
method row (line 233) | private String[] row(String... cellInputs) {
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/SkipEmptyLines191Test.java
class SkipEmptyLines191Test (line 19) | public class SkipEmptyLines191Test extends ModuleTestBase {
class Row174 (line 22) | @JsonPropertyOrder({ "timestamp", "random" })
method getTimestamp (line 27) | public int getTimestamp() {
method setTimestamp (line 31) | public void setTimestamp(int timestamp) {
method getRandom (line 35) | public String getRandom() {
method setRandom (line 39) | public void setRandom(String random) {
method toString (line 43) | @Override
method testEmptyLines174 (line 58) | @Test
method randomString (line 90) | private String randomString(Random rnd) {
method testBigCsvFile (line 99) | @Test
method _generate4kDoc (line 125) | private String _generate4kDoc() {
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/SkipEmptyRows368Test.java
class SkipEmptyRows368Test (line 20) | public class SkipEmptyRows368Test extends ModuleTestBase
class Entry (line 22) | @JsonPropertyOrder({ "id", "color", "shape" })
method testSkipRowsWithOnlyCommas (line 30) | @Test
method testSkipRowsWithOnlyCommasArrayMode (line 63) | @Test
method testEmptyRowsNotSkippedByDefault (line 83) | @Test
method testRowsWithCommasAndSpacesNotSkipped (line 100) | @Test
method testSkipMultipleEmptyRows (line 115) | @Test
method testSkipTrailingEmptyRow (line 133) | @Test
method testSkipLeadingEmptyRow (line 151) | @Test
method testEmptyRowAtBufferBoundary (line 171) | @Test
method testRowWithLeadingCommasNotSkipped (line 204) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/StreamingCSVReadTest.java
class StreamingCSVReadTest (line 23) | public class StreamingCSVReadTest extends ModuleTestBase
method csvMapper (line 34) | protected CsvMapper csvMapper() {
method testIntRead (line 38) | @Test
method testLongRead (line 47) | @Test
method testFloatRead (line 55) | @Test
method _testInts (line 63) | private void _testInts(int a, int b, int c) throws Exception {
method _testLongs (line 71) | private void _testLongs(long a, long b) throws Exception {
method _testDoubles (line 76) | private void _testDoubles(double a, double b, double c) throws Excepti...
method _testInts (line 81) | private void _testInts(boolean useBytes, int a, int b, int c) throws E...
method _testIntsExpected (line 126) | private void _testIntsExpected(boolean useBytes, int a, int b, int c) ...
method _testLongs (line 172) | private void _testLongs(boolean useBytes, long a, long b) throws Excep...
method _testDoubles (line 204) | private void _testDoubles(boolean useBytes, double a, double b, double c)
method _parser (line 235) | private CsvParser _parser(String csv, boolean useBytes, CsvSchema schema)
method _verifyGetNumberTypeFail (line 250) | private void _verifyGetNumberTypeFail(JsonParser p, String token) thro...
method _verifyNonNumberTypeException (line 255) | private void _verifyNonNumberTypeException(Exception e, String token) ...
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserEscapes.java
class TestParserEscapes (line 15) | public class TestParserEscapes extends ModuleTestBase
class Desc (line 17) | @JsonPropertyOrder({"id", "description"})
method testSimpleEscapesInQuotes (line 28) | @Test
method testSimpleEscapesInUnquoted (line 45) | @Test
method testEscapesAtStartInUnquoted (line 58) | @Test
method testEscaping374 (line 72) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserNoSchema.java
class TestParserNoSchema (line 20) | public class TestParserNoSchema extends ModuleTestBase
method testUntypedAsSequence (line 28) | @Test
method testUntypedAsObjectArray (line 67) | @Test
method testUntypedAsStringArray (line 95) | @Test
method testUntypedViaReadValues (line 122) | @Test
method testUntypedWithHeaderAsMap (line 150) | @Test
method testUntypedAsSequenceVarLengths (line 176) | @Test
method testDelimiterAtBufferBoundary (line 209) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserQuotes.java
class TestParserQuotes (line 13) | public class TestParserQuotes extends ModuleTestBase
class AgeName (line 15) | @JsonPropertyOrder({"age", "name"})
method AgeName (line 20) | public AgeName() { }
method AgeName (line 21) | public AgeName(int age, String name) {
class ThreeString (line 27) | @JsonPropertyOrder({"s1", "s2", "s3"})
method testSimpleQuotes (line 38) | @Test
method testSimpleMultiLine (line 48) | @Test
method testDisablingQuotes (line 70) | @Test
method testDefaultSimpleQuotes (line 103) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserStrictQuoting.java
class TestParserStrictQuoting (line 13) | public class TestParserStrictQuoting extends ModuleTestBase
class AB (line 15) | @JsonPropertyOrder({"a", "b"})
method AB (line 19) | public AB() { }
method AB (line 20) | public AB(String a, String b) {
method testStrictQuoting (line 32) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserWorkarounds.java
class TestParserWorkarounds (line 17) | public class TestParserWorkarounds extends ModuleTestBase
method testIgnoringOptionalTrailing (line 23) | @Test
method testOptionalTrailFailing (line 67) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/TrailingCommaCSVTest.java
class TrailingCommaCSVTest (line 12) | public class TrailingCommaCSVTest extends ModuleTestBase
class StringPair (line 14) | @JsonPropertyOrder({ "a", "b" })
class Person (line 19) | static class Person {
method testDisallowTrailingComma (line 26) | @Test
method testWithTrailingHeaderComma (line 50) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/UTF8ReaderTest.java
class UTF8ReaderTest (line 16) | public class UTF8ReaderTest
method testSurrogatePairAtBufferBoundary (line 18) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/UnicodeCSVRead497Test.java
class UnicodeCSVRead497Test (line 16) | public class UnicodeCSVRead497Test extends ModuleTestBase
method testUnicodeAtEnd (line 21) | @Test
method _testUnicodeAtEnd (line 28) | private void _testUnicodeAtEnd(int len) throws Exception
method testUnicodeAtEnd2 (line 39) | @Test
method _testUnicodeAtEnd2 (line 47) | private void _testUnicodeAtEnd2(int len) throws Exception
method testUnicodeAtEndStream (line 61) | @Test
method _testUnicodeAtEndStream (line 69) | private void _testUnicodeAtEndStream(int len) throws Exception
method testUnicodeAtEndStream2 (line 80) | @Test
method _testUnicodeAtEndStream2 (line 89) | private void _testUnicodeAtEndStream2(int len) throws Exception
method buildTestString (line 102) | private static String buildTestString(int len) {
method buildTestString2 (line 111) | private static String buildTestString2(int len) {
FILE: csv/src/test/java/tools/jackson/dataformat/csv/deser/UnwrappingWithCSVTest.java
class UnwrappingWithCSVTest (line 15) | public class UnwrappingWithCSVTest extends ModuleTestBase
class Location (line 17) | @JsonPropertyOrder({"x", "y"})
method Location (line 22) | public Location() { }
method Location (line 23) | public Location(int x, int y) {
class Unwrapping (line 30) | @JsonPropertyOrder({ "name", "location" })
method Unwrapping (line 36) | public Unwrapping() { }
method Unwrapping (line 37) | public Unwrapping(String str, int x, int y) {
method testSimpleUnwrappingRoundtrip (line 53) | @Test
method testSimpleWithAutoSchema (line 83) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/filter/JsonViewFilteringTest.java
class JsonViewFilteringTest (line 21) | public class JsonViewFilteringTest extends ModuleTestBase
class ViewA (line 24) | static class ViewA { }
class ViewAA (line 25) | static class ViewAA extends ViewA { }
class ViewB (line 26) | static class ViewB { }
class ViewBB (line 27) | static class ViewBB extends ViewB { }
class Bean (line 29) | @JsonPropertyOrder({ "a", "aa", "b" })
class Company (line 44) | @JsonPropertyOrder({ "id", "name", "ticker" })
method Company (line 51) | Company() { }
method Company (line 52) | Company(int id, String name, String ticker) {
method testWithJsonView (line 67) | @Test
method testSchemaWithJsonViewSerialization (line 92) | @Test
method testSchemaWithJsonViewDeserialization (line 105) | @Test
method testSchemaWithJsonViewDeserializationFail (line 118) | @Test
method testWithJsonFilter (line 131) | @Test
method testWithJsonFilterFieldSuppressed (line 154) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/filter/StreamingDecoratorsTest.java
class StreamingDecoratorsTest (line 17) | public class StreamingDecoratorsTest extends ModuleTestBase
method testInputDecorators (line 19) | @Test
method testOutputDecorators (line 50) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/fuzz/CSVFuzz499695465Test.java
class CSVFuzz499695465Test (line 9) | public class CSVFuzz499695465Test extends ModuleTestBase
method testReadTree (line 12) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/fuzz/CSVFuzz50036Test.java
class CSVFuzz50036Test (line 17) | public class CSVFuzz50036Test extends ModuleTestBase
method testUTF8Decoding50036 (line 24) | @Test
method testUTF8Decoding50036Stream (line 42) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/fuzz/CSVFuzz50402Test.java
class CSVFuzz50402Test (line 9) | public class CSVFuzz50402Test extends ModuleTestBase
method testReadBoundary50402 (line 12) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/limits/CSVBigNumberReadLimitsTest.java
class CSVBigNumberReadLimitsTest (line 17) | public class CSVBigNumberReadLimitsTest extends ModuleTestBase
class BigDecimalHolder2784 (line 20) | static class BigDecimalHolder2784 {
class NestedBigDecimalHolder2784 (line 24) | static class NestedBigDecimalHolder2784 {
method testVeryBigDecimalUnwrapped (line 37) | @Test
method testVeryBigDecimalUnwrappedWithNumLenUnlimited (line 59) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/limits/CSVBigStringLimitsTest.java
class CSVBigStringLimitsTest (line 19) | public class CSVBigStringLimitsTest extends ModuleTestBase
method newCsvMapperWithUnlimitedStringSizeSupport (line 26) | private CsvMapper newCsvMapperWithUnlimitedStringSizeSupport() {
method testBigString (line 33) | @Test
method testBiggerString (line 50) | @Test
method testUnlimitedString (line 69) | @Test
method generateCsv (line 84) | private String generateCsv(final int len) {
FILE: csv/src/test/java/tools/jackson/dataformat/csv/limits/CSVLargeDocReadLimitsTest.java
class CSVLargeDocReadLimitsTest (line 16) | public class CSVLargeDocReadLimitsTest extends ModuleTestBase
method csvFactoryWithDocLenLimit (line 20) | private CsvFactory csvFactoryWithDocLenLimit(long limit) {
method testDocumentExceedingLimitFails (line 28) | @Test
method testDocumentWithinLimitSucceeds (line 42) | @Test
method generateCsv (line 52) | private String generateCsv(int targetLen) {
FILE: csv/src/test/java/tools/jackson/dataformat/csv/limits/CSVNameLengthLimitsTest.java
class CSVNameLengthLimitsTest (line 22) | public class CSVNameLengthLimitsTest extends ModuleTestBase
method testHeaderNameTooLong_withReorder (line 35) | @Test
method testHeaderNameTooLong_strictHeaders (line 61) | @Test
method testHeaderNameTooLong_noReorder (line 87) | @Test
method testHeaderNameWithinLimit (line 112) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/schema/CsvSchemaTest.java
class CsvSchemaTest (line 16) | public class CsvSchemaTest extends ModuleTestBase
class Mixed (line 18) | @JsonPropertyOrder({ "a", "b", "c", "d" })
class ArrayWrapper (line 23) | @JsonPropertyOrder({ "a", "b", "c" })
class Point (line 31) | static class Point {
class PointWithAnnotation (line 36) | @JsonPropertyOrder()
type Named (line 40) | interface Named {
method getFirstName (line 41) | public String getFirstName();
method getLastName (line 42) | public String getLastName();
class YZ (line 45) | static abstract class YZ {
method getY (line 46) | public abstract int getY();
method getZ (line 47) | public abstract int getZ();
class PointWithExplicitIndices115 (line 51) | static class PointWithExplicitIndices115 {
method testUserWithTypedAutoSchema (line 69) | @Test
method testArrayWithTypedAutoSchema (line 109) | @Test
method testReorderByName (line 135) | @Test
method testReorderWithComparator (line 148) | @Test
method testColumnDescForEmptyScheme (line 158) | @Test
method _verifyLinks (line 165) | private void _verifyLinks(CsvSchema schema)
method testSchemaWithOrdering (line 181) | @Test
method testSchemaWithReordering (line 192) | @Test
method testSchemaComposition (line 208) | @Test
method testSchemaWithExplicitIndices (line 246) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/schema/PropertyOrder74Test.java
class PropertyOrder74Test (line 14) | public class PropertyOrder74Test extends ModuleTestBase
class Point (line 16) | static class Point {
class PointWithAnnotation (line 21) | @JsonPropertyOrder()
method testSchemaWithOrdering (line 26) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/schema/SchemaDefaultView308Test.java
class SchemaDefaultView308Test (line 16) | public class SchemaDefaultView308Test extends ModuleTestBase
type BaseView (line 18) | interface BaseView {}
type BaseViewMixIn (line 19) | @JsonView(BaseView.class)
type ExtendedView (line 22) | interface ExtendedView extends BaseView {}
type ExtendedViewMixIn (line 23) | @JsonView(ExtendedView.class)
type OtherView (line 26) | interface OtherView {}
type OtherViewMixIn (line 27) | @JsonView(OtherView.class)
class ViewTestPojo (line 30) | static class ViewTestPojo
method ViewTestPojo (line 44) | ViewTestPojo(final boolean flag, final char character, final int num...
method _createMapper (line 55) | private CsvMapper _createMapper(boolean inclusion, Class<?> defaultVie...
method _verifyExpected (line 64) | private void _verifyExpected(final CsvMapper csvMapper, final Class<?>...
method testSchemaWithImplicitDefaultViewAndDefaultViewInclusionDisabled (line 76) | @Test
method testSchemaWithDefaultBaseViewAndDefaultViewInclusionDisabled (line 86) | @Test
method testSchemaWithDefaultExtendedViewAndDefaultViewInclusionDisabled (line 96) | @Test
method testSchemaWithDefaultOtherViewAndDefaultViewInclusionDisabled (line 106) | @Test
method testSchemaWithImplicitDefaultViewAndDefaultViewInclusionEnabled (line 116) | @Test
method testSchemaWithDefaultBaseViewAndDefaultViewInclusionEnabled (line 126) | @Test
method testSchemaWithDefaultExtendedViewAndDefaultViewInclusionEnabled (line 136) | @Test
method testSchemaWithDefaultOtherViewAndDefaultViewInclusionEnabled (line 146) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/schema/SchemaFromBuilder207Test.java
class SchemaFromBuilder207Test (line 14) | public class SchemaFromBuilder207Test extends ModuleTestBase
class ValueClassXY (line 16) | @JsonDeserialize(builder=SimpleBuilderXY.class)
method ValueClassXY (line 21) | protected ValueClassXY(int x, int y, int z) {
method getX (line 27) | public int getX() { return _x; }
method getY (line 28) | public int getY() { return _y; }
method setZ (line 30) | public void setZ(int z) { }
class SimpleBuilderXY (line 33) | static class SimpleBuilderXY
method withX (line 37) | public SimpleBuilderXY withX(int x0) {
method withY (line 42) | public SimpleBuilderXY withY(int y0) {
method withZ (line 47) | public SimpleBuilderXY withZ(int z0) {
method build (line 52) | public ValueClassXY build() {
method testSimple (line 59) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/ArrayWriteTest.java
class ArrayWriteTest (line 13) | public class ArrayWriteTest extends ModuleTestBase
class ValueEntry (line 15) | @JsonPropertyOrder({"id", "values", "extra"})
method ValueEntry (line 20) | public ValueEntry(String id, String extra, int... v) {
class Pojo90 (line 27) | @JsonPropertyOrder({"a", "b", "c"})
method testSimpleExplicit (line 45) | @Test
method testSeparatorOverride (line 55) | @Test
method testArraysWithNulls (line 70) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/CSVGeneratorQuotingTest.java
class CSVGeneratorQuotingTest (line 9) | public class CSVGeneratorQuotingTest extends ModuleTestBase
method testQuotingOfLinefeedsStd (line 20) | @Test
method testQuotingOfLinefeedsCustom (line 47) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/CSVGeneratorTest.java
class CSVGeneratorTest (line 22) | public class CSVGeneratorTest extends ModuleTestBase
class Entry (line 24) | @JsonPropertyOrder({"id", "amount"})
method Entry (line 29) | public Entry(String id, double amount) {
class Entry2 (line 35) | @JsonPropertyOrder({"id", "amount"})
method Entry2 (line 40) | public Entry2(String id, float amount) {
class Entry3 (line 46) | @JsonPropertyOrder({"id", "amount", "enabled"})
method Entry3 (line 52) | public Entry3(String id, BigDecimal amount, boolean enabled) {
class NumberEntry (line 59) | @JsonPropertyOrder({"id", "amount"})
method NumberEntry (line 65) | public NumberEntry(String id, T amount, boolean enabled) {
method testSimpleExplicit (line 80) | @Test
method testSimpleWithAutoSchema (line 106) | @Test
method testWriteHeaders (line 113) | @Test
method testFailedWriteHeaders (line 134) | @Test
method testExplicitWithDouble (line 147) | @Test
method testExplicitWithFloat (line 159) | @Test
method testExplicitWithFastFloat (line 173) | @Test
method testExplicitWithQuoted (line 188) | @Test
method testLongerWithQuotes (line 203) | @Test
method testWriteInFile (line 230) | @Test
method testForcedQuoting60 (line 250) | @Test
method testForcedQuotingOfBigDecimal (line 271) | @Test
method testForcedQuotingWithQuoteEscapedWithBackslash (line 291) | @Test
method testMissingEscapeCharacterSetting (line 308) | @Test
method testForcedQuotingEmptyStrings (line 326) | @Test
method testQuotingOfCommentCharForFirstColumn (line 347) | @Test
method testQuotingOfCommentCharForSecondColumn (line 364) | @Test
method testQuotingOfCommentCharWhenCommentsAreDisabled (line 381) | @Test
method testBackslashEscape (line 398) | @Test
method testRawWrites (line 410) | @Test
method testSerializationOfPrimitivesToCsv (line 437) | @Test
method testSerializationOfPrimitiveToCsv (line 450) | private <T> void testSerializationOfPrimitiveToCsv(final CsvMapper map...
method testForcedQuotingOfNumbers (line 460) | @Test
method _testForcedQuotingOfNumbers (line 486) | private void _testForcedQuotingOfNumbers(ObjectWriter w, CsvSchema reo...
method _testSimpleWithAutoSchema (line 512) | private void _testSimpleWithAutoSchema(boolean wrapAsArray) throws Exc...
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/CSVJDKSerializationTest.java
class CSVJDKSerializationTest (line 21) | public class CSVJDKSerializationTest extends ModuleTestBase
class MyPojo (line 23) | @JsonPropertyOrder({ "x", "y" })
method MyPojo (line 28) | public MyPojo() { }
method MyPojo (line 29) | public MyPojo(int x0, int y0) {
method getY (line 34) | public int getY() { return y; }
method setY (line 35) | public void setY(int y) { this.y = y; }
class MyPojo2 (line 38) | static class MyPojo2 extends MyPojo { }
method testSchema (line 51) | @Test
method testMapperJDKSerialization (line 59) | @Test
method testMapperCopy (line 83) | public void testMapperCopy() throws Exception
method jdkSerialize (line 97) | protected byte[] jdkSerialize(Object o) throws Exception
method jdkDeserialize (line 106) | @SuppressWarnings("unchecked")
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/FilteringTest.java
class FilteringTest (line 19) | @SuppressWarnings("serial")
class Entity (line 22) | static class Entity {
method Entity (line 28) | public Entity(String name, String description, String unusedField) {
class CsvJacksonWriter (line 37) | static class CsvJacksonWriter {
method writeObjects (line 38) | public void writeObjects(OutputStream outputStream,
class CsvAnnotationIntrospector (line 60) | static class CsvAnnotationIntrospector extends JacksonAnnotationIntros...
method findFilterId (line 61) | @Override
method testWriteObjects (line 67) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/GeneratorFileCloseOnErrorTest.java
class GeneratorFileCloseOnErrorTest (line 20) | public class GeneratorFileCloseOnErrorTest extends ModuleTestBase
method testOutputClosedWhenFlushFailsDuringClose (line 25) | @Test
method testOutputClosedOnSuccessfulWrite (line 51) | @Test
class FailOnDemandWriter (line 62) | static class FailOnDemandWriter extends Writer {
method write (line 67) | @Override
method flush (line 75) | @Override
method close (line 83) | @Override
class Pojo (line 90) | static class Pojo {
method Pojo (line 93) | public Pojo() { }
method Pojo (line 94) | Pojo(String foo) {
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/GeneratorIgnoreUnknown51Test.java
class GeneratorIgnoreUnknown51Test (line 20) | public class GeneratorIgnoreUnknown51Test extends ModuleTestBase
class MyClass (line 23) | @JsonPropertyOrder({ "address", "people", "phoneNumber" })
method MyClass (line 30) | public MyClass() { }
class Person (line 33) | @JsonPropertyOrder({ "name", "surname" })
method Person (line 38) | protected Person() { }
method Person (line 40) | public Person(String name, String surname)
method asString (line 49) | public String asString() {
method testIgnoreEmbeddedObject (line 61) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/GeneratorIgnoreUnknownTest.java
class GeneratorIgnoreUnknownTest (line 16) | public class GeneratorIgnoreUnknownTest extends ModuleTestBase
class Point (line 18) | @JsonPropertyOrder({ "x", "y", "z" })
class PointAndExtra (line 25) | @JsonPropertyOrder({ "x", "extra", "y" })
class PointAndStuff (line 31) | @JsonPropertyOrder({ "x", "stuff", "y" })
method PointAndStuff (line 36) | public PointAndStuff(Object s) { stuff = s; }
class PointAndArray (line 39) | @JsonPropertyOrder({ "x", "points", "y" })
method PointAndArray (line 49) | protected PointAndArray() { }
method PointAndArray (line 50) | protected PointAndArray(int x, int y) {
method testSimpleIgnore (line 62) | @Test
method testIgnorePOJO (line 78) | @Test
method testIgnoreObject (line 94) | @Test
method testIgnoreNested (line 118) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/HeaderWriteTest.java
class HeaderWriteTest (line 16) | public class HeaderWriteTest extends ModuleTestBase
method testNoLines (line 26) | @Test
method testOneLine (line 37) | @Test
method runTest (line 48) | private String runTest(List<String> headers, List<List<String>> dataSo...
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/MaxQuoteCheckCharsTest.java
class MaxQuoteCheckCharsTest (line 10) | public class MaxQuoteCheckCharsTest extends ModuleTestBase
method testDefaultMaxQuoteCheck (line 12) | @Test
method testCustomMaxQuoteCheckHigher (line 30) | @Test
method testCustomMaxQuoteCheckLower (line 54) | @Test
method testRebuildPreservesMaxQuoteCheck (line 77) | @Test
method testStrictQuotingIgnoresMaxQuoteCheck (line 95) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/MultipleWritesTest.java
class MultipleWritesTest (line 19) | public class MultipleWritesTest extends ModuleTestBase
class Pojo (line 21) | @JsonPropertyOrder({ "a", "b", "c" })
method Pojo (line 25) | public Pojo(int a, int b, int c) {
method testMultipleListWrites (line 40) | @Test
method testWriteValuesWithPOJOs (line 78) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/NullWritingTest.java
class NullWritingTest (line 18) | public class NullWritingTest extends ModuleTestBase
class Nullable (line 20) | public static class Nullable {
class Pojo83 (line 25) | @JsonPropertyOrder({ "prop1", "prop2", "prop3" })
method Pojo83 (line 31) | protected Pojo83() { }
method Pojo83 (line 32) | public Pojo83(String a, String b, int c) {
method testObjectWithNullMembersToString (line 47) | @Test
method testNullToString (line 55) | @Test
method testObjectWithNullMembersToStream (line 63) | @Test
method testNullToStream (line 79) | @Test
method testCustomNullValue (line 101) | @Test
method testNullIssue83 (line 116) | @Test
method testNullFieldsOfListsContainedByMainLevelListIssue106 (line 130) | @Test
method testNullElementsOfMainLevelListIssue106 (line 149) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/ObjectArrayNullWrite10Test.java
class ObjectArrayNullWrite10Test (line 13) | public class ObjectArrayNullWrite10Test extends ModuleTestBase
method testNullsOnObjectArrayWrites2Col (line 16) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/ObjectArrayNullWrite116Test.java
class ObjectArrayNullWrite116Test (line 13) | public class ObjectArrayNullWrite116Test extends ModuleTestBase
method testWithObjectArray (line 16) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/QuoteLeadingTrailingWhitespace210Test.java
class QuoteLeadingTrailingWhitespace210Test (line 10) | public class QuoteLeadingTrailingWhitespace210Test extends ModuleTestBase
method testLeadingSpaceQuoted (line 14) | @Test
method testTrailingSpaceQuoted (line 25) | @Test
method testBothLeadingAndTrailingSpaceQuoted (line 36) | @Test
method testTabCountsAsWhitespace (line 47) | @Test
method testNoQuotingWithoutFeature (line 58) | @Test
method testNoWhitespaceNoQuoting (line 72) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/SchemaReorderTest.java
class SchemaReorderTest (line 11) | public class SchemaReorderTest extends ModuleTestBase
class Reordered (line 14) | static class Reordered {
method testSchemaWithOrdering (line 23) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/StrictQuotingNewline479Test.java
class StrictQuotingNewline479Test (line 18) | public class StrictQuotingNewline479Test extends ModuleTestBase
method testStrictQuotingWithUnixLineSeparator (line 26) | @Test
method testStrictQuotingWithWindowsLineSeparator (line 47) | @Test
method testStrictQuotingWithMacLineSeparator (line 68) | @Test
method testStrictQuotingWithMultipleNewlines (line 89) | @Test
method testStrictQuotingWithCommaWorks (line 110) | @Test
method testStrictQuotingNewlineInSecondColumn (line 130) | @Test
method testStrictQuotingWithCustomLineSeparatorCRLF (line 150) | @Test
method testQuotingWithoutStrictCheckWorks (line 171) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/TestGeneratorNoSchema.java
class TestGeneratorNoSchema (line 16) | public class TestGeneratorNoSchema extends ModuleTestBase
method testUntypedAsSequenceStreaming (line 28) | @Test
method testUntypedAsSequenceDatabind (line 65) | @Test
method testUntypedWithSequenceWriter (line 79) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/TestGeneratorWithCustomSeparators.java
class TestGeneratorWithCustomSeparators (line 9) | public class TestGeneratorWithCustomSeparators extends ModuleTestBase
method testOtherSeparator (line 12) | @Test
method testTSV (line 22) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/TestGeneratorWithSequences.java
class TestGeneratorWithSequences (line 14) | public class TestGeneratorWithSequences extends ModuleTestBase
class Entry (line 16) | @JsonPropertyOrder({"x", "y"})
method Entry (line 20) | public Entry() { }
method Entry (line 21) | public Entry(int x, int y) {
method testAsSequence (line 37) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/TestWriterWithMissingValues.java
class TestWriterWithMissingValues (line 12) | public class TestWriterWithMissingValues extends ModuleTestBase
method testWrite_NoNulls (line 23) | @Test
method testWrite_NullFirstColumn (line 32) | public void testWrite_NullFirstColumn() {
method testWrite_NullSecondColumn (line 38) | public void testWrite_NullSecondColumn() {
method testWrite_NullThirdColumn (line 46) | public void testWrite_NullThirdColumn()
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/TestWriterWithSomeMoreMissingValues.java
class TestWriterWithSomeMoreMissingValues (line 13) | public class TestWriterWithSomeMoreMissingValues extends ModuleTestBase
method testWithAStringAndAUuid (line 17) | @Test
method testWithTwoStringsAndAUuid (line 36) | @Test
method testWithANullAStringAndAUuid (line 57) | @Test
method testWithAStringANullAndAUuid (line 77) | @Test
method testWithThreeStringsAndAUuid (line 97) | @Test
method testWithANullAStringAStringAndAUuid (line 120) | @Test
method testWithAStringANullAStringAndAUuid (line 141) | @Test
method testWithTwoStringsANullAndAUuid (line 163) | @Test
method testWithTwoStringsANullAndAString (line 185) | @Test
method testWriteNullThirdColumn (line 207) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/UnicodeWritingTest.java
class UnicodeWritingTest (line 15) | public class UnicodeWritingTest extends ModuleTestBase
method testSimpleStringSequence (line 25) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/UnwrappedWriteTest.java
class UnwrappedWriteTest (line 12) | public class UnwrappedWriteTest extends ModuleTestBase
class Inner (line 14) | @JsonPropertyOrder({ "f1", "f2", "f3" })
class Outer (line 21) | @JsonPropertyOrder({ "a", "inner" })
method testWriteUnwrapped (line 30) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/WriteBracketedArray495Test.java
class WriteBracketedArray495Test (line 17) | public class WriteBracketedArray495Test extends ModuleTestBase
class Article (line 20) | @JsonPropertyOrder({"id", "embeddings", "title", "extra" })
method Article (line 27) | protected Article() { }
method Article (line 28) | public Article(int id, String title, int extra, double[] embeddings) {
method testBracketsWriteAutoSchema (line 45) | @Test
method testBracketsManualSchemaArray (line 52) | @Test
method testBracketsManualSchemaString (line 59) | @Test
method _automaticSchema (line 66) | private CsvSchema _automaticSchema()
method _manualSchema (line 79) | private CsvSchema _manualSchema(ColumnType ct)
method _bracketDecorator (line 95) | private CsvValueDecorator _bracketDecorator() {
method _parenthesisDecorator (line 99) | private CsvValueDecorator _parenthesisDecorator() {
method _curlyDecorator (line 103) | private CsvValueDecorator _curlyDecorator() {
method _testArrayWithBracketsWrite (line 107) | private void _testArrayWithBracketsWrite(CsvSchema schema) throws Exce...
FILE: csv/src/test/java/tools/jackson/dataformat/csv/ser/dos/CyclicCSVDataSerTest.java
class CyclicCSVDataSerTest (line 21) | public class CyclicCSVDataSerTest extends ModuleTestBase
method testListWithSelfReference (line 25) | @Test
FILE: csv/src/test/java/tools/jackson/dataformat/csv/testutil/PrefixInputDecorator.java
class PrefixInputDecorator (line 9) | @SuppressWarnings("serial")
method PrefixInputDecorator (line 14) | public PrefixInputDecorator(byte[] p) {
method decorate (line 18) | @Override
method decorate (line 26) | @Override
method decorate (line 31) | @Override
class MySequenceInputStream (line 41) | static class MySequenceInputStream extends SequenceInputStream {
method MySequenceInputStream (line 42) | public MySequenceInputStream(InputStream in1, InputStream in2) {
class SequenceReader (line 47) | static class SequenceReader extends Reader {
method SequenceReader (line 50) | public SequenceReader(Reader r1, Reader r2) {
method read (line 55) | @Override
method close (line 74) | @Override
FILE: csv/src/test/java/tools/jackson/dataformat/csv/testutil/PrefixOutputDecorator.java
class PrefixOutputDecorator (line 8) | @SuppressWarnings("serial")
method PrefixOutputDecorator (line 13) | public PrefixOutputDecorator(byte[] p) {
method decorate (line 17) | @Override
method decorate (line 26) | @Override
class BufferedOut (line 38) | static class BufferedOut extends FilterOutputStream {
method BufferedOut (line 41) | public BufferedOut(OutputStream b, byte[] prefix) {
method write (line 46) | @Override
method write (line 55) | @Override
FILE: csv/src/test/java/tools/jackson/dataformat/csv/testutil/failure/JacksonTestFailureExpectedInterceptor.java
class JacksonTestFailureExpectedInterceptor (line 15) | public class JacksonTestFailureExpectedInterceptor
method interceptTestMethod (line 18) | @Override
method handleUnexpectePassingTest (line 32) | private void handleUnexpectePassingTest(ReflectiveInvocationContext<Me...
FILE: csv/src/test/java/tools/jackson/dataformat/csv/testutil/failure/JacksonTestShouldFailException.java
class JacksonTestShouldFailException (line 10) | public class JacksonTestShouldFailException
method JacksonTestShouldFailException (line 15) | public JacksonTestShouldFailException(String msg) {
FILE: docs/javadoc/csv/2.10/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/csv/2.11/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/csv/2.12/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/csv/2.13/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/csv/2.14/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/properties/2.10/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/properties/2.11/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/properties/2.12/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/properties/2.13/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/properties/2.14/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/toml/2.13/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/toml/2.14/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/yaml/2.10/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/yaml/2.11/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/yaml/2.12/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/yaml/2.13/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: docs/javadoc/yaml/2.14/script.js
function show (line 1) | function show(type)
function updateTabs (line 16) | function updateTabs(type)
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/JavaPropsFactory.java
class JavaPropsFactory (line 14) | @SuppressWarnings("resource")
method JavaPropsFactory (line 36) | public JavaPropsFactory() {
method JavaPropsFactory (line 43) | protected JavaPropsFactory(JavaPropsFactory src)
method JavaPropsFactory (line 53) | protected JavaPropsFactory(JavaPropsFactoryBuilder b)
method rebuild (line 58) | @Override
method builder (line 67) | public static JavaPropsFactoryBuilder builder() {
method copy (line 71) | @Override
method snapshot (line 79) | @Override
method version (line 90) | @Override
method requiresPropertyOrdering (line 96) | @Override
method canUseCharArrays (line 102) | @Override
method canParseAsync (line 105) | @Override
method getFormatName (line 117) | @Override
method canUseSchema (line 122) | @Override
method getFormatReadFeatureType (line 128) | @Override
method getFormatWriteFeatureType (line 133) | @Override
method getFormatReadFeatures (line 138) | @Override
method getFormatWriteFeatures (line 141) | @Override
method createParser (line 154) | public JavaPropsParser createParser(ObjectReadContext readCtxt,
method createGenerator (line 167) | public JavaPropsGenerator createGenerator(ObjectWriteContext writeCtxt,
method _createParser (line 192) | @Override
method _createParser (line 203) | @Override
method _createParser (line 213) | @Override
method _createParser (line 221) | @Override
method _createParser (line 228) | @Override
method _getSchema (line 234) | private final JavaPropsSchema _getSchema(ObjectReadContext readCtxt) {
method _createGenerator (line 248) | @Override
method _createUTF8Generator (line 258) | @Override
method _createWriter (line 268) | @Override
method _getSchema (line 280) | private final JavaPropsSchema _getSchema(ObjectWriteContext ctxt) {
method _loadProperties (line 295) | protected Properties _loadProperties(InputStream in, IOContext ctxt)
method _loadProperties (line 302) | protected Properties _loadProperties(Reader r0, IOContext ctxt)
method _reportReadException (line 322) | protected <T> T _reportReadException(String msg, Exception rootCause)
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/JavaPropsFactoryBuilder.java
class JavaPropsFactoryBuilder (line 15) | public class JavaPropsFactoryBuilder extends DecorableTSFBuilder<JavaPro...
method JavaPropsFactoryBuilder (line 17) | public JavaPropsFactoryBuilder() {
method JavaPropsFactoryBuilder (line 24) | public JavaPropsFactoryBuilder(JavaPropsFactory base) {
method build (line 28) | @Override
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/JavaPropsGenerator.java
class JavaPropsGenerator (line 16) | public abstract class JavaPropsGenerator
method JavaPropsGenerator (line 65) | public JavaPropsGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt,
method version (line 95) | @Override
method has (line 115) | @Override
method streamWriteCapabilities (line 120) | @Override
method streamWriteContext (line 131) | @Override
method currentValue (line 136) | @Override
method assignCurrentValue (line 141) | @Override
method getPrettyPrinter (line 162) | @Override
method getSchema (line 167) | @Override
method writeName (line 176) | @Override
method writePropertyId (line 204) | @Override
method _appendPropertyName (line 210) | protected abstract void _appendPropertyName(StringBuilder path, String...
method writeStartArray (line 218) | @Override
method writeStartArray (line 227) | @Override
method writeEndArray (line 236) | @Override
method writeStartObject (line 245) | @Override
method writeStartObject (line 253) | @Override
method writeEndObject (line 261) | @Override
method writeString (line 277) | @Override
method writeString (line 288) | @Override
method writeRawUTF8String (line 297) | @Override
method writeUTF8String (line 303) | @Override
method writeRaw (line 315) | @Override
method writeRaw (line 321) | @Override
method writeRaw (line 327) | @Override
method writeRaw (line 333) | @Override
method writeRaw (line 339) | @Override
method writeBinary (line 351) | @Override
method writeBoolean (line 374) | @Override
method writeNumber (line 382) | @Override
method writeNumber (line 387) | @Override
method writeNumber (line 395) | @Override
method writeNumber (line 403) | @Override
method writeNumber (line 414) | @Override
method writeNumber (line 422) | @Override
method writeNumber (line 430) | @Override
method writeNumber (line 442) | @Override
method writeNull (line 453) | @Override
method _verifyValueWrite (line 471) | @Override
method _writeEscapedEntry (line 508) | protected abstract void _writeEscapedEntry(String value) throws Jackso...
method _writeEscapedEntry (line 510) | protected abstract void _writeEscapedEntry(char[] text, int offset, in...
method _writeUnescapedEntry (line 512) | protected abstract void _writeUnescapedEntry(String value) throws Jack...
method _writeRaw (line 514) | protected abstract void _writeRaw(char c) throws JacksonException;
method _writeRaw (line 515) | protected abstract void _writeRaw(String text) throws JacksonException;
method _writeRaw (line 516) | protected abstract void _writeRaw(StringBuilder text) throws JacksonEx...
method _writeRaw (line 517) | protected abstract void _writeRaw(char[] text, int offset, int len) th...
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/JavaPropsMapper.java
class JavaPropsMapper (line 16) | public class JavaPropsMapper extends ObjectMapper
class Builder (line 26) | public static class Builder extends MapperBuilder<JavaPropsMapper, Bui...
method Builder (line 28) | public Builder(JavaPropsFactory f) {
method Builder (line 40) | public Builder(StateImpl state) {
method build (line 44) | @Override
method _saveState (line 49) | @Override
class StateImpl (line 54) | protected static class StateImpl extends MapperBuilderState
method StateImpl (line 59) | public StateImpl(Builder src) {
method readResolve (line 65) | @Override
method JavaPropsMapper (line 78) | public JavaPropsMapper() {
method JavaPropsMapper (line 82) | public JavaPropsMapper(JavaPropsFactory f) {
method JavaPropsMapper (line 86) | public JavaPropsMapper(Builder b) {
method builder (line 90) | public static Builder builder() {
method builder (line 94) | public static Builder builder(JavaPropsFactory streamFactory) {
method rebuild (line 98) | @SuppressWarnings("unchecked")
method shared (line 116) | public static JavaPropsMapper shared() {
method writeReplace (line 128) | @Override
method readResolve (line 133) | @Override
method version (line 144) | @Override
method tokenStreamFactory (line 149) | @Override
method readPropertiesAs (line 170) | @SuppressWarnings("resource")
method readPropertiesAs (line 189) | @SuppressWarnings({ "resource", "unchecked" })
method readPropertiesAs (line 204) | public <T> T readPropertiesAs(Properties props, Class<T> valueType) th...
method readPropertiesAs (line 214) | public <T> T readPropertiesAs(Properties props, JavaType valueType) th...
method readMapAs (line 234) | @SuppressWarnings("resource")
method readMapAs (line 252) | @SuppressWarnings({ "resource", "unchecked" })
method readMapAs (line 266) | public <T> T readMapAs(Map<String, String> map, Class<T> valueType) th...
method readMapAs (line 276) | public <T> T readMapAs(Map<String, String> map, JavaType valueType) th...
method readSystemPropertiesAs (line 292) | public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
method readSystemPropertiesAs (line 303) | public <T> T readSystemPropertiesAs(JavaPropsSchema schema,
method readEnvVariablesAs (line 320) | public <T> T readEnvVariablesAs(JavaPropsSchema schema,
method readEnvVariablesAs (line 331) | public <T> T readEnvVariablesAs(JavaPropsSchema schema,
method _env (line 336) | protected Properties _env() {
method writeValue (line 352) | public void writeValue(Map<?,?> target, Object value) throws IOException
method writeValue (line 367) | public void writeValue(Map<?,?> target, Object value, JavaPropsSchema ...
method writeValueAsProperties (line 384) | public Properties writeValueAsProperties(Object value)
method writeValueAsProperties (line 396) | public Properties writeValueAsProperties(Object value, JavaPropsSchema...
method writeValueAsMap (line 409) | public Map<String, String> writeValueAsMap(Object value) throws IOExce...
method writeValueAsMap (line 420) | public Map<String, String> writeValueAsMap(Object value, JavaPropsSche...
class SharedWrapper (line 446) | private final static class SharedWrapper {
method wrapped (line 449) | public static JavaPropsMapper wrapped() { return MAPPER; }
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/JavaPropsParser.java
class JavaPropsParser (line 19) | public class JavaPropsParser extends ParserMinimalBase
method JavaPropsParser (line 80) | public JavaPropsParser(ObjectReadContext readCtxt, IOContext ioCtxt,
method version (line 90) | @Override
method getSchema (line 95) | @Override
method _closeInput (line 123) | @Override
method _releaseBuffers (line 128) | @Override
method streamReadInputSource (line 131) | @Override
method canReadObjectId (line 142) | @Override
method canReadTypeId (line 145) | @Override
method willInternPropertyNames (line 149) | @Override
method streamReadCapabilities (line 152) | @Override
method streamReadContext (line 163) | @Override
method assignCurrentValue (line 165) | @Override public void assignCurrentValue(Object v) { _streamReadContex...
method currentValue (line 166) | @Override public Object currentValue() { return _streamReadContext.cur...
method currentName (line 174) | @Override
method nextToken (line 188) | @Override
method getString (line 228) | @Override
method hasStringCharacters (line 241) | @Override
method getStringCharacters (line 246) | @Override
method getStringLength (line 252) | @Override
method getStringOffset (line 258) | @Override
method getString (line 263) | @Override
method getBinaryValue (line 278) | @SuppressWarnings("resource")
method _getByteArrayBuilder (line 293) | public ByteArrayBuilder _getByteArrayBuilder()
method getEmbeddedObject (line 309) | @Override
method currentTokenLocation (line 314) | @Override
method currentLocation (line 319) | @Override
method getNumberValue (line 330) | @Override
method getNumberType (line 335) | @Override
method getIntValue (line 342) | @Override
method getLongValue (line 347) | @Override
method getBigIntegerValue (line 352) | @Override
method getFloatValue (line 357) | @Override
method getDoubleValue (line 362) | @Override
method getDecimalValue (line 367) | @Override
method isNaN (line 372) | @Override
method _noNumbers (line 383) | protected <T> T _noNumbers() throws StreamReadException {
method _handleEOF (line 388) | @Override
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/JavaPropsSchema.java
class JavaPropsSchema (line 19) | public class JavaPropsSchema
method JavaPropsSchema (line 180) | public JavaPropsSchema() { }
method JavaPropsSchema (line 182) | public JavaPropsSchema(JavaPropsSchema base) {
method pathSplitter (line 203) | public JPropPathSplitter pathSplitter() {
method withFirstArrayOffset (line 211) | public JavaPropsSchema withFirstArrayOffset(int v) {
method withPathSeparator (line 227) | public JavaPropsSchema withPathSeparator(String v) {
method withPathSeparatorEscapeChar (line 264) | public JavaPropsSchema withPathSeparatorEscapeChar(char v) {
method withoutPathSeparator (line 279) | public JavaPropsSchema withoutPathSeparator() {
method withIndexMarker (line 288) | public JavaPropsSchema withIndexMarker(Markers v) {
method withoutIndexMarker (line 297) | public JavaPropsSchema withoutIndexMarker() {
method withParseSimpleIndexes (line 306) | public JavaPropsSchema withParseSimpleIndexes(boolean v) {
method withWriteIndexUsingMarkers (line 315) | public JavaPropsSchema withWriteIndexUsingMarkers(boolean v) {
method withLineIndentation (line 324) | public JavaPropsSchema withLineIndentation(String v) {
method withoutLineIndentation (line 333) | public JavaPropsSchema withoutLineIndentation() {
method withKeyValueSeparator (line 337) | public JavaPropsSchema withKeyValueSeparator(String v) {
method withLineEnding (line 346) | public JavaPropsSchema withLineEnding(String v) {
method withPrefix (line 360) | public JavaPropsSchema withPrefix(String v) {
method withHeader (line 377) | public JavaPropsSchema withHeader(String v) {
method withoutHeader (line 394) | public JavaPropsSchema withoutHeader() {
method getSchemaType (line 404) | @Override
method emptySchema (line 409) | public static JavaPropsSchema emptySchema() {
method firstArrayOffset (line 419) | public int firstArrayOffset() {
method header (line 423) | public String header() {
method indexMarker (line 427) | public Markers indexMarker() {
method lineEnding (line 431) | public String lineEnding() {
method lineIndentation (line 435) | public String lineIndentation() {
method keyValueSeparator (line 439) | public String keyValueSeparator() {
method parseSimpleIndexes (line 443) | public boolean parseSimpleIndexes() {
method pathSeparator (line 447) | public String pathSeparator() {
method pathSeparatorEscapeChar (line 451) | public char pathSeparatorEscapeChar() {
method prefix (line 455) | public String prefix() {
method writeIndexUsingMarkers (line 459) | public boolean writeIndexUsingMarkers() {
method _equals (line 463) | private <V> boolean _equals(V a, V b) {
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/impl/PropertiesBackedGenerator.java
class PropertiesBackedGenerator (line 11) | public class PropertiesBackedGenerator extends JavaPropsGenerator
method PropertiesBackedGenerator (line 31) | @SuppressWarnings("unchecked")
method streamWriteOutputTarget (line 49) | @Override
method streamWriteOutputBuffered (line 54) | @Override
method close (line 63) | @Override
method flush (line 66) | @Override
method _closeInput (line 75) | @Override
method _releaseBuffers (line 78) | @Override
method _appendPropertyName (line 81) | @Override
method _writeEscapedEntry (line 93) | @Override
method _writeEscapedEntry (line 98) | @Override
method _writeUnescapedEntry (line 104) | @Override
method _writeRaw (line 122) | @Override
method _writeRaw (line 127) | @Override
method _writeRaw (line 132) | @Override
method _writeRaw (line 137) | @Override
method _writeRawLong (line 142) | protected void _writeRawLong(String text) throws JacksonException
method _writeRawLong (line 146) | protected void _writeRawLong(StringBuilder text) throws JacksonException
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/impl/WriterBackedGenerator.java
class WriterBackedGenerator (line 12) | public class WriterBackedGenerator extends JavaPropsGenerator
method WriterBackedGenerator (line 54) | public WriterBackedGenerator(ObjectWriteContext writeCtxt, IOContext i...
method streamWriteOutputTarget (line 70) | @Override
method streamWriteOutputBuffered (line 75) | @Override
method close (line 86) | @Override
method _closeInput (line 99) | @Override
method flush (line 112) | @Override
method _releaseBuffers (line 133) | @Override
method _flushBuffer (line 143) | protected void _flushBuffer() throws JacksonException
method _appendPropertyName (line 155) | @Override
method _writeEscapedEntry (line 168) | @Override
method _writeEscapedEntry (line 179) | @Override
method _writeUnescapedEntry (line 190) | @Override
method _writeEscaped (line 201) | protected void _writeEscaped(String value) throws JacksonException
method _writeEscaped (line 211) | protected void _writeEscaped(char[] text, int offset, int len) throws ...
method _writeLinefeed (line 216) | protected void _writeLinefeed() throws JacksonException
method _writeRaw (line 227) | @Override
method _writeRaw (line 236) | @Override
method _writeRaw (line 256) | @Override
method _writeRaw (line 276) | @Override
method _writeRawLong (line 298) | protected void _writeRawLong(String text) throws JacksonException
method _writeRawLong (line 320) | protected void _writeRawLong(StringBuilder text) throws JacksonException
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/io/JPropEscapes.java
class JPropEscapes (line 8) | public class JPropEscapes
method appendKey (line 53) | public static void appendKey(StringBuilder sb, String key) {
method appendValue (line 75) | public static StringBuilder appendValue(String value) {
method _appendWithEscapes (line 102) | private static void _appendWithEscapes(StringBuilder sb, String key,
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/io/JPropReadContext.java
class JPropReadContext (line 14) | public abstract class JPropReadContext
method JPropReadContext (line 50) | public JPropReadContext(int contextType, JPropReadContext p, JPropNode...
method create (line 58) | public static JPropReadContext create(JPropNode root) {
method getParent (line 72) | @Override
method currentName (line 75) | @Override
method overrideCurrentName (line 80) | public void overrideCurrentName(String name) {
method currentValue (line 84) | @Override
method assignCurrentValue (line 89) | @Override
method nextToken (line 100) | public abstract JsonToken nextToken();
method nextContext (line 106) | public JPropReadContext nextContext()
method getCurrentText (line 119) | public String getCurrentText() {
class ArrayContext (line 132) | protected final static class ArrayContext
method ArrayContext (line 142) | public ArrayContext(JPropReadContext p, JPropNode arrayNode) {
method nextToken (line 148) | @Override
class ObjectContext (line 183) | protected final static class ObjectContext
method ObjectContext (line 198) | public ObjectContext(JPropReadContext p, JPropNode objectNode)
method nextToken (line 205) | @Override
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/io/JPropWriteContext.java
class JPropWriteContext (line 5) | public class JPropWriteContext
method JPropWriteContext (line 54) | protected JPropWriteContext(int type, JPropWriteContext parent,
method reset (line 66) | private void reset(int type, Object currValue, int basePathLength) {
method createRootContext (line 77) | public static JPropWriteContext createRootContext() {
method createRootContext (line 81) | public static JPropWriteContext createRootContext(int basePathLength) {
method createChildArrayContext (line 85) | public JPropWriteContext createChildArrayContext(Object currValue, int...
method createChildObjectContext (line 95) | public JPropWriteContext createChildObjectContext(Object currValue, in...
method writeName (line 111) | public boolean writeName(String name)
method writeValue (line 121) | public boolean writeValue() {
method truncatePath (line 134) | public void truncatePath(StringBuilder sb) {
method getParent (line 152) | @Override
method currentName (line 155) | @Override
method currentValue (line 160) | @Override
method assignCurrentValue (line 165) | @Override
method appendDesc (line 170) | public StringBuilder appendDesc(StringBuilder sb) {
method toString (line 195) | @Override
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/io/Latin1Reader.java
class Latin1Reader (line 12) | public final class Latin1Reader extends Reader
method Latin1Reader (line 60) | public Latin1Reader(byte[] buf, int ptr, int len)
method Latin1Reader (line 70) | public Latin1Reader(IOContext ctxt, InputStream in)
method getReadCharsCount (line 86) | public int getReadCharsCount() {
method close (line 96) | @Override
method read (line 112) | @Override
method read (line 124) | @Override
method read (line 129) | @Override
method loadMore (line 174) | private boolean loadMore() throws IOException
method freeBuffers (line 201) | private final void freeBuffers()
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/util/JPropNode.java
class JPropNode (line 13) | public class JPropNode
method setValue (line 34) | public JPropNode setValue(String v) {
method addByIndex (line 40) | public JPropNode addByIndex(int index) {
method addByName (line 58) | public JPropNode addByName(String name) {
method isLeaf (line 83) | public boolean isLeaf() {
method isArray (line 87) | public boolean isArray() {
method getValue (line 91) | public String getValue() {
method arrayContents (line 95) | public Iterator<JPropNode> arrayContents() {
method objectContents (line 103) | public Iterator<Map.Entry<String, JPropNode>> objectContents() {
method asRaw (line 114) | public Object asRaw() {
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/util/JPropNodeBuilder.java
class JPropNodeBuilder (line 7) | public class JPropNodeBuilder
method build (line 9) | public static JPropNode build(Map<?,?> content, JavaPropsSchema schema)
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/util/JPropPathSplitter.java
class JPropPathSplitter (line 13) | public abstract class JPropPathSplitter
method JPropPathSplitter (line 17) | protected JPropPathSplitter(boolean useSimpleIndex) {
method create (line 21) | public static JPropPathSplitter create(JavaPropsSchema schema)
method pathOnlySplitter (line 42) | private static JPropPathSplitter pathOnlySplitter(JavaPropsSchema schema)
method splitAndAdd (line 61) | public abstract JPropNode splitAndAdd(JPropNode parent,
method _addSegment (line 70) | protected JPropNode _addSegment(JPropNode parent, String segment)
method _lastSegment (line 81) | protected JPropNode _lastSegment(JPropNode parent, String path, int st...
method _asInt (line 92) | protected int _asInt(String segment) {
class NonSplitting (line 121) | public static class NonSplitting extends JPropPathSplitter
method NonSplitting (line 125) | private NonSplitting() { super(false); }
method splitAndAdd (line 127) | @Override
class CharPathOnlySplitter (line 139) | public static class CharPathOnlySplitter extends JPropPathSplitter
method CharPathOnlySplitter (line 144) | public CharPathOnlySplitter(char sepChar, char pathSeparatorEscapeCh...
method splitAndAdd (line 151) | @Override
method _continueWithEscapes (line 181) | private JPropNode _continueWithEscapes(JPropNode parent, String key,...
class StringPathOnlySplitter (line 226) | public static class StringPathOnlySplitter extends JPropPathSplitter
method StringPathOnlySplitter (line 231) | public StringPathOnlySplitter(String pathSeparator, boolean useIndex)
method splitAndAdd (line 238) | @Override
class IndexOnlySplitter (line 265) | public static class IndexOnlySplitter extends JPropPathSplitter
method IndexOnlySplitter (line 269) | public IndexOnlySplitter(boolean useSimpleIndex,
method splitAndAdd (line 278) | @Override
method _splitMore (line 292) | protected JPropNode _splitMore(JPropNode parent, String prefix, Stri...
class FullSplitter (line 309) | public static class FullSplitter extends JPropPathSplitter
method FullSplitter (line 319) | public FullSplitter(String pathSeparator, boolean useSimpleIndex,
method splitAndAdd (line 339) | @Override
FILE: properties/src/main/java/tools/jackson/dataformat/javaprop/util/Markers.java
class Markers (line 7) | public class Markers
method Markers (line 11) | protected Markers(String start, String end) {
method create (line 27) | public static Markers create(String start, String end) {
method getStart (line 31) | public String getStart() {
method getEnd (line 35) | public String getEnd() {
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/ArrayGenerationTest.java
class ArrayGenerationTest (line 12) | public class ArrayGenerationTest extends ModuleTestBase
method testPointListSimple (line 16) | @Test
method testPointListWithIndex (line 43) | @Test
method testPointListWithCustomMarkers (line 74) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/ArrayParsingTest.java
class ArrayParsingTest (line 18) | public class ArrayParsingTest extends ModuleTestBase
class ZKConfig (line 20) | static class ZKConfig {
class ZKServer (line 29) | static class ZKServer {
method ZKServer (line 33) | @JsonCreator
method asString (line 47) | @JsonValue
class StringArrayWrapper (line 53) | static class StringArrayWrapper {
method testArrayWithBranch (line 65) | @Test
method testPointList (line 101) | @Test
method _testPointList (line 110) | private void _testPointList(boolean useBytes, boolean allowIndex) thro...
method testPointListWithIndex (line 139) | @Test
method _testPointListWithIndex (line 146) | private void _testPointListWithIndex(boolean useBytes) throws Exception
method testZKPojo (line 164) | @Test
method _testZKPojo (line 173) | public void _testZKPojo(boolean useBytes, boolean allowIndex) throws E...
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/BinaryParsingTest.java
class BinaryParsingTest (line 11) | public class BinaryParsingTest extends ModuleTestBase
class MyBean (line 14) | static class MyBean {
method MyBean (line 19) | protected MyBean() { }
method MyBean (line 20) | public MyBean(boolean bogus) {
method testMultipleBinaryFields (line 36) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/CustomSeparatorsTest.java
class CustomSeparatorsTest (line 9) | public class CustomSeparatorsTest extends ModuleTestBase
method testCustomPathSeparator (line 13) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/DefaultConfigsTest.java
class DefaultConfigsTest (line 11) | public class DefaultConfigsTest extends ModuleTestBase
method testFactoryBaseConfig (line 15) | @Test
method testGeneratorConfig (line 28) | @Test
method testParserConfig (line 41) | @Test
method _verifyVersion (line 54) | private void _verifyVersion(Versioned v) {
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/GenerationEscapingTest.java
class GenerationEscapingTest (line 12) | public class GenerationEscapingTest extends ModuleTestBase
method testKeyEscaping (line 16) | @Test
method testValueEscaping (line 32) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/GeneratorFileCloseOnErrorTest.java
class GeneratorFileCloseOnErrorTest (line 17) | public class GeneratorFileCloseOnErrorTest extends ModuleTestBase
method testOutputClosedWhenFlushFailsDuringClose (line 22) | @Test
method testOutputClosedOnSuccessfulWrite (line 44) | @Test
class FailOnDemandWriter (line 54) | static class FailOnDemandWriter extends Writer {
method write (line 59) | @Override
method flush (line 67) | @Override
method close (line 72) | @Override
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/JDKSerializabilityTest.java
class JDKSerializabilityTest (line 11) | public class JDKSerializabilityTest extends ModuleTestBase
method testMapperSerializability (line 13) | @Test
method serializeAndDeserialize (line 37) | private JavaPropsMapper serializeAndDeserialize(JavaPropsMapper mapper...
method _simpleData (line 53) | private Object _simpleData() {
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/MapParsingTest.java
class MapParsingTest (line 12) | public class MapParsingTest extends ModuleTestBase
class MapWrapper (line 14) | static class MapWrapper {
method testMapWithBranchNoEscaping (line 24) | @Test
method testMapWithBranchBackslashEscape (line 45) | @Test
method testMapWithBranchHashEscape (line 83) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/ModuleTestBase.java
class ModuleTestBase (line 17) | public abstract class ModuleTestBase
class Rectangle (line 19) | @JsonPropertyOrder({ "topLeft", "bottomRight" })
method Rectangle (line 24) | protected Rectangle() { }
method Rectangle (line 25) | public Rectangle(Point p1, Point p2) {
class Point (line 31) | @JsonPropertyOrder({ "x", "y" })
method Point (line 35) | protected Point() { }
method Point (line 36) | public Point(int x0, int y0) {
class Points (line 42) | protected static class Points {
method Points (line 45) | protected Points() { }
method Points (line 46) | public Points(Point... p0) {
type Gender (line 51) | public enum Gender { MALE, FEMALE }
class FiveMinuteUser (line 56) | @JsonPropertyOrder({"firstName", "lastName", "gender" ,"verified", "us...
method FiveMinuteUser (line 66) | public FiveMinuteUser() { }
method FiveMinuteUser (line 68) | public FiveMinuteUser(String first, String last, boolean verified, G...
method isVerified (line 77) | public boolean isVerified() { return _isVerified; }
method getGender (line 78) | public Gender getGender() { return _gender; }
method getUserImage (line 79) | public byte[] getUserImage() { return _userImage; }
method setVerified (line 81) | public void setVerified(boolean b) { _isVerified = b; }
method setGender (line 82) | public void setGender(Gender g) { _gender = g; }
method setUserImage (line 83) | public void setUserImage(byte[] b) { _userImage = b; }
method equals (line 85) | @Override
method hashCode (line 105) | @Override
class IdDesc (line 112) | @JsonPropertyOrder({"id", "desc"})
method IdDesc (line 116) | protected IdDesc() { }
method IdDesc (line 117) | public IdDesc(String id, String desc) {
method ModuleTestBase (line 123) | protected ModuleTestBase() { }
method propertiesFactoryBuilder (line 131) | protected JavaPropsFactoryBuilder propertiesFactoryBuilder() {
method newPropertiesMapper (line 135) | protected JavaPropsMapper newPropertiesMapper() {
method propertiesMapperBuilder (line 139) | protected JavaPropsMapper.Builder propertiesMapperBuilder() {
method propertiesMapperBuilder (line 143) | protected JavaPropsMapper.Builder propertiesMapperBuilder(JavaPropsFac...
method _mapFrom (line 153) | protected final <T> T _mapFrom(ObjectMapper mapper, String input, Clas...
method _mapFrom (line 164) | protected final <T> T _mapFrom(ObjectReader reader, String input, Clas...
method q (line 181) | public String q(String str) {
method a2q (line 185) | protected String a2q(String json) {
method utf8 (line 189) | public byte[] utf8(String str) {
method assertToken (line 193) | protected void assertToken(JsonToken expToken, JsonToken actToken) {
method assertToken (line 199) | protected void assertToken(JsonToken expToken, JsonParser jp) {
method assertType (line 203) | protected void assertType(Object ob, Class<?> expType)
method getAndVerifyText (line 219) | protected String getAndVerifyText(JsonParser jp) throws IOException
method verifyFieldName (line 235) | protected void verifyFieldName(JsonParser p, String expName)
method verifyIntValue (line 242) | protected void verifyIntValue(JsonParser jp, long expValue)
method verifyException (line 249) | protected void verifyException(Throwable e, String... matches)
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/NumberDeserWithPropsTest.java
class NumberDeserWithPropsTest (line 16) | public class NumberDeserWithPropsTest extends ModuleTestBase
class NodeRoot2644 (line 19) | static class NodeRoot2644 {
class NodeParent2644 (line 29) | public static class NodeParent2644 extends Node2644 { }
class Node2644 (line 31) | public static abstract class Node2644 {
method getVal (line 35) | public BigDecimal getVal() {
method setVal (line 39) | public void setVal(BigDecimal val) {
class BigDecimalHolder2784 (line 45) | static class BigDecimalHolder2784 {
class NestedBigDecimalHolder2784 (line 49) | static class NestedBigDecimalHolder2784 {
method testBigDecimalSubtypes (line 63) | @Test
method testBigDecimalUnwrapped (line 79) | @Test
method testVeryBigDecimalUnwrapped (line 88) | @Test
method testVeryBigDecimalUnwrappedWithNumLenUnlimited (line 109) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/PrefixTest.java
class PrefixTest (line 11) | public class PrefixTest extends ModuleTestBase
method testPrefixParsing (line 15) | @Test
method testPrefixGeneration (line 30) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/PropertiesSupportTest.java
class PropertiesSupportTest (line 13) | public class PropertiesSupportTest extends ModuleTestBase
class TestObject91 (line 15) | static class TestObject91 {
method getValues (line 17) | public Map<String, String> getValues() {
method setValues (line 20) | public void setValues(Map<String, String> values) {
method testSimpleEmployeeFromProperties (line 27) | @Test
method testSimpleEmployeeFromMap (line 37) | @Test
method _verifySimple (line 46) | private void _verifySimple(Map<?,?> result)
method testWithCustomSchemaFromProperties (line 59) | @Test
method testWithCustomSchemaFromMap (line 73) | @Test
method _verifyCustom (line 86) | private void _verifyCustom(Map<?,?> result)
method testEscapingWithReadPropertiesAs (line 106) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/SchemaConstructionTest.java
class SchemaConstructionTest (line 10) | public class SchemaConstructionTest extends ModuleTestBase
method testMutantFactories (line 13) | @Test
method testWithPathSeparatorEscapeChar (line 48) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/SimpleGenerationTest.java
class SimpleGenerationTest (line 11) | public class SimpleGenerationTest extends ModuleTestBase
method testSimpleEmployee (line 15) | @Test
method testSimpleRectangle (line 41) | @Test
method testRectangleWithCustomKeyValueSeparator (line 63) | @Test
method testRectangleWithHeader (line 87) | @Test
method testRectangleWithIndent (line 104) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/SimpleParsingTest.java
class SimpleParsingTest (line 12) | public class SimpleParsingTest extends ModuleTestBase
method testSimpleNonNested (line 18) | @Test
method testSimpleNested (line 24) | @Test
method testSimpleRectangle (line 30) | @Test
method testNonSplittingParsing (line 36) | @Test
method _testSimpleNonNested (line 46) | private void _testSimpleNonNested(boolean useBytes) throws Exception
method _testSimpleNested (line 58) | private void _testSimpleNested(boolean useBytes) throws Exception
method _testSimpleRectangle (line 67) | private void _testSimpleRectangle(boolean useBytes) throws Exception
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/SimpleStreamingTest.java
class SimpleStreamingTest (line 20) | public class SimpleStreamingTest extends ModuleTestBase
method testParsing (line 24) | @Test
method testStreamingGeneration (line 88) | @Test
method testStreamingGenerationRaw (line 137) | @Test
method testStreamingLongRaw (line 165) | @Test
method _verifyGetNumberTypeFail (line 184) | private void _verifyGetNumberTypeFail(JsonParser p, String token) thro...
method _verifyNonNumberTypeException (line 189) | private void _verifyNonNumberTypeException(Exception e, String token) ...
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/StreamClosingTest.java
class StreamClosingTest (line 12) | @SuppressWarnings("resource")
class Bean179 (line 16) | public static class Bean179 {
method toString (line 19) | @Override public String toString() { return "[value: "+value+"]"; }
method testInputStreamClosing (line 24) | @Test
method testReaderClosing (line 44) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/TestVersions.java
class TestVersions (line 15) | public class TestVersions extends ModuleTestBase
method testMapperVersions (line 17) | @Test
method assertVersion (line 37) | private void assertVersion(Versioned vers)
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/WriteContextResetTest.java
class WriteContextResetTest (line 13) | public class WriteContextResetTest
method testGotNameResetOnContextRecycling (line 17) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/constraints/DeeplyNestedPropsReadWriteTest.java
class DeeplyNestedPropsReadWriteTest (line 17) | public class DeeplyNestedPropsReadWriteTest extends ModuleTestBase
method testDeepNestingRead (line 31) | @Test
method _testDeepNestingRead (line 40) | private void _testDeepNestingRead(JsonParser p) throws Exception
method testDeepNestingWrite (line 51) | @Test
method testDeeplyNestedReadVanilla (line 64) | @Test
method testDeeplyNestedReadWithUnconstrainedMapper (line 79) | @Test
method createDeepNestedDoc (line 92) | private JsonNode createDeepNestedDoc(final int depth) throws Exception
method createDeepNestedString (line 103) | private String createDeepNestedString(final int depth) {
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/constraints/PropsReadConstraintsTest.java
class PropsReadConstraintsTest (line 22) | public class PropsReadConstraintsTest extends ModuleTestBase
method testNameTooLong (line 41) | @Test
method testNameWithinLimit (line 57) | @Test
method testStringValueTooLong (line 68) | @Test
method testStringValueWithinLimit (line 84) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/deser/FuzzPropsReadTest.java
class FuzzPropsReadTest (line 16) | public class FuzzPropsReadTest extends ModuleTestBase
method testInvalidUnicodeEscape50053 (line 21) | @Test
method testDoubleSeparators51247 (line 35) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/deser/convert/CoerceToBooleanTest.java
class CoerceToBooleanTest (line 20) | public class CoerceToBooleanTest
class BooleanPrimitivePOJO (line 23) | static class BooleanPrimitivePOJO {
method setValue (line 26) | public void setValue(boolean v) { value = v; }
class BooleanWrapperPOJO (line 29) | static class BooleanWrapperPOJO {
method setValue (line 32) | public void setValue(Boolean v) { value = v; }
class AtomicBooleanWrapper (line 35) | static class AtomicBooleanWrapper {
method setValue (line 38) | public void setValue(AtomicBoolean v) { value = v; }
method testEmptyStringFailForBooleanPrimitive (line 62) | @Test
method testDefaultStringToBooleanCoercionOk (line 76) | @Test
method testStringToBooleanOkDespiteCoercionConfig (line 87) | @Test
method _verifyStringToBooleanOk (line 98) | public void _verifyStringToBooleanOk(ObjectMapper mapper) throws Excep...
method _verifyCoerceSuccess (line 135) | private <T> T _verifyCoerceSuccess(ObjectMapper mapper,
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/deser/convert/DefaultFromEmptyCoercionsTest.java
class DefaultFromEmptyCoercionsTest (line 20) | public class DefaultFromEmptyCoercionsTest extends ModuleTestBase
class SomePrimitives (line 22) | static class SomePrimitives {
class SomeWrappers (line 28) | static class SomeWrappers {
class StringBean (line 34) | static class StringBean {
class SomeContainers (line 38) | static class SomeContainers {
method testJDKPrimitives (line 53) | @Test
method testJDKWrappers (line 75) | @Test
method testJDKStringTypes (line 99) | @Test
method testJDKContainerTypes (line 113) | @Test
method testPOJOs (line 149) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/filter/StreamingDecoratorsTest.java
class StreamingDecoratorsTest (line 16) | public class StreamingDecoratorsTest extends ModuleTestBase
method testInputDecorators (line 18) | @SuppressWarnings("unchecked")
method testOutputDecorators (line 39) | @SuppressWarnings("unchecked")
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/ser/dos/CyclicPropsDataSerTest.java
class CyclicPropsDataSerTest (line 21) | public class CyclicPropsDataSerTest extends ModuleTestBase
method testListWithSelfReference (line 25) | @Test
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/testutil/CloseStateInputStream.java
class CloseStateInputStream (line 5) | public class CloseStateInputStream extends FilterInputStream
method CloseStateInputStream (line 9) | public CloseStateInputStream(InputStream in) { super(in); }
method close (line 11) | @Override
method forString (line 17) | public static CloseStateInputStream forString(String input) throws IOE...
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/testutil/CloseStateReader.java
class CloseStateReader (line 5) | public class CloseStateReader extends FilterReader
method CloseStateReader (line 9) | public CloseStateReader(Reader r) { super(r); }
method close (line 11) | @Override
method forString (line 17) | public static CloseStateReader forString(String input) throws IOExcept...
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/testutil/PrefixInputDecorator.java
class PrefixInputDecorator (line 9) | @SuppressWarnings("serial")
method PrefixInputDecorator (line 14) | public PrefixInputDecorator(byte[] p) {
method decorate (line 18) | @Override
method decorate (line 26) | @Override
method decorate (line 31) | @Override
class MySequenceInputStream (line 41) | static class MySequenceInputStream extends SequenceInputStream {
method MySequenceInputStream (line 42) | public MySequenceInputStream(InputStream in1, InputStream in2) {
class SequenceReader (line 47) | static class SequenceReader extends Reader {
method SequenceReader (line 50) | public SequenceReader(Reader r1, Reader r2) {
method read (line 55) | @Override
method close (line 74) | @Override
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/testutil/PrefixOutputDecorator.java
class PrefixOutputDecorator (line 8) | @SuppressWarnings("serial")
method PrefixOutputDecorator (line 13) | public PrefixOutputDecorator(byte[] p) {
method decorate (line 17) | @Override
method decorate (line 26) | @Override
class BufferedOut (line 38) | static class BufferedOut extends FilterOutputStream {
method BufferedOut (line 41) | public BufferedOut(OutputStream b, byte[] prefix) {
method write (line 46) | @Override
method write (line 55) | @Override
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/testutil/failure/JacksonTestFailureExpectedInterceptor.java
class JacksonTestFailureExpectedInterceptor (line 15) | public class JacksonTestFailureExpectedInterceptor
method interceptTestMethod (line 18) | @Override
method handleUnexpectePassingTest (line 32) | private void handleUnexpectePassingTest(ReflectiveInvocationContext<Me...
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/testutil/failure/JacksonTestShouldFailException.java
class JacksonTestShouldFailException (line 10) | public class JacksonTestShouldFailException
method JacksonTestShouldFailException (line 15) | public JacksonTestShouldFailException(String msg) {
FILE: properties/src/test/java/tools/jackson/dataformat/javaprop/util/JPropPathSplitterTest.java
class JPropPathSplitterTest (line 10) | public class JPropPathSplitterTest extends ModuleTestBase
method testSplitters (line 12) | @Test
FILE: toml/src/main/java/tools/jackson/dataformat/toml/StringOutputUtil.java
class StringOutputUtil (line 3) | class StringOutputUtil {
method categorize (line 15) | static int categorize(String s) {
method categorize (line 37) | static int categorize(char[] text, int offset, int len) {
method categorize (line 59) | static int categorize(int c) {
method getBasicStringEscape (line 107) | static String getBasicStringEscape(char c) {
FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlFactory.java
class TomlFactory (line 13) | public final class TomlFactory extends TextualTSFactory
method TomlFactory (line 37) | public TomlFactory() {
method TomlFactory (line 43) | TomlFactory(TomlFactory src) {
method TomlFactory (line 52) | TomlFactory(TomlFactoryBuilder b) {
method rebuild (line 56) | @Override
method builder (line 65) | public static TomlFactoryBuilder builder() {
method copy (line 69) | @Override
method snapshot (line 77) | @Override
method readResolve (line 92) | protected Object readResolve() {
method version (line 102) | @Override
method requiresPropertyOrdering (line 107) | @Override
method canUseCharArrays (line 112) | @Override
method canParseAsync (line 117) | @Override
method getFormatName (line 128) | @Override
method canUseSchema (line 133) | @Override
method getFormatReadFeatureType (line 138) | @Override
method getFormatWriteFeatureType (line 143) | @Override
method getFormatReadFeatures (line 148) | @Override
method getFormatWriteFeatures (line 153) | @Override
method isEnabled (line 158) | public boolean isEnabled(TomlReadFeature f) {
method isEnabled (line 162) | public boolean isEnabled(TomlWriteFeature f) {
method _createParser (line 172) | @Override
method _createParser (line 179) | @Override
method _createParser (line 189) | @Override
method _createParser (line 194) | @Override
method _createParser (line 199) | @Override
method _createGenerator (line 210) | @Override
method _createUTF8Generator (line 218) | @Override
method _createWriter (line 223) | @Override
method parse (line 235) | private ObjectNode parse(ObjectReadContext readCtxt, IOContext ctxt, R...
FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlFactoryBuilder.java
class TomlFactoryBuilder (line 13) | public class TomlFactoryBuilder extends DecorableTSFactory.DecorableTSFB...
method TomlFactoryBuilder (line 21) | TomlFactoryBuilder() {
method TomlFactoryBuilder (line 27) | TomlFactoryBuilder(TomlFactory base) {
method build (line 31) | @Override
method enable (line 42) | public TomlFactoryBuilder enable(TomlReadFeature f) {
method enable (line 47) | public TomlFactoryBuilder enable(TomlReadFeature first, TomlReadFeatur...
method disable (line 55) | public TomlFactoryBuilder disable(TomlReadFeature f) {
method disable (line 60) | public TomlFactoryBuilder disable(TomlReadFeature first, TomlReadFeatu...
method configure (line 68) | public TomlFactoryBuilder configure(TomlReadFeature f, boolean state) {
method enable (line 78) | public TomlFactoryBuilder enable(TomlWriteFeature f) {
method enable (line 83) | public TomlFactoryBuilder enable(TomlWriteFeature first, TomlWriteFeat...
method disable (line 91) | public TomlFactoryBuilder disable(TomlWriteFeature f) {
method disable (line 96) | public TomlFactoryBuilder disable(TomlWriteFeature first, TomlWriteFea...
method configure (line 104) | public TomlFactoryBuilder configure(TomlWriteFeature f, boolean state) {
FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlGenerator.java
class TomlGenerator (line 17) | final class TomlGenerator extends GeneratorBase
method TomlGenerator (line 79) | public TomlGenerator(ObjectWriteContext writeCtxt, IOContext ioCtxt,
method version (line 95) | @Override
method streamWriteOutputTarget (line 106) | @Override
method streamWriteOutputBuffered (line 111) | @Override
method close (line 122) | @Override
method _closeInput (line 134) | @Override
method flush (line 147) | @Override
method _releaseBuffers (line 167) | @Override
method _flushBuffer (line 176) | protected void _flushBuffer() throws JacksonException {
method _writeRaw (line 193) | protected JsonGenerator _writeRaw(char c) throws JacksonException {
method _writeRaw (line 201) | protected JsonGenerator _writeRaw(String text) throws JacksonException {
method _writeRaw (line 220) | protected JsonGenerator _writeRaw(StringBuilder text) throws JacksonEx...
method _writeRaw (line 239) | protected JsonGenerator _writeRaw(char[] text, int offset, int len) th...
method _writeRawLong (line 260) | protected void _writeRawLong(String text) throws JacksonException {
method _writeRawLong (line 281) | protected void _writeRawLong(StringBuilder text) throws JacksonExcepti...
method streamWriteContext (line 308) | @Override
method currentValue (line 313) | @Override
method assignCurrentValue (line 318) | @Override
method canWriteObjectId (line 329) | @Override
method canWriteTypeId (line 334) | @Override
method canOmitProperties (line 339) | @Override
method streamWriteCapabilities (line 344) | @Override
method getPrettyPrinter (line 355) | @Override
method writeName (line 366) | @Override
method writePropertyId (line 389) | @Override
method writeStartArray (line 401) | @Override
method writeStartArray (line 406) | @Override
method writeEndArray (line 420) | @Override
method writeStartObject (line 435) | @Override
method writeStartObject (line 440) | @Override
method writeEndObject (line 452) | @Override
method writeString (line 479) | @Override
method writeString (line 489) | @Override
method writeRawUTF8String (line 496) | @Override
method writeUTF8String (line 501) | @Override
method writeRaw (line 513) | @Override
method writeRaw (line 518) | @Override
method writeRaw (line 523) | @Override
method writeRaw (line 528) | @Override
method writeRaw (line 533) | @Override
method writeBinary (line 544) | @Override
method writeBoolean (line 569) | @Override
method writeNumber (line 576) | @Override
method writeNumber (line 582) | @Override
method writeNumber (line 589) | @Override
method writeNumber (line 596) | @Override
method writeNumber (line 606) | @Override
method writeNumber (line 613) | @Override
method writeNumber (line 620) | @Override
method writeNumber (line 631) | @Override
method writeNull (line 641) | @Override
method _verifyValueWrite (line 657) | @Override
method _verifyValueWrite (line 662) | protected void _verifyValueWrite(String typeMsg, boolean forceMaterial...
method writeCurrentPath (line 684) | private void writeCurrentPath() {
method writeValueEnd (line 689) | private JsonGenerator writeValueEnd() {
method _appendPropertyName (line 702) | private void _appendPropertyName(StringBuilder path, String name) {
method _writeStringImpl (line 728) | private void _writeStringImpl(int categoryMask, String name) {
method _writeStringImpl (line 757) | private void _writeStringImpl(int categoryMask, char[] text, int offse...
method writePOJO (line 792) | @Override
FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlMapper.java
class TomlMapper (line 12) | public class TomlMapper extends ObjectMapper
class Builder (line 16) | public static class Builder extends MapperBuilder<TomlMapper, Builder>
method Builder (line 18) | public Builder(TomlFactory f) {
method Builder (line 25) | public Builder(StateImpl state) {
method build (line 29) | @Override
method _saveState (line 34) | @Override
method enable (line 45) | public Builder enable(TomlReadFeature... features) {
method disable (line 52) | public Builder disable(TomlReadFeature... features) {
method configure (line 59) | public Builder configure(TomlReadFeature feature, boolean state)
method enable (line 69) | public Builder enable(TomlWriteFeature... features) {
method disable (line 76) | public Builder disable(TomlWriteFeature... features) {
method configure (line 83) | public Builder configure(TomlWriteFeature feature, boolean state)
class StateImpl (line 93) | protected static class StateImpl extends MapperBuilderState
method StateImpl (line 98) | public StateImpl(Builder src) {
method readResolve (line 104) | @Override
method TomlMapper (line 111) | public TomlMapper() {
method TomlMapper (line 115) | public TomlMapper(TomlFactory f) {
method TomlMapper (line 119) | TomlMapper(Builder b) {
method builder (line 123) | public static Builder builder() {
method builder (line 127) | public static Builder builder(TomlFactory streamFactory) {
method rebuild (line 131) | @SuppressWarnings("unchecked")
method shared (line 149) | public static TomlMapper shared() {
method writeReplace (line 161) | @Override
method readResolve (line 166) | @Override
method version (line 177) | @Override
method tokenStreamFactory (line 182) | @Override
method isEnabled (line 193) | public boolean isEnabled(TomlReadFeature f) {
method isEnabled (line 197) | public boolean isEnabled(TomlWriteFeature f) {
class SharedWrapper (line 211) | private final static class SharedWrapper {
method wrapped (line 214) | public static TomlMapper wrapped() { return MAPPER; }
FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlParser.java
class TomlParser (line 17) | class TomlParser {
method TomlParser (line 29) | private TomlParser(
method parse (line 51) | public static ObjectNode parse(
method getNestingDepth (line 70) | int getNestingDepth() {
method peek (line 74) | private TomlToken peek() throws TomlStreamReadException {
method poll (line 83) | private TomlToken poll(int nextState) throws IOException {
method pollExpected (line 90) | private void pollExpected(TomlToken expected, int nextState) throws IO...
method parse (line 97) | public ObjectNode parse() throws IOException {
method parseAndEnterKey (line 134) | private FieldRef parseAndEnterKey(
method parseValue (line 189) | private JsonNode parseValue(int nextState) throws IOException {
method parseDateTime (line 220) | private JsonNode parseDateTime(int nextState) throws IOException {
method parseInt (line 250) | private JsonNode parseInt(int nextState) throws IOException {
method parseIntFromBuffer (line 270) | private ValueNode parseIntFromBuffer(char[] buffer, int start, int len...
method parseFloat (line 363) | private JsonNode parseFloat(int nextState) throws IOException {
method parseInlineTable (line 389) | private ObjectNode parseInlineTable(int nextState) throws IOException {
method parseArray (line 421) | private ArrayNode parseArray(int nextState) throws IOException {
method parseKeyVal (line 448) | private void parseKeyVal(TomlObjectNode target, int nextState) throws ...
method getOrCreateObject (line 459) | private TomlObjectNode getOrCreateObject(ObjectNode node, String field...
method getOrCreateArray (line 469) | private TomlArrayNode getOrCreateArray(ObjectNode node, String field) ...
class FieldRef (line 480) | private static class FieldRef {
method FieldRef (line 484) | FieldRef(TomlObjectNode object, String key) {
class TomlObjectNode (line 490) | @SuppressWarnings("serial") // only used internally, no need to be JDK...
method TomlObjectNode (line 495) | TomlObjectNode(JsonNodeFactory nc) {
class TomlArrayNode (line 500) | @SuppressWarnings("serial") // only used internally, no need to be JDK...
method TomlArrayNode (line 504) | TomlArrayNode(JsonNodeFactory nf) {
method TomlArrayNode (line 508) | TomlArrayNode(JsonNodeFactory nf, int capacity) {
class JsonNodeFactoryImpl (line 513) | @SuppressWarnings("serial") // only used internally, no need to be JDK...
method JsonNodeFactoryImpl (line 515) | public JsonNodeFactoryImpl() {
method arrayNode (line 519) | @Override
method arrayNode (line 524) | @Override
method objectNode (line 529) | @Override
FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlReadFeature.java
type TomlReadFeature (line 8) | public enum TomlReadFeature
method collectDefaults (line 28) | public static int collectDefaults()
method TomlReadFeature (line 39) | private TomlReadFeature(boolean defaultState) {
method enabledByDefault (line 44) | @Override
method enabledIn (line 46) | @Override
method getMask (line 48) | @Override
FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlStreamReadException.java
class TomlStreamReadException (line 8) | public class TomlStreamReadException
method TomlStreamReadException (line 13) | TomlStreamReadException(JsonParser p, String msg, TokenStreamLocation ...
method TomlStreamReadException (line 17) | TomlStreamReadException(JsonParser p, String msg, TokenStreamLocation ...
method withParser (line 21) | @Override
class ErrorContext (line 27) | static class ErrorContext {
method ErrorContext (line 31) | ErrorContext(ContentReference contentReference, JsonParser parser) {
method atPosition (line 36) | ErrorBuilder atPosition(Lexer lexer) {
class ErrorBuilder (line 40) | class ErrorBuilder {
method ErrorBuilder (line 43) | ErrorBuilder(Lexer lexer) {
method unexpectedToken (line 53) | TomlStreamReadException unexpectedToken(TomlToken actual, String e...
method generic (line 61) | TomlStreamReadException generic(String message) {
method outOfBounds (line 65) | TomlStreamReadException outOfBounds(NumberFormatException cause) {
method invalidNumber (line 70) | TomlStreamReadException invalidNumber(Exception cause, String valu...
FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlStreamWriteException.java
class TomlStreamWriteException (line 6) | public final class TomlStreamWriteException extends StreamWriteException {
method TomlStreamWriteException (line 9) | TomlStreamWriteException(JsonGenerator g, String msg) {
method withGenerator (line 13) | @Override
FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlToken.java
type TomlToken (line 3) | enum TomlToken {
FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlWriteContext.java
class TomlWriteContext (line 5) | final class TomlWriteContext extends TokenStreamContext {
method TomlWriteContext (line 53) | TomlWriteContext(int type, TomlWriteContext parent,
method reset (line 66) | private void reset(int type, Object currValue, int basePathLength) {
method createRootContext (line 78) | static TomlWriteContext createRootContext() {
method createRootContext (line 82) | static TomlWriteContext createRootContext(int basePathLength) {
method createChildArrayContext (line 86) | public TomlWriteContext createChildArrayContext(Object currValue, int ...
method createChildObjectContext (line 96) | public TomlWriteContext createChildObjectContext(Object currValue, int...
method writeName (line 112) | public boolean writeName(String name)
method writeValue (line 122) | public boolean writeValue() {
method truncatePath (line 135) | public void truncatePath(StringBuilder sb) {
method getParent (line 153) | @Override
method currentName (line 156) | @Override
method currentValue (line 161) | @Override
method assignCurrentValue (line 166) | @Override
method appendDesc (line 171) | public StringBuilder appendDesc(StringBuilder sb) {
method toString (line 196) | @Override
FILE: toml/src/main/java/tools/jackson/dataformat/toml/TomlWriteFeature.java
type TomlWriteFeature (line 9) | public enum TomlWriteFeature implements FormatFeature
method collectDefaults (line 31) | public static int collectDefaults()
method TomlWriteFeature (line 42) | private TomlWriteFeature(boolean defaultState) {
method enabledByDefault (line 47) | @Override
method enabledIn (line 49) | @Override
method getMask (line 51) | @Override
FILE: toml/src/main/java/tools/jackson/dataformat/toml/UTF8Reader.java
class UTF8Reader (line 13) | public final class UTF8Reader
method UTF8Reader (line 72) | private UTF8Reader(IOContext ctxt, InputStream in, boolean autoClose,
method construct (line 88) | public static UTF8Reader construct(IOContext ctxt, InputStream in, boo...
method construct (line 97) | public static UTF8Reader construct(byte[] buf, int ptr, int len)
method freeBuffers (line 108) | private void freeBuffers()
method close (line 125) | @Override
method read (line 143) | @Override
method read (line 155) | @Override
method read (line 160) | @Override
method loadMore (line 337) | private boolean loadMore(int available) throws IOException
method readBytes (line 406) | protected final int readBytes() throws IOException
method readBytesAt (line 420) | protected final int readBytesAt(int offset) throws IOException
method reportInvalidInitial (line 439) | private void reportInvalidInitial(int mask, int offset) throws IOExcep...
method reportInvalidOther (line 449) | private void reportInvalidOther(int mask, int offset)
method reportUnexpectedEOF (line 459) | private void reportUnexpectedEOF(int gotBytes, int needed)
method reportBounds (line 469) | protected void reportBounds(char[] cbuf, int start, int len) throws IO...
method reportStrangeStream (line 473) | protected void reportStrangeStream() throws IOException {
FILE: toml/src/test/java/tools/jackson/dataformat/toml/ComplexPojoReadWriteTest.java
class ComplexPojoReadWriteTest (line 13) | public class ComplexPojoReadWriteTest extends TomlMapperTestBase
type Size (line 15) | enum Size { SMALL, LARGE; }
class MediaItem (line 17) | static class MediaItem
method MediaItem (line 22) | public MediaItem() { }
method MediaItem (line 24) | public MediaItem(MediaContent c) {
method addPhoto (line 28) | public void addPhoto(Image p) {
method getImages (line 35) | public List<Image> getImages() { return _images; }
method setImages (line 36) | public void setImages(List<Image> p) { _images = p; }
method getContent (line 38) | public MediaContent getContent() { return _content; }
method setContent (line 39) | public void setContent(MediaContent c) { _content = c; }
class MediaContent (line 42) | static class MediaContent
type Player (line 44) | public enum Player { JAVA, FLASH; }
method MediaContent (line 58) | public MediaContent() { }
method MediaContent (line 60) | protected MediaContent(MediaContent src) {
method addPerson (line 74) | public void addPerson(String p) {
method getPlayer (line 81) | public Player getPlayer() { return _player; }
method getUri (line 82) | public String getUri() { return _uri; }
method getTitle (line 83) | public String getTitle() { return _title; }
method getWidth (line 84) | public int getWidth() { return _width; }
method getHeight (line 85) | public int getHeight() { return _height; }
method getFormat (line 86) | public String getFormat() { return _format; }
method getDuration (line 87) | public long getDuration() { return _duration; }
method getSize (line 88) | public long getSize() { return _size; }
method getBitrate (line 89) | public int getBitrate() { return _bitrate; }
method getPersons (line 90) | public List<String> getPersons() { return _persons; }
method getCopyright (line 91) | public String getCopyright() { return _copyright; }
method setPlayer (line 93) | public void setPlayer(Player p) { _player = p; }
method setUri (line 94) | public void setUri(String u) { _uri = u; }
method setTitle (line 95) | public void setTitle(String t) { _title = t; }
method setWidth (line 96) | public void setWidth(int w) { _width = w; }
method setHeight (line 97) | public void setHeight(int h) { _height = h; }
method setFormat (line 98) | public void setFormat(String f) { _format = f; }
method setDuration (line 99) | public void setDuration(long d) { _duration = d; }
method setSize (line 100) | public void setSize(long s) { _size = s; }
method setBitrate (line 101) | public void setBitrate(int b) { _bitrate = b; }
method setPersons (line 102) | public void setPersons(List<String> p) { _persons = p; }
method setCopyright (line 103) | public void setCopyright(String c) { _copyright = c; }
class Image (line 106) | static class Image
method Image (line 114) | public Image() {}
method Image (line 115) | public Image(String uri, String title, int w, int h, Size s)
method getUri (line 124) | public String getUri() { return _uri; }
method getTitle (line 125) | public String getTitle() { return _title; }
method getWidth (line 126) | public int getWidth() { return _width; }
method getHeight (line 127) | public int getHeight() { return _height; }
method getSize (line 128) | public Size getSize() { return _size; }
method setUri (line 130) | public void setUri(String u) { _uri = u; }
method setTitle (line 131) | public void setTitle(String t) { _title = t; }
method setWidth (line 132) | public void setWidth(int w) { _width = w; }
method setHeight (line 133) | public void setHeight(int h) { _height = h; }
method setSize (line 134) | public void setSize(Size s) { _size = s; }
method testReadWriteComplexPojo (line 144) | @Test
FILE: toml/src/test/java/tools/jackson/dataformat/toml/ComplianceInvalidTest.java
class ComplianceInvalidTest (line 15) | public class ComplianceInvalidTest extends TomlMapperTestBase
method ComplianceInvalidTest (line 21) | public ComplianceInvalidTest(Path path) {
method test (line 27) | @Disabled
method data (line 39) | public static Stream<Object[]> data() throws IOException {
FILE: toml/src/test/java/tools/jackson/dataformat/toml/ComplianceValidTest.java
class ComplianceValidTest (line 23) | public class ComplianceValidTest extends TomlMapperTestBase
method data (line 25) | public static Stream<Object[]> data() throws IOException {
method ComplianceValidTest (line 55) | public ComplianceValidTest(Path path, ObjectNode expected) {
method test (line 62) | @Disabled
method mapFromComplianceNode (line 72) | private static JsonNode mapFromComplianceNode(ObjectNode expected) {
FILE: toml/src/test/java/tools/jackson/dataformat/toml/FuzzTomlRead57237Test.java
class FuzzTomlRead57237Test (line 17) | public class FuzzTomlRead57237Test extends TomlMapperTestBase
method testArrayCopy57237 (line 22) | @Test
method verifyException (line 37) | protected void verifyException(Throwable e, String... matches)
FILE: toml/src/test/java/tools/jackson/dataformat/toml/FuzzTomlReadTest.java
class FuzzTomlReadTest (line 21) | public class FuzzTomlReadTest extends TomlMapperTestBase
method testBigIntegerDecoding50033 (line 26) | @Test
method testUTF8Decoding50036 (line 44) | @Test
method testParseInlineTable50432 (line 58) | @Test
method testCodepoint51654 (line 75) | @Test
method testBigDecimalOverflow (line 90) | @Test
method testNumberParsingFail50395 (line 104) | @Test
method testStackOverflow50083 (line 116) | @Test
method verifyException (line 133) | protected void verifyException(Throwable e, String... matches)
FILE: toml/src/test/java/tools/jackson/dataformat/toml/LongTokenTest.java
class LongTokenTest (line 16) | public class LongTokenTest extends TomlMapperTestBase {
method decimal (line 25) | @Test
method decimalTooLong (line 40) | @Test
method integer (line 58) | @Test
method comment (line 71) | @Test
method arrayWhitespace (line 82) | @Test
method unquotedKey (line 93) | @Test
method string (line 105) | @Test
method stringEscapes (line 116) | @Test
FILE: toml/src/test/java/tools/jackson/dataformat/toml/POJOReadWriteTest.java
class POJOReadWriteTest (line 18) | public class POJOReadWriteTest extends TomlMapperTestBase
class Rectangle (line 20) | @JsonPropertyOrder({ "topLeft", "bottomRight" })
method Rectangle (line 25) | protected Rectangle() { }
method Rectangle (line 26) | public Rectangle(Point p1, Point p2) {
method equals (line 31) | @Override
method toString (line 40) | @Override
class Point (line 46) | @JsonPropertyOrder({ "x", "y" })
method Point (line 50) | protected Point() { }
method Point (line 51) | public Point(int x0, int y0) {
method equals (line 56) | @Override
method toString (line 64) | @Override
class PointWrapper (line 70) | protected static class PointWrapper {
method PointWrapper (line 73) | public PointWrapper(Point p) { point = p; }
method PointWrapper (line 74) | protected PointWrapper() { }
class PointListBean (line 77) | @JsonPropertyOrder({ "ids", "points" })
method PointListBean (line 82) | protected PointListBean() { }
method PointListBean (line 83) | protected PointListBean(List<String> ids, List<Point> points) {
type Gender (line 89) | public enum Gender { MALE, FEMALE }
class FiveMinuteUser (line 94) | @JsonPropertyOrder({"firstName", "lastName", "gender" ,"verified", "us...
method FiveMinuteUser (line 104) | public FiveMinuteUser() { }
method FiveMinuteUser (line 106) | public FiveMinuteUser(String first, String last, boolean verified, G...
method isVerified (line 115) | public boolean isVerified() { return _isVerified; }
method getGender (line 116) | public Gender getGender() { return _gender; }
method getUserImage (line 117) | public byte[] getUserImage() { return _userImage; }
method setVerified (line 119) | public void setVerified(boolean b) { _isVerified = b; }
method setGender (line 120) | public void setGender(Gender g) { _gender = g; }
method setUserImage (line 121) | public void setUserImage(byte[] b) { _userImage = b; }
method equals (line 123) | @Override
method hashCode (line 143) | @Override
method testSimpleEmployee (line 153) | @Test
method testSimpleRectangle (line 198) | @Test
method testPOJOListBean (line 227) | @Test
FILE: toml/src/test/java/tools/jackson/dataformat/toml/StringOutputUtilTest.java
class StringOutputUtilTest (line 12) | public class StringOutputUtilTest extends TomlMapperTestBase {
method exhaustiveWriteReadTest (line 13) | @Test
method _ioContext (line 102) | private IOContext _ioContext(CharSequence toml) {
FILE: toml/src/test/java/tools/jackson/dataformat/toml/TomlBigStringsTest.java
class TomlBigStringsTest (line 10) | public class TomlBigStringsTest extends TomlMapperTestBase
class StringWrapper (line 14) | final static class StringWrapper
method StringWrapper (line 18) | StringWrapper() { }
method StringWrapper (line 20) | StringWrapper(String string) { this.string = string; }
method setString (line 22) | void setString(String string) {
method newMapperWithUnlimitedStringSizeSupport (line 29) | private TomlMapper newMapperWithUnlimitedStringSizeSupport() {
method testBigString (line 36) | @Test
method testBiggerString (line 49) | @Test
method testUnlimitedString (line 64) | @Test
method generateToml (line 73) | private String generateToml(final int len) {
FILE: toml/src/test/java/tools/jackson/dataformat/toml/TomlGeneratorFileCloseOnErrorTest.java
class TomlGeneratorFileCloseOnErrorTest (line 17) | public class TomlGeneratorFileCloseOnErrorTest extends TomlMapperTestBase
method testOutputClosedWhenFlushFailsDuringClose (line 22) | @Test
method testOutputClosedOnSuccessfulWrite (line 44) | @Test
class FailOnDemandWriter (line 54) | static class FailOnDemandWriter extends Writer {
method write (line 59) | @Override
method flush (line 67) | @Override
method close (line 72) | @Override
class Pojo (line 79) | static class Pojo {
method Pojo (line 82) | Pojo(String foo) {
FILE: toml/src/test/java/tools/jackson/dataformat/toml/TomlGeneratorTest.java
class TomlGeneratorTest (line 14) | public class TomlGeneratorTest extends TomlMapperTestBase {
method number (line 15) | @Test
method bool (line 27) | @Test
method floats (line 39) | @Test
method stringNormal (line 51) | @Test
method stringApostrophe (line 63) | @Test
method stringQuote (line 75) | @Test
method stringQuoteApostrophe (line 87) | @Test
method stringControlCharUnicode (line 99) | @Test
method stringControlCharSpecial (line 111) | @Test
method binary (line 123) | @Test
method emptyObject (line 135) | @Test
method objectWithValues (line 148) | @Test
method emptyArray (line 165) | @Test
method arrayWithScalars (line 178) | @Test
method arrayMixed (line 194) | @Test
method temporal (line 214) | @Test
method complexKey (line 231) | @Test
method nestedObjectValues (line 244) | @Test
method _writeNested (line 265) | private void _writeNested(JsonGenerator g) throws IOException {
method nullEnabledDefault (line 277) | @Test
method nullDisable (line 289) | @Test
FILE: toml/src/test/java/tools/jackson/dataformat/toml/TomlMapperTest.java
class TomlMapperTest (line 19) | public class TomlMapperTest extends TomlMapperTestBase
method string (line 31) | @Test
method bytes (line 36) | @Test
method stream (line 41) | @Test
method reader (line 46) | @Test
class TestClass (line 51) | public static class TestClass {
class Nested (line 55) | public static class Nested {
method equals (line 58) | @Override
method hashCode (line 66) | @Override
method equals (line 72) | @Override
method hashCode (line 80) | @Override
method bigInteger (line 86) | @Test
method bigDecimal (line 97) | @Test
method veryBigDecimal (line 107) | @Test
method veryBigDecimalWithNumLenUnlimited (line 124) | @Test
method temporalFieldFlag (line 143) | @Test
class ObjectField (line 158) | public static class ObjectField {
method testIoException (line 162) | @Test
method nullCoercion (line 176) | @Test
class ComplexField (line 181) | public static class ComplexField {
method nullEnabledDefault (line 185) | @Test
method nullDisable (line 192) | @Test
method testFormatFeatureDefaults (line 204) | @Test
FILE: toml/src/test/java/tools/jackson/dataformat/toml/TomlMapperTestBase.java
class TomlMapperTestBase (line 8) | public abstract class TomlMapperTestBase {
method newTomlFactory (line 9) | protected static TomlFactory newTomlFactory() {
method newTomlMapper (line 13) | protected static TomlMapper newTomlMapper() {
method newTomlMapper (line 17) | protected static TomlMapper newTomlMapper(TomlFactory tomlFactory) {
method testIOContext (line 21) | protected static IOContext testIOContext() {
method testIOContext (line 27) | protected static IOContext testIOContext(StreamReadConstraints src) {
method testIOContext (line 33) | protected static IOContext testIOContext(StreamWriteConstraints swc) {
method testIOContext (line 39) | private static IOContext testIOContext(StreamReadConstraints src,
FILE: toml/src/test/java/tools/jackson/dataformat/toml/TomlParserTest.java
class TomlParserTest (line 26) | public class TomlParserTest extends TomlMapperTestBase {
method json (line 39) | static ObjectNode json(String json) throws JacksonException {
method toml (line 43) | static ObjectNode toml(String toml) throws JacksonException {
method toml (line 47) | static ObjectNode toml(TomlFactory factory, String toml) throws Except...
method tomlInputStream (line 58) | static ObjectNode tomlInputStream(String toml) throws Exception {
method tomlReader (line 63) | static ObjectNode tomlReader(String toml) throws Exception {
method tomlBytes (line 67) | static ObjectNode tomlBytes(String toml) throws Exception {
method unclosed (line 71) | @Test
method keyValuePair (line 81) | @Test
method unspecified (line 88) | @Test
method singleLine (line 95) | @Test
method comment (line 102) | @Test
method bareKeys (line 111) | @Test
method quotedKeys (line 121) | @Test
method bareKeyNonEmpty (line 132) | @Test
method quotedKeyEmpty (line 139) | @Test
method dottedKeys (line 145) | @Test
method dottedKeysWhitespace (line 164) | @Test
method collision (line 173) | @Test
method collisionQuoted (line 182) | @Test
method keyMixed (line 191) | @Test
method collisionNested (line 203) | @Test
method outOfOrder (line 216) | @Test
method inOrder (line 231) | @Test
method numberDottedKey (line 245) | @Test
method stringBasic (line 254) | @Test
method multiLineBasic (line 262) | @Test
method multiLineEscapeNl (line 272) | @Test
method escapedQuotes (line 293) | @Test
method missingQuotesEscape (line 307) | @Test
method literalStrings (line 315) | @Test
method multiLineLiteral (line 326) | @Test
method multiLineLiteralQuotes (line 340) | @Test
method integer (line 350) | @Test
method integerUnderscore (line 361) | @Test
method integerBase (line 372) | @Test
method floats (line 390) | @Test
method invalidFloat1 (line 422) | @Test
method invalidFloat2 (line 430) | @Test
method invalidFloat3 (line 438) | @Test
method floatUnderscore (line 446) | @Test
method floatSpecial (line 454) | @Test
method booleans (line 470) | @Test
method odt (line 480) | @Test
method ldt (line 491) | @Test
method ld (line 500) | @Test
method lt (line 508) | @Test
method array (line 517) | @Test
method arrayMultiLine (line 543) | @Test
method table (line 560) | @Test
method table2 (line 568) | @Test
method tableQuoted (line 582) | @Test
method tableWhitespace (line 591) | @Test
method order (line 604) | @Test
method duplicateTable (line 619) | @Test
method mixedTable (line 631) | @Test
method tableOutOfOrder (line 643) | @Test
method tableInOrder (line 653) | @Test
method rootTable (line 663) | @Test
method dottedDefinesTable (line 677) | @Test
method dottedCollisionRoot (line 693) | @Test
method dottedCollisionNest (line 707) | @Test
method dottedSubTable (line 719) | @Test
method inlineTable (line 737) | @Test
method inlineTableSelfContained (line 747) | @Test
method inlineTableSelfContained2 (line 757) | @Test
method arrayTable (line 767) | @Test
method arrayTableDotted (line 791) | @Test
method arrayTableStillMissing (line 837) | @Test
method arrayInlineAndTable (line 852) | @Test
method arrayCollision1 (line 863) | @Test
method arrayCollision2 (line 880) | @Test
method points (line 898) | @Test
method inlineTableTrailingComma (line 913) | @Test
method inlineTableEmpty (line 921) | @Test
method inlineTableNl (line 929) | @Test
method extendedUnicodeEscape (line 938) | @Test
method extendedUnicodeEscapeInvalid (line 947) | @Test
method intTypes (line 955) | @Test
method longBase (line 968) | @Test
method bigintBase (line 985) | @Test
method javaTimeDeser (line 1002) | @Test
method controlCharInComment (line 1044) | @Test
method controlCharInLiteralString (line 1052) | @Test
method zeroPrefixedInt (line 1060) | @Test
method signedBase (line 1068) | @Test
method illegalComment (line 1076) | @Test
method unknownEscape (line 1084) | @Test
method chunkEdge (line 1092) | @Test
method issue497 (line 1103) | @Test
method repeat (line 1124) | private static String repeat(char c, int n) {
method createIssue497String (line 1130) | private static String createIssue497String() {
FILE: toml/src/test/java/tools/jackson/dataformat/toml/UTF8ReaderTest.java
class UTF8ReaderTest (line 10) | public class UTF8ReaderTest
method testSurrogatePairAtBufferBoundary (line 12) | @Test
FILE: toml/src/test/java/tools/jackson/dataformat/toml/dos/CyclicTOMLDataSerTest.java
class CyclicTOMLDataSerTest (line 20) | public class CyclicTOMLDataSerTest extends TomlMapperTestBase
method testListWithSelfReference (line 24) | @Test
FILE: toml/src/test/java/tools/jackson/dataformat/toml/testutil/failure/JacksonTestFailureExpectedInterceptor.java
class JacksonTestFailureExpectedInterceptor (line 13) | public class JacksonTestFailureExpectedInterceptor
method interceptTestMethod (line 16) | @Override
method handleUnexpectePassingTest (line 30) | private void handleUnexpectePassingTest(ReflectiveInvocationContext<Me...
FILE: toml/src/test/java/tools/jackson/dataformat/toml/testutil/failure/JacksonTestShouldFailException.java
class JacksonTestShouldFailException (line 10) | public class JacksonTestShouldFailException
method JacksonTestShouldFailException (line 15) | public JacksonTestShouldFailException(String msg) {
FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/JacksonYAMLParseException.java
class JacksonYAMLParseException (line 6) | public class JacksonYAMLParseException extends StreamReadException
method JacksonYAMLParseException (line 10) | public JacksonYAMLParseException(JsonParser p, String msg, Exception e) {
FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/JacksonYAMLWriteException.java
class JacksonYAMLWriteException (line 14) | public class JacksonYAMLWriteException extends StreamWriteException
method JacksonYAMLWriteException (line 25) | public JacksonYAMLWriteException(JsonGenerator g, String msg, Exceptio...
FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/UTF8Reader.java
class UTF8Reader (line 13) | public final class UTF8Reader
method UTF8Reader (line 76) | public UTF8Reader(InputStream in, boolean autoClose)
method UTF8Reader (line 95) | public UTF8Reader(byte[] buf, int ptr, int len, boolean autoClose)
method _findBufferHolder (line 108) | private static byte[][] _findBufferHolder()
method close (line 128) | @Override
method read (line 149) | @Override
method read (line 161) | @Override
method read (line 166) | @Override
method getStream (line 340) | protected final InputStream getStream() { return _inputSource; }
method readBytes (line 348) | protected final int readBytes() throws IOException
method readBytesAt (line 369) | protected final int readBytesAt(int offset) throws IOException
method freeBuffers (line 387) | public final void freeBuffers()
method reportInvalidInitial (line 404) | private void reportInvalidInitial(int mask, int offset) throws IOExcep...
method reportInvalidOther (line 414) | private void reportInvalidOther(int mask, int offset)
method reportUnexpectedEOF (line 424) | private void reportUnexpectedEOF(int gotBytes, int needed)
method loadMore (line 451) | private boolean loadMore(int available) throws IOException
method reportBounds (line 520) | protected void reportBounds(char[] cbuf, int start, int len) throws IO...
method reportStrangeStream (line 524) | protected void reportStrangeStream() throws IOException {
FILE: yaml/src/main/java/tools/jackson/dataformat/yaml/UTF8Writer.java
class UTF8Writer (line 6) | public final class UTF8Writer
method UTF8Writer (line 40) | public UTF8Writer(OutputStream out)
method _findBufferHolder (line 59) | private static byte[][] _findBufferHolder()
method append (line 73) | @Override
method close (line 80) | @Override
method flush (line 111) | @Override
method write (line 123) | @Override
method write (line 129) | @Override
method wri
Copy disabled (too large)
Download .json
Condensed preview — 1808 files, each showing path, character count, and a content snippet. Download the .json file for the full structured content (43,448K chars).
[
{
"path": ".gitattributes",
"chars": 172,
"preview": "# Do not merge `pom.xml` from older version, as it will typically conflict\n\npom.xml merge=ours\ncsv/pom.xml merge=ours\npr"
},
{
"path": ".github/FUNDING.yml",
"chars": 97,
"preview": "tidelift: \"maven/com.fasterxml.jackson.dataformat:jackson-dataformats-text\"\ngithub: cowtowncoder\n"
},
{
"path": ".github/dependabot.yml",
"chars": 118,
"preview": "version: 2\nupdates:\n - package-ecosystem: \"github-actions\"\n directory: \"/\"\n schedule:\n interval: \"weekly\"\n"
},
{
"path": ".github/workflows/coverage-comment.yml",
"chars": 1333,
"preview": "name: Post Coverage Comment\non:\n workflow_run:\n workflows: [\"Build and Deploy Snapshot\"]\n types: [completed]\n\nper"
},
{
"path": ".github/workflows/dep_build_v2.yml",
"chars": 882,
"preview": "name: Re-build on jackson-databind v2 push\non:\n repository_dispatch:\n types: [jackson-databind-pushed]\n # just for "
},
{
"path": ".github/workflows/dep_build_v3.yml",
"chars": 881,
"preview": "name: Re-build on jackson-databind v3 push\non:\n repository_dispatch:\n types: [jackson-databind-pushed-v3]\n # just f"
},
{
"path": ".github/workflows/main.yml",
"chars": 7709,
"preview": "name: Build and Deploy Snapshot\non:\n push:\n branches: ['3.*']\n paths-ignore:\n - \"README.md\"\n - \"release-not"
},
{
"path": ".gitignore",
"chars": 164,
"preview": "# use glob syntax.\nsyntax: glob\n*.class\n*~\n*.bak\n*.off\n*.old\n.DS_Store\n\n# building\ntarget\n\n# Eclipse\n.classpath\n.project"
},
{
"path": ".mvn/wrapper/MavenWrapperDownloader.java",
"chars": 4941,
"preview": "/*\n * Copyright 2007-present the original author or authors.\n *\n * Licensed under the Apache License, Version 2.0 (the \""
},
{
"path": ".mvn/wrapper/maven-wrapper.properties",
"chars": 1019,
"preview": "# Licensed to the Apache Software Foundation (ASF) under one\n# or more contributor license agreements. See the NOTICE f"
},
{
"path": ".travis.yml",
"chars": 192,
"preview": "language: java\n\ngit:\n quiet: true\n submodules: false\n\njdk:\n - openjdk8\n - openjdk11\n\n# 2021-06-25, tatu: Stop snapsh"
},
{
"path": "LICENSE",
"chars": 11358,
"preview": "\n Apache License\n Version 2.0, January 2004\n "
},
{
"path": "README.md",
"chars": 2420,
"preview": "## Overview\n\nThis is a multi-module umbrella project for [Jackson](../../../jackson)\nstandard text-format dataformat bac"
},
{
"path": "SECURITY.md",
"chars": 1623,
"preview": "# Security Policy\n\nLast Updated: 2022-09-20\n\n## Supported Versions\n\nCurrent status of open branches, with new releases, "
},
{
"path": "csv/.gitattributes",
"chars": 95,
"preview": "# Do not merge `pom.xml` from older version, as it will typically conflict\n\npom.xml merge=ours\n"
},
{
"path": "csv/README.md",
"chars": 11188,
"preview": "# Overview\n\n[Jackson](https://github.com/FasterXML/jackson) data format module for reading and writing [CSV](http://en.w"
},
{
"path": "csv/pom.xml",
"chars": 2967,
"preview": "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n<project xmlns=\"http://maven.apache.org/POM/4.0.0\" xmlns:xsi=\"http://www.w3.org/2"
},
{
"path": "csv/samples/f_5500_2010_first9999.csv",
"chars": 6752630,
"preview": "ACK_ID,FORM_PLAN_YEAR_BEGIN_DATE,FORM_TAX_PRD,TYPE_PLAN_ENTITY_CD,TYPE_DFE_PLAN_ENTITY_CD,INITIAL_FILING_IND,AMENDED_IND"
},
{
"path": "csv/src/main/java/module-info.java",
"chars": 450,
"preview": "// CSV Main artifact Module descriptor\nmodule tools.jackson.dataformat.csv\n{\n requires tools.jackson.core;\n requir"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/CsvCharacterEscapes.java",
"chars": 3354,
"preview": "package tools.jackson.dataformat.csv;\n\nimport tools.jackson.core.SerializableString;\nimport tools.jackson.core.io.CharTy"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/CsvFactory.java",
"chars": 9932,
"preview": "package tools.jackson.dataformat.csv;\n\nimport java.io.*;\n\nimport tools.jackson.core.*;\nimport tools.jackson.core.base.Te"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/CsvFactoryBuilder.java",
"chars": 5723,
"preview": "package tools.jackson.dataformat.csv;\n\nimport tools.jackson.core.ErrorReportConfiguration;\nimport tools.jackson.core.Jso"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/CsvGenerator.java",
"chars": 36182,
"preview": "package tools.jackson.dataformat.csv;\n\nimport java.io.*;\nimport java.math.BigDecimal;\nimport java.math.BigInteger;\nimpor"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/CsvMapper.java",
"chars": 23790,
"preview": "package tools.jackson.dataformat.csv;\n\nimport java.util.Collection;\nimport java.util.Objects;\n\nimport tools.jackson.core"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/CsvParser.java",
"chars": 45981,
"preview": "package tools.jackson.dataformat.csv;\n\nimport java.io.IOException;\nimport java.io.Reader;\nimport java.io.Writer;\nimport "
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/CsvReadException.java",
"chars": 951,
"preview": "package tools.jackson.dataformat.csv;\n\nimport tools.jackson.core.exc.StreamReadException;\n\n/**\n * Format-specific except"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/CsvReadFeature.java",
"chars": 9996,
"preview": "package tools.jackson.dataformat.csv;\n\nimport tools.jackson.core.FormatFeature;\n\n/**\n * Enumeration that defines all tog"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/CsvSchema.java",
"chars": 57885,
"preview": "\npackage tools.jackson.dataformat.csv;\n\nimport java.util.*;\nimport java.util.function.UnaryOperator;\n\nimport tools.jacks"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/CsvValueDecorator.java",
"chars": 2981,
"preview": "package tools.jackson.dataformat.csv;\n\nimport tools.jackson.core.JacksonException;\n\n/**\n * Interface defining API for ha"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/CsvValueDecorators.java",
"chars": 4810,
"preview": "package tools.jackson.dataformat.csv;\n\nimport java.util.Objects;\n\nimport tools.jackson.core.JacksonException;\n\n/**\n * Co"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/CsvWriteException.java",
"chars": 809,
"preview": "package tools.jackson.dataformat.csv;\n\nimport tools.jackson.core.exc.StreamWriteException;\n\n/**\n * Format-specific excep"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/CsvWriteFeature.java",
"chars": 5546,
"preview": "package tools.jackson.dataformat.csv;\n\nimport tools.jackson.core.FormatFeature;\n\n/**\n * Enumeration that defines all tog"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/PackageVersion.java.in",
"chars": 559,
"preview": "package @package@;\n\nimport tools.jackson.core.Version;\nimport tools.jackson.core.Versioned;\nimport tools.jackson.core.ut"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/impl/BufferedValue.java",
"chars": 4086,
"preview": "package tools.jackson.dataformat.csv.impl;\n\nimport tools.jackson.core.JacksonException;\n\n/**\n * Helper class used for ho"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/impl/CsvDecoder.java",
"chars": 57901,
"preview": "package tools.jackson.dataformat.csv.impl;\n\nimport java.io.IOException;\nimport java.io.Reader;\nimport java.io.Writer;\nim"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/impl/CsvEncoder.java",
"chars": 46584,
"preview": "package tools.jackson.dataformat.csv.impl;\n\nimport java.io.IOException;\nimport java.io.Writer;\nimport java.math.BigDecim"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/impl/CsvParserBootstrapper.java",
"chars": 12264,
"preview": "package tools.jackson.dataformat.csv.impl;\n\nimport java.io.*;\n\nimport tools.jackson.core.*;\nimport tools.jackson.core.ex"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/impl/UTF8Reader.java",
"chars": 19150,
"preview": "package tools.jackson.dataformat.csv.impl;\n\nimport java.io.*;\nimport java.util.Objects;\n\nimport tools.jackson.core.io.IO"
},
{
"path": "csv/src/main/java/tools/jackson/dataformat/csv/impl/UTF8Writer.java",
"chars": 13119,
"preview": "package tools.jackson.dataformat.csv.impl;\n\nimport java.io.*;\n\nimport tools.jackson.core.io.IOContext;\n\n/**\n * Efficient"
},
{
"path": "csv/src/main/resources/META-INF/LICENSE",
"chars": 318,
"preview": "This copy of Jackson JSON processor CSV module is licensed under the\nApache (Software) License, version 2.0 (\"the Licens"
},
{
"path": "csv/src/main/resources/META-INF/NOTICE",
"chars": 681,
"preview": "# Jackson JSON processor\n\nJackson is a high-performance, Free/Open Source JSON processing library.\nIt was originally wri"
},
{
"path": "csv/src/main/resources/META-INF/services/tools.jackson.core.TokenStreamFactory",
"chars": 40,
"preview": "tools.jackson.dataformat.csv.CsvFactory\n"
},
{
"path": "csv/src/main/resources/META-INF/services/tools.jackson.databind.ObjectMapper",
"chars": 39,
"preview": "tools.jackson.dataformat.csv.CsvMapper\n"
},
{
"path": "csv/src/test/java/module-info.java",
"chars": 1013,
"preview": "// CSV unit test Module descriptor\nmodule tools.jackson.dataformat.csv\n{\n // Since we are not split from Main artifac"
},
{
"path": "csv/src/test/java/perf/BogusOutputStream.java",
"chars": 468,
"preview": "package perf;\n\nimport java.io.IOException;\nimport java.io.OutputStream;\n\npublic class BogusOutputStream extends OutputSt"
},
{
"path": "csv/src/test/java/perf/F5500Entry.java",
"chars": 8920,
"preview": "package perf;\n\nimport com.fasterxml.jackson.annotation.JsonProperty;\n\n/**\n * POJO representing data from form F-5500\n */"
},
{
"path": "csv/src/test/java/perf/F5500Reader.java",
"chars": 1948,
"preview": "package perf;\n\nimport java.io.File;\nimport java.io.IOException;\nimport java.util.Map;\n\nimport tools.jackson.databind.Map"
},
{
"path": "csv/src/test/java/perf/ManualPerfComparison.java",
"chars": 5983,
"preview": "package perf;\n\nimport java.io.*;\nimport java.util.ArrayList;\nimport java.util.Iterator;\n\nimport tools.jackson.core.JsonG"
},
{
"path": "csv/src/test/java/perf/RequestEntry.java",
"chars": 1149,
"preview": "package perf;\n\nimport com.fasterxml.jackson.annotation.JsonProperty;\n\npublic class RequestEntry\n{\n @JsonProperty(\"APP"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/CSVFactoryFeaturesTest.java",
"chars": 4708,
"preview": "package tools.jackson.dataformat.csv;\n\nimport java.io.StringReader;\nimport java.io.StringWriter;\n\nimport org.junit.jupit"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ModuleTestBase.java",
"chars": 9741,
"preview": "package tools.jackson.dataformat.csv;\n\nimport java.io.*;\nimport java.nio.charset.StandardCharsets;\nimport java.util.*;\n\n"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/NullReader122Test.java",
"chars": 862,
"preview": "package tools.jackson.dataformat.csv;\n\nimport java.io.Reader;\nimport java.util.Map;\n\nimport org.junit.jupiter.api.Test;\n"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/SchemaCaching288Test.java",
"chars": 3006,
"preview": "package tools.jackson.dataformat.csv;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation.JsonP"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/TestVersions.java",
"chars": 1238,
"preview": "package tools.jackson.dataformat.csv;\n\nimport java.io.*;\n\nimport tools.jackson.core.*;\n\nimport tools.jackson.databind.Ma"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/AnySetterTest.java",
"chars": 2129,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.util.LinkedHashMap;\nimport java.util.Map;\n\nimport org.junit.jup"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/ArrayReadTest.java",
"chars": 4841,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/BasicCSVParserTest.java",
"chars": 17288,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.io.ByteArrayOutputStream;\nimport java.util.*;\n\nimport org.junit"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/BlogPost2021AprilTest.java",
"chars": 4273,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.util.*;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterx"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/BrokenEncodingTest.java",
"chars": 3734,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.io.ByteArrayOutputStream;\n\nimport org.junit.jupiter.api.Test;\n\n"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/CaseInsensitiveHeader657Test.java",
"chars": 4310,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.util.Map;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jac"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/CommentsTest.java",
"chars": 4762,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.util.Map;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jac"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/EmptyStringAsMissingTest.java",
"chars": 5502,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/EmptyStringAsNullTest.java",
"chars": 3495,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/EmptyUnquotedStringAsNullTest.java",
"chars": 7112,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.io.IOException;\nimport java.util.List;\nimport java.util.Map;\n\ni"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/FastParserStreamingCSVReadTest.java",
"chars": 567,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport tools.jackson.core.StreamReadFeature;\nimport tools.jackson.dataforma"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/IgnoreUnmappableTest.java",
"chars": 2230,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/IntOverflow485Test.java",
"chars": 2103,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/ListField199Test.java",
"chars": 3739,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.util.*;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterx"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/MappingIteratorEnd9Test.java",
"chars": 882,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson.databind.MappingIt"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/MissingColumns285Test.java",
"chars": 2223,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.util.Map;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jac"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/MissingColumns579Test.java",
"chars": 2557,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\nimport tools.jackson.databind.MappingIte"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/MissingColumnsTest.java",
"chars": 4614,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/NullReadTest.java",
"chars": 4466,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson.databind.*;\nimport"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/NullValueUnquotedAsNullTest.java",
"chars": 5361,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/NumberDeserWithCSVTest.java",
"chars": 4262,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.math.BigDecimal;\n\nimport org.junit.jupiter.api.Test;\n\nimport co"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserAutoCloseTest.java",
"chars": 2660,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.io.*;\nimport java.nio.charset.StandardCharsets;\n\nimport org.jun"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserLocation483Test.java",
"chars": 1078,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.util.List;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.ja"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserQuotes643Test.java",
"chars": 1844,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserTrimSpacesTest.java",
"chars": 4396,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/ParserWithHeaderTest.java",
"chars": 7846,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.util.ArrayList;\n\nimport org.junit.jupiter.api.Test;\n\nimport com"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/ReadBracketedArray442Test.java",
"chars": 6597,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.net.URL;\nimport java.nio.charset.StandardCharsets;\n\nimport org."
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/ReadSequencesTest.java",
"chars": 6013,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.io.IOException;\nimport java.util.*;\n\nimport org.junit.jupiter.a"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/SequenceRecoveryTest.java",
"chars": 7312,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/SkipEmptyLines15Test.java",
"chars": 7908,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/SkipEmptyLines191Test.java",
"chars": 4280,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.io.*;\nimport java.util.*;\n\nimport org.junit.jupiter.api.Test;\n\n"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/SkipEmptyRows368Test.java",
"chars": 7162,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.io.FilterReader;\nimport java.io.IOException;\nimport java.io.Str"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/StreamingCSVReadTest.java",
"chars": 9450,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.io.*;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserEscapes.java",
"chars": 3713,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.util.Arrays;\nimport java.util.List;\n\nimport org.junit.jupiter.a"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserNoSchema.java",
"chars": 7519,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.util.List;\nimport java.util.Map;\n\nimport org.junit.jupiter.api."
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserQuotes.java",
"chars": 4231,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserStrictQuoting.java",
"chars": 1740,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/TestParserWorkarounds.java",
"chars": 2986,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.util.Map;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jac"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/TrailingCommaCSVTest.java",
"chars": 2179,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/UTF8ReaderTest.java",
"chars": 2057,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.io.*;\nimport java.nio.charset.StandardCharsets;\n\nimport org.jun"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/UnicodeCSVRead497Test.java",
"chars": 3621,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport java.io.ByteArrayInputStream;\nimport java.nio.charset.StandardCharse"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/deser/UnwrappingWithCSVTest.java",
"chars": 3151,
"preview": "package tools.jackson.dataformat.csv.deser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/filter/JsonViewFilteringTest.java",
"chars": 6590,
"preview": "package tools.jackson.dataformat.csv.filter;\n\nimport java.io.BufferedReader;\nimport java.io.StringReader;\nimport java.ut"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/filter/StreamingDecoratorsTest.java",
"chars": 2575,
"preview": "package tools.jackson.dataformat.csv.filter;\n\nimport java.io.*;\nimport java.util.Arrays;\n\nimport org.junit.jupiter.api.T"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/fuzz/CSVFuzz499695465Test.java",
"chars": 771,
"preview": "package tools.jackson.dataformat.csv.fuzz;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson.core.JacksonExcepti"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/fuzz/CSVFuzz50036Test.java",
"chars": 1784,
"preview": "package tools.jackson.dataformat.csv.fuzz;\n\nimport java.io.ByteArrayInputStream;\n\nimport org.junit.jupiter.api.Test;\n\nim"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/fuzz/CSVFuzz50402Test.java",
"chars": 749,
"preview": "package tools.jackson.dataformat.csv.fuzz;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson.core.JacksonExcepti"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/limits/CSVBigNumberReadLimitsTest.java",
"chars": 2777,
"preview": "package tools.jackson.dataformat.csv.limits;\n\nimport java.math.BigDecimal;\n\nimport org.junit.jupiter.api.Test;\n\nimport c"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/limits/CSVBigStringLimitsTest.java",
"chars": 3563,
"preview": "package tools.jackson.dataformat.csv.limits;\n\nimport java.util.List;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.j"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/limits/CSVLargeDocReadLimitsTest.java",
"chars": 2176,
"preview": "package tools.jackson.dataformat.csv.limits;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson.core.JsonParser;\n"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/limits/CSVNameLengthLimitsTest.java",
"chars": 4487,
"preview": "package tools.jackson.dataformat.csv.limits;\n\nimport java.util.List;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.j"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/schema/CsvSchemaTest.java",
"chars": 8199,
"preview": "package tools.jackson.dataformat.csv.schema;\n\nimport java.util.*;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.faster"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/schema/PropertyOrder74Test.java",
"chars": 1051,
"preview": "package tools.jackson.dataformat.csv.schema;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotatio"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/schema/SchemaDefaultView308Test.java",
"chars": 6325,
"preview": "package tools.jackson.dataformat.csv.schema;\r\n\r\nimport java.util.*;\r\n\r\nimport org.junit.jupiter.api.Test;\r\n\r\nimport com."
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/schema/SchemaFromBuilder207Test.java",
"chars": 1731,
"preview": "package tools.jackson.dataformat.csv.schema;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson.databind.annotati"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/ArrayWriteTest.java",
"chars": 2473,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation.J"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/CSVGeneratorQuotingTest.java",
"chars": 2897,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson.dataformat.csv.*;\n\ni"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/CSVGeneratorTest.java",
"chars": 19860,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.io.File;\nimport java.io.StringWriter;\nimport java.math.BigDecimal"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/CSVJDKSerializationTest.java",
"chars": 3763,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.io.*;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.j"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/FilteringTest.java",
"chars": 3453,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.io.*;\nimport java.util.*;\n\nimport org.junit.jupiter.api.Test;\n\nim"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/GeneratorFileCloseOnErrorTest.java",
"chars": 2927,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.io.*;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson.c"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/GeneratorIgnoreUnknown51Test.java",
"chars": 2802,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.io.StringWriter;\nimport java.util.LinkedHashSet;\nimport java.util"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/GeneratorIgnoreUnknownTest.java",
"chars": 4186,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.util.*;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/HeaderWriteTest.java",
"chars": 2313,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.io.IOException;\nimport java.io.StringWriter;\nimport java.util.Arr"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/MaxQuoteCheckCharsTest.java",
"chars": 4594,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson.dataformat.csv.*;\n\ni"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/MultipleWritesTest.java",
"chars": 3347,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.io.StringWriter;\nimport java.util.ArrayList;\nimport java.util.Lis"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/NullWritingTest.java",
"chars": 5818,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.io.ByteArrayOutputStream;\nimport java.io.StringWriter;\nimport jav"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/ObjectArrayNullWrite10Test.java",
"chars": 1233,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.io.StringWriter;\n\nimport org.junit.jupiter.api.Test;\n\nimport tool"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/ObjectArrayNullWrite116Test.java",
"chars": 1356,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.io.StringWriter;\n\nimport org.junit.jupiter.api.Test;\n\nimport tool"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/QuoteLeadingTrailingWhitespace210Test.java",
"chars": 3349,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson.dataformat.csv.*;\n\ni"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/SchemaReorderTest.java",
"chars": 1247,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.util.Arrays;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.ja"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/StrictQuotingNewline479Test.java",
"chars": 6851,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson.dataformat.csv.*;\n\ni"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/TestGeneratorNoSchema.java",
"chars": 2703,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.io.StringWriter;\n\nimport org.junit.jupiter.api.Test;\n\nimport tool"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/TestGeneratorWithCustomSeparators.java",
"chars": 1199,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson.dataformat.csv.*;\n\ni"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/TestGeneratorWithSequences.java",
"chars": 1399,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.util.ArrayList;\nimport java.util.List;\n\nimport org.junit.jupiter."
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/TestWriterWithMissingValues.java",
"chars": 2227,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport org.junit.jupiter.api.Test;\n\nimport tools.jackson.databind.ObjectWrite"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/TestWriterWithSomeMoreMissingValues.java",
"chars": 8240,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.util.LinkedHashMap;\nimport java.util.Map;\n\nimport org.junit.jupit"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/UnicodeWritingTest.java",
"chars": 1620,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.io.ByteArrayOutputStream;\n\nimport org.junit.jupiter.api.Test;\n\nim"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/UnwrappedWriteTest.java",
"chars": 1136,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport org.junit.jupiter.api.Test;\n\nimport com.fasterxml.jackson.annotation.J"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/WriteBracketedArray495Test.java",
"chars": 3997,
"preview": "package tools.jackson.dataformat.csv.ser;\n\nimport java.io.StringWriter;\n\nimport org.junit.jupiter.api.Test;\n\nimport com."
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/ser/dos/CyclicCSVDataSerTest.java",
"chars": 1355,
"preview": "package tools.jackson.dataformat.csv.ser.dos;\n\nimport java.util.ArrayList;\nimport java.util.List;\n\nimport org.junit.jupi"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/testutil/PrefixInputDecorator.java",
"chars": 2445,
"preview": "package tools.jackson.dataformat.csv.testutil;\n\nimport java.io.*;\nimport java.nio.charset.StandardCharsets;\n\nimport tool"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/testutil/PrefixOutputDecorator.java",
"chars": 1650,
"preview": "package tools.jackson.dataformat.csv.testutil;\n\nimport java.io.*;\n\nimport tools.jackson.core.io.IOContext;\nimport tools."
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/testutil/failure/JacksonTestFailureExpected.java",
"chars": 1168,
"preview": "package tools.jackson.dataformat.csv.testutil.failure;\n\nimport org.junit.jupiter.api.extension.ExtendWith;\n\nimport java."
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/testutil/failure/JacksonTestFailureExpectedInterceptor.java",
"chars": 1593,
"preview": "package tools.jackson.dataformat.csv.testutil.failure;\n\nimport org.junit.jupiter.api.extension.ExtensionContext;\nimport "
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/testutil/failure/JacksonTestShouldFailException.java",
"chars": 459,
"preview": "package tools.jackson.dataformat.csv.testutil.failure;\n\n/**\n * Exception used to alert that a test is passing, but shoul"
},
{
"path": "csv/src/test/java/tools/jackson/dataformat/csv/tofix/package-info.java",
"chars": 169,
"preview": "/**\n * Test(s) for known issues not yet fixed: if an issue gets fixed,\n * move test(s) from here to appropriate package."
},
{
"path": "csv/src/test/resources/data/story-100.csv",
"chars": 2110875,
"preview": "id,title,url,score,time,comments,author,embeddings\n26836923,Nobody is joining Google's FLoC,https://www.theverge.com/202"
},
{
"path": "docs/javadoc/csv/2.10/allclasses-frame.html",
"chars": 6496,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/allclasses-noframe.html",
"chars": 5836,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvCharacterEscapes.html",
"chars": 17424,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvFactory.html",
"chars": 88549,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvFactoryBuilder.html",
"chars": 33522,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvGenerator.Feature.html",
"chars": 29800,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvGenerator.html",
"chars": 94321,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvMapper.Builder.html",
"chars": 21957,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvMapper.html",
"chars": 57818,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvMappingException.html",
"chars": 26274,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvParser.Feature.html",
"chars": 30091,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvParser.html",
"chars": 110078,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvSchema.Builder.html",
"chars": 73143,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvSchema.Column.html",
"chars": 35713,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvSchema.ColumnType.html",
"chars": 23436,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/CsvSchema.html",
"chars": 106793,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/PackageVersion.html",
"chars": 13121,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvCharacterEscapes.html",
"chars": 9312,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvFactory.html",
"chars": 17326,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvFactoryBuilder.html",
"chars": 17292,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.Feature.html",
"chars": 25210,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvGenerator.html",
"chars": 18247,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.Builder.html",
"chars": 12678,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvMapper.html",
"chars": 12712,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvMappingException.html",
"chars": 8853,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.Feature.html",
"chars": 25577,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvParser.html",
"chars": 22730,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Builder.html",
"chars": 35162,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.Column.html",
"chars": 35248,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.ColumnType.html",
"chars": 16563,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/CsvSchema.html",
"chars": 52279,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/class-use/PackageVersion.html",
"chars": 4840,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.BooleanValue.html",
"chars": 19629,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.DoubleValue.html",
"chars": 17224,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.IntValue.html",
"chars": 17155,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.LongValue.html",
"chars": 17172,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.NullValue.html",
"chars": 17521,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.RawValue.html",
"chars": 17529,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.TextValue.html",
"chars": 17444,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/BufferedValue.html",
"chars": 23590,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/CsvDecoder.html",
"chars": 98723,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/CsvEncoder.html",
"chars": 81473,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/CsvIOContext.html",
"chars": 14221,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/CsvParserBootstrapper.html",
"chars": 22881,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/LRUMap.html",
"chars": 25925,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/NumberInput.html",
"chars": 17794,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/NumberOutput.html",
"chars": 14522,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/TextBuffer.html",
"chars": 23872,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/UTF8Reader.html",
"chars": 34273,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/UTF8Writer.html",
"chars": 26766,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.BooleanValue.html",
"chars": 8051,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.DoubleValue.html",
"chars": 5064,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.IntValue.html",
"chars": 5031,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.LongValue.html",
"chars": 5042,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.NullValue.html",
"chars": 7457,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.RawValue.html",
"chars": 5031,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.TextValue.html",
"chars": 5042,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
},
{
"path": "docs/javadoc/csv/2.10/com/fasterxml/jackson/dataformat/csv/impl/class-use/BufferedValue.html",
"chars": 16882,
"preview": "<!DOCTYPE HTML PUBLIC \"-//W3C//DTD HTML 4.01 Transitional//EN\" \"http://www.w3.org/TR/html4/loose.dtd\">\n<!-- NewPage -->\n"
}
]
// ... and 1608 more files (download for full content)
About this extraction
This page contains the full source code of the FasterXML/jackson-dataformats-text GitHub repository, extracted and formatted as plain text for AI agents and large language models (LLMs). The extraction includes 1808 files (38.9 MB), approximately 10.3M tokens, and a symbol index with 3406 extracted functions, classes, methods, constants, and types. Use this with OpenClaw, Claude, ChatGPT, Cursor, Windsurf, or any other AI tool that accepts text input. You can copy the full output to your clipboard or download it as a .txt file.
Extracted by GitExtract — free GitHub repo to text converter for AI. Built by Nikandr Surkov.