Uses of Class
com.fasterxml.jackson.dataformat.csv.CsvParser.Feature

Packages that use CsvParser.Feature
com.fasterxml.jackson.dataformat.csv   
 

Uses of CsvParser.Feature in com.fasterxml.jackson.dataformat.csv
 

Methods in com.fasterxml.jackson.dataformat.csv that return CsvParser.Feature
static CsvParser.Feature CsvParser.Feature.valueOf(String name)
          Returns the enum constant of this type with the specified name.
static CsvParser.Feature[] CsvParser.Feature.values()
          Returns an array containing the constants of this enum type, in the order they are declared.
 

Methods in com.fasterxml.jackson.dataformat.csv with parameters of type CsvParser.Feature
 com.fasterxml.jackson.core.JsonParser CsvParser.configure(CsvParser.Feature f, boolean state)
          Method for enabling or disabling specified CSV feature (check CsvParser.Feature for list of features)
 CsvMapper CsvMapper.configure(CsvParser.Feature f, boolean state)
           
 CsvFactory CsvFactory.configure(CsvParser.Feature f, boolean state)
          Method for enabling or disabling specified parser feature (check CsvParser.Feature for list of features)
 com.fasterxml.jackson.core.JsonParser CsvParser.disable(CsvParser.Feature f)
          Method for disabling specified CSV feature (check CsvParser.Feature for list of features)
 CsvMapper CsvMapper.disable(CsvParser.Feature f)
           
 CsvFactory CsvFactory.disable(CsvParser.Feature f)
          Method for disabling specified parser features (check CsvParser.Feature for list of features)
 com.fasterxml.jackson.core.JsonParser CsvParser.enable(CsvParser.Feature f)
          Method for enabling specified CSV feature (check CsvParser.Feature for list of features)
 CsvMapper CsvMapper.enable(CsvParser.Feature f)
           
 CsvFactory CsvFactory.enable(CsvParser.Feature f)
          Method for enabling specified parser feature (check CsvParser.Feature for list of features)
 boolean CsvParser.isEnabled(CsvParser.Feature f)
          Method for checking whether specified CSV CsvParser.Feature is enabled.
 boolean CsvFactory.isEnabled(CsvParser.Feature f)
          Checked whether specified parser feature is enabled.
 



Copyright © 2012 fasterxml.com. All Rights Reserved.