Serialized Form

  • Package tools.jackson.dataformat.csv

    • Class tools.jackson.dataformat.csv.CsvCharacterEscapes

      class CsvCharacterEscapes extends tools.jackson.core.io.CharacterEscapes implements Serializable
      serialVersionUID:
      1L
      • Serialized Fields

        • escapes
          int[] escapes
    • Class tools.jackson.dataformat.csv.CsvFactory

      class CsvFactory extends tools.jackson.core.base.TextualTSFactory implements Serializable
      serialVersionUID:
      1L
      • Serialization Methods

        • readResolve
          protected Object readResolve()
          Method that we need to override to actually make restoration go through constructors etc. Also: must be overridden by sub-classes as well.
      • Serialized Fields

    • Class tools.jackson.dataformat.csv.CsvMapper

      class CsvMapper extends tools.jackson.databind.ObjectMapper implements Serializable
      serialVersionUID:
      1L
      • Serialization Methods

        • readResolve
          protected Object readResolve()
        • writeReplace
          protected Object writeReplace()
      • Serialized Fields

        • _typedSchemas
          tools.jackson.databind.util.SimpleLookupCache<CsvMapper.ViewKey,CsvSchema> _typedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for typed schemas
        • _untypedSchemas
          tools.jackson.databind.util.SimpleLookupCache<CsvMapper.ViewKey,CsvSchema> _untypedSchemas
          Simple caching for schema instances, given that they are relatively expensive to construct; this one is for "loose" (non-typed) schemas
    • Class tools.jackson.dataformat.csv.CsvMapper.Builder.StateImpl

      class StateImpl extends tools.jackson.databind.cfg.MapperBuilderState implements Serializable
      serialVersionUID:
      3L
      • Serialization Methods

        • readResolve
          protected Object readResolve()
    • Class tools.jackson.dataformat.csv.CsvMapper.ViewKey

      class ViewKey extends Object implements Serializable
      serialVersionUID:
      1L
      • Serialized Fields

        • _hashCode
          int _hashCode
        • _pojoType
          tools.jackson.databind.JavaType _pojoType
        • _view
          Class<?> _view
    • Exception tools.jackson.dataformat.csv.CsvReadException

      class CsvReadException extends tools.jackson.core.exc.StreamReadException implements Serializable
      serialVersionUID:
      3L
      • Serialized Fields

    • Class tools.jackson.dataformat.csv.CsvSchema

      class CsvSchema extends Object implements Serializable
      serialVersionUID:
      3L
      • Serialized Fields

        • _anyPropertyName
          String _anyPropertyName
          If "any properties" (properties for 'extra' columns; ones not specified in schema) are enabled, they are mapped to this name: leaving it as null disables use of "any properties" (and they are either ignored, or an exception is thrown, depending on other settings); setting it to a non-null String value will expose all extra properties under one specified name.
          Since:
          2.7
        • _arrayElementSeparator
          String _arrayElementSeparator
        • _columns
          CsvSchema.Column[] _columns
          Column definitions, needed for optional header and/or mapping of field names to column positions.
        • _columnsByName
          Map<String,CsvSchema.Column> _columnsByName
        • _columnSeparator
          char _columnSeparator
        • _escapeChar
          int _escapeChar
        • _features
          int _features
          Bitflag for general-purpose on/off features.
          Since:
          2.5 (final since 2.19)
        • _lineSeparator
          char[] _lineSeparator
        • _nullValue
          char[] _nullValue
          Since:
          2.5
        • _quoteChar
          int _quoteChar
    • Class tools.jackson.dataformat.csv.CsvSchema.Column

      class Column extends Object implements Serializable
      serialVersionUID:
      1L
      • Serialized Fields

        • _arrayElementSeparator
          String _arrayElementSeparator
        • _index
          int _index
        • _name
          String _name
        • _next
          CsvSchema.Column _next
          Link to the next column within schema, if one exists; null for the last column.
        • _type
          CsvSchema.ColumnType _type
        • _valueDecorator
          CsvValueDecorator _valueDecorator
          Value decorator used for this column, if any; null if none. Used to add decoration on serialization (writing) and remove decoration on deserialization (reading).
    • Exception tools.jackson.dataformat.csv.CsvWriteException

      class CsvWriteException extends tools.jackson.core.exc.StreamWriteException implements Serializable
      serialVersionUID:
      3L
      • Serialized Fields