Uses of Class
com.fasterxml.jackson.dataformat.toml.TomlReadFeature
-
Packages that use TomlReadFeature Package Description com.fasterxml.jackson.dataformat.toml -
-
Uses of TomlReadFeature in com.fasterxml.jackson.dataformat.toml
Methods in com.fasterxml.jackson.dataformat.toml that return TomlReadFeature Modifier and Type Method Description static TomlReadFeature
TomlReadFeature. valueOf(java.lang.String name)
Returns the enum constant of this type with the specified name.static TomlReadFeature[]
TomlReadFeature. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.fasterxml.jackson.dataformat.toml with parameters of type TomlReadFeature Modifier and Type Method Description TomlFactory
TomlFactory. configure(TomlReadFeature f, boolean state)
Method for enabling or disabling specified parser feature (checkTomlReadFeature
for list of features)TomlFactoryBuilder
TomlFactoryBuilder. configure(TomlReadFeature f, boolean state)
TomlMapper.Builder
TomlMapper.Builder. configure(TomlReadFeature feature, boolean state)
TomlMapper
TomlMapper. configure(TomlReadFeature f, boolean state)
TomlFactory
TomlFactory. disable(TomlReadFeature f)
Method for disabling specified parser features (checkTomlReadFeature
for list of features)TomlFactoryBuilder
TomlFactoryBuilder. disable(TomlReadFeature f)
TomlFactoryBuilder
TomlFactoryBuilder. disable(TomlReadFeature first, TomlReadFeature... other)
TomlMapper.Builder
TomlMapper.Builder. disable(TomlReadFeature... features)
TomlMapper
TomlMapper. disable(TomlReadFeature f)
TomlFactory
TomlFactory. enable(TomlReadFeature f)
Method for enabling specified parser feature (checkTomlReadFeature
for list of features)TomlFactoryBuilder
TomlFactoryBuilder. enable(TomlReadFeature f)
TomlFactoryBuilder
TomlFactoryBuilder. enable(TomlReadFeature first, TomlReadFeature... other)
TomlMapper.Builder
TomlMapper.Builder. enable(TomlReadFeature... features)
TomlMapper
TomlMapper. enable(TomlReadFeature f)
boolean
TomlFactory. isEnabled(TomlReadFeature f)
Checked whether specified parser feature is enabled.
-