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>
TSFBuilderimplementation for constructingTomlFactoryinstances.- Since:
- 3.0
-
-
Field Summary
Fields Modifier and Type Field Description protected int_formatGeneratorFeaturesprotected 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 TomlFactorybuild()TomlFactoryBuilderconfigure(TomlReadFeature f, boolean state)TomlFactoryBuilderconfigure(TomlWriteFeature f, boolean state)TomlFactoryBuilderdisable(TomlReadFeature f)TomlFactoryBuilderdisable(TomlReadFeature first, TomlReadFeature... other)TomlFactoryBuilderdisable(TomlWriteFeature f)TomlFactoryBuilderdisable(TomlWriteFeature first, TomlWriteFeature... other)TomlFactoryBuilderenable(TomlReadFeature f)TomlFactoryBuilderenable(TomlReadFeature first, TomlReadFeature... other)TomlFactoryBuilderenable(TomlWriteFeature f)TomlFactoryBuilderenable(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:
buildin 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)
-
-