Uses of Enum
com.fasterxml.jackson.core.util.Separators.Spacing
Packages that use Separators.Spacing
Package
Description
Utility classes used by Jackson Core functionality.
-
Uses of Separators.Spacing in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that return Separators.SpacingModifier and TypeMethodDescriptionSeparators.getArrayValueSpacing()
Separators.getObjectEntrySpacing()
Separators.getObjectFieldValueSpacing()
static Separators.Spacing
Returns the enum constant of this type with the specified name.static Separators.Spacing[]
Separators.Spacing.values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.fasterxml.jackson.core.util with parameters of type Separators.SpacingModifier and TypeMethodDescriptionSeparators.withArrayValueSpacing
(Separators.Spacing spacing) Separators.withObjectEntrySpacing
(Separators.Spacing spacing) Separators.withObjectFieldValueSpacing
(Separators.Spacing spacing) Constructors in com.fasterxml.jackson.core.util with parameters of type Separators.SpacingModifierConstructorDescriptionSeparators
(String rootSeparator, char objectFieldValueSeparator, Separators.Spacing objectFieldValueSpacing, char objectEntrySeparator, Separators.Spacing objectEntrySpacing, char arrayValueSeparator, Separators.Spacing arrayValueSpacing) Deprecated.Since 2.17 use new canonical constructorSeparators
(String rootSeparator, char objectFieldValueSeparator, Separators.Spacing objectFieldValueSpacing, char objectEntrySeparator, Separators.Spacing objectEntrySpacing, String objectEmptySeparator, char arrayValueSeparator, Separators.Spacing arrayValueSpacing, String arrayEmptySeparator) Canonical constructor for creating an instance with the specified separator characters and spaces around those characters.