public static enum AbstractObjectMapperConfiguration.Feature extends Enum<AbstractObjectMapperConfiguration.Feature>
Enum Constant and Description |
---|
REGISTER_MODULES
If set and
true , calls
ObjectMapper.registerModules(Iterable) with the return
value of ObjectMapper.findModules(ClassLoader) . |
Modifier and Type | Method and Description |
---|---|
static AbstractObjectMapperConfiguration.Feature |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static AbstractObjectMapperConfiguration.Feature[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final AbstractObjectMapperConfiguration.Feature REGISTER_MODULES
true
, calls
ObjectMapper.registerModules(Iterable)
with the return
value of ObjectMapper.findModules(ClassLoader)
.public static AbstractObjectMapperConfiguration.Feature[] values()
for (AbstractObjectMapperConfiguration.Feature c : AbstractObjectMapperConfiguration.Feature.values()) System.out.println(c);
public static AbstractObjectMapperConfiguration.Feature valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullCopyright © 2015–2020 Allen D. Ball. All rights reserved.