Package com.fasterxml.jackson.core
Enum JsonFactory.Feature
- All Implemented Interfaces:
JacksonFeature
,Serializable
,Comparable<JsonFactory.Feature>
,java.lang.constant.Constable
- Enclosing class:
- JsonFactory
Enumeration that defines all on/off features that can only be
changed for
JsonFactory
.-
Nested Class Summary
Nested classes/interfaces inherited from class java.lang.Enum
Enum.EnumDesc<E extends Enum<E>>
-
Enum Constant Summary
Enum ConstantDescriptionFeature that determines whether JSON object field names are to be canonicalized (details of how canonicalization is done then further specified byINTERN_FIELD_NAMES
).Feature to control charset detection for byte-based inputs (byte[]
,InputStream
...).Feature that determines what happens if we encounter a case in symbol handling where number of hash collisions exceeds a safety threshold -- which almost certainly means a denial-of-service attack via generated duplicate hash codes.Feature that determines whether JSON object field names are to be canonicalized usingString.intern()
or not: if enabled, all field names will be intern()ed (and caller can count on this being true for all such names); if disabled, no intern()ing is done.Feature that determines whether we will use aRecyclerPool
for allocating and possibly recyclingBufferRecycler
or not. -
Method Summary
Modifier and TypeMethodDescriptionstatic int
Method that calculates bit set (flags) of all features that are enabled by default.boolean
Accessor for checking whether this feature is enabled by default.boolean
enabledIn
(int flags) Convenience method for checking whether feature is enabled in given bitmask.int
getMask()
Returns bit mask for this feature instance; must be a single bit, that is of form1 << N
.static JsonFactory.Feature
Returns the enum constant of this type with the specified name.static JsonFactory.Feature[]
values()
Returns an array containing the constants of this enum type, in the order they are declared.
-
Enum Constant Details
-
INTERN_FIELD_NAMES
Feature that determines whether JSON object field names are to be canonicalized usingString.intern()
or not: if enabled, all field names will be intern()ed (and caller can count on this being true for all such names); if disabled, no intern()ing is done. There may still be basic canonicalization (that is, same String will be used to represent all identical object property names for a single document).Note: this setting only has effect if
CANONICALIZE_FIELD_NAMES
is true -- otherwise no canonicalization of any sort is done.This setting is enabled by default.
-
CANONICALIZE_FIELD_NAMES
Feature that determines whether JSON object field names are to be canonicalized (details of how canonicalization is done then further specified byINTERN_FIELD_NAMES
).This setting is enabled by default.
-
FAIL_ON_SYMBOL_HASH_OVERFLOW
Feature that determines what happens if we encounter a case in symbol handling where number of hash collisions exceeds a safety threshold -- which almost certainly means a denial-of-service attack via generated duplicate hash codes. If feature is enabled, anIllegalStateException
is thrown to indicate the suspected denial-of-service attack; if disabled, processing continues but canonicalization (and therebyintern()
ing) is disabled) as protective measure.This setting is enabled by default.
- Since:
- 2.4
-
USE_THREAD_LOCAL_FOR_BUFFER_RECYCLING
Feature that determines whether we will use aRecyclerPool
for allocating and possibly recyclingBufferRecycler
or not. The defaultRecyclerPool
implementation usesThreadLocal
andSoftReference
for efficient reuse of underlying input/output buffers. This usually makes sense on normal J2SE/J2EE server-side processing; but may not make sense on platforms whereSoftReference
handling is broken (like Android), or if there are retention issues due toThreadLocal
(see jackson-core#189 for a possible case)Note that since 2.16 naming here is somewhat misleading as this is used to now enable or disable pooling; but the actual pooling implementation is configurable and may not be based on
ThreadLocal
.This setting is enabled by default.
- Since:
- 2.6
-
CHARSET_DETECTION
Feature to control charset detection for byte-based inputs (byte[]
,InputStream
...). When this feature is enabled (the default), the factory will allow UTF-16 and UTF-32 inputs and try to detect them, as specified by RFC 4627. When this feature is disabled the factory will assume UTF-8, as specified by RFC 8259.This setting is enabled by default.
- Since:
- 2.15
-
-
Method Details
-
values
Returns an array containing the constants of this enum type, in the order they are declared.- Returns:
- an array containing the constants of this enum type, in the order they are declared
-
valueOf
Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)- Parameters:
name
- the name of the enum constant to be returned.- Returns:
- the enum constant with the specified name
- Throws:
IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is null
-
collectDefaults
public static int collectDefaults()Method that calculates bit set (flags) of all features that are enabled by default.- Returns:
- Bit field of features enabled by default
-
enabledByDefault
public boolean enabledByDefault()Description copied from interface:JacksonFeature
Accessor for checking whether this feature is enabled by default.- Specified by:
enabledByDefault
in interfaceJacksonFeature
- Returns:
- Whether this instance is enabled by default or not
-
enabledIn
public boolean enabledIn(int flags) Description copied from interface:JacksonFeature
Convenience method for checking whether feature is enabled in given bitmask.- Specified by:
enabledIn
in interfaceJacksonFeature
- Parameters:
flags
- Bit field that contains a set of enabled features of this type- Returns:
- True if this feature is enabled in passed bit field
-
getMask
public int getMask()Description copied from interface:JacksonFeature
Returns bit mask for this feature instance; must be a single bit, that is of form1 << N
.- Specified by:
getMask
in interfaceJacksonFeature
- Returns:
- Bit mask of this feature
-