Class TomlFactoryBuilder
- java.lang.Object
-
- com.fasterxml.jackson.core.TSFBuilder<TomlFactory,TomlFactoryBuilder>
-
- com.fasterxml.jackson.dataformat.toml.TomlFactoryBuilder
-
public class TomlFactoryBuilder extends com.fasterxml.jackson.core.TSFBuilder<TomlFactory,TomlFactoryBuilder>
TSFBuilder
implementation for constructingTomlFactory
instances.- Since:
- 3.0
-
-
Field Summary
Fields Modifier and Type Field Description protected int
_formatGeneratorFeatures
protected int
_formatParserFeatures
-
Fields inherited from class com.fasterxml.jackson.core.TSFBuilder
_errorReportConfiguration, _factoryFeatures, _generatorDecorators, _inputDecorator, _outputDecorator, _recyclerPool, _streamReadConstraints, _streamReadFeatures, _streamWriteConstraints, _streamWriteFeatures, DEFAULT_FACTORY_FEATURE_FLAGS, DEFAULT_GENERATOR_FEATURE_FLAGS, DEFAULT_PARSER_FEATURE_FLAGS
-
-
Constructor Summary
Constructors Constructor Description TomlFactoryBuilder()
TomlFactoryBuilder(TomlFactory base)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description TomlFactory
build()
TomlFactoryBuilder
configure(TomlReadFeature f, boolean state)
TomlFactoryBuilder
configure(TomlWriteFeature f, boolean state)
TomlFactoryBuilder
disable(TomlReadFeature f)
TomlFactoryBuilder
disable(TomlReadFeature first, TomlReadFeature... other)
TomlFactoryBuilder
disable(TomlWriteFeature f)
TomlFactoryBuilder
disable(TomlWriteFeature first, TomlWriteFeature... other)
TomlFactoryBuilder
enable(TomlReadFeature f)
TomlFactoryBuilder
enable(TomlReadFeature first, TomlReadFeature... other)
TomlFactoryBuilder
enable(TomlWriteFeature f)
TomlFactoryBuilder
enable(TomlWriteFeature first, TomlWriteFeature... other)
-
Methods inherited from class com.fasterxml.jackson.core.TSFBuilder
_copy, _legacyDisable, _legacyDisable, _legacyEnable, _legacyEnable, _this, addDecorator, configure, configure, configure, configure, configure, disable, disable, disable, disable, disable, disable, disable, disable, disable, enable, enable, enable, enable, enable, enable, enable, enable, enable, errorReportConfiguration, factoryFeaturesMask, inputDecorator, inputDecorator, outputDecorator, outputDecorator, recyclerPool, recyclerPool, streamReadConstraints, streamReadFeatures, streamWriteConstraints, streamWriteFeatures
-
-
-
-
Constructor Detail
-
TomlFactoryBuilder
TomlFactoryBuilder()
-
TomlFactoryBuilder
TomlFactoryBuilder(TomlFactory base)
-
-
Method Detail
-
build
public TomlFactory build()
- Specified by:
build
in classcom.fasterxml.jackson.core.TSFBuilder<TomlFactory,TomlFactoryBuilder>
-
enable
public TomlFactoryBuilder enable(TomlReadFeature f)
-
enable
public TomlFactoryBuilder enable(TomlReadFeature first, TomlReadFeature... other)
-
disable
public TomlFactoryBuilder disable(TomlReadFeature f)
-
disable
public TomlFactoryBuilder disable(TomlReadFeature first, TomlReadFeature... other)
-
configure
public TomlFactoryBuilder configure(TomlReadFeature f, boolean state)
-
enable
public TomlFactoryBuilder enable(TomlWriteFeature f)
-
enable
public TomlFactoryBuilder enable(TomlWriteFeature first, TomlWriteFeature... other)
-
disable
public TomlFactoryBuilder disable(TomlWriteFeature f)
-
disable
public TomlFactoryBuilder disable(TomlWriteFeature first, TomlWriteFeature... other)
-
configure
public TomlFactoryBuilder configure(TomlWriteFeature f, boolean state)
-
-