Uses of Class
com.fasterxml.jackson.core.util.DefaultPrettyPrinter
-
Packages that use DefaultPrettyPrinter Package Description com.fasterxml.jackson.core.util Utility classes used by Jackson Core functionality. -
-
Uses of DefaultPrettyPrinter in com.fasterxml.jackson.core.util
Methods in com.fasterxml.jackson.core.util that return DefaultPrettyPrinter Modifier and Type Method Description protected DefaultPrettyPrinter
DefaultPrettyPrinter. _withSpaces(boolean state)
DefaultPrettyPrinter
DefaultPrettyPrinter. createInstance()
DefaultPrettyPrinter
DefaultPrettyPrinter. withArrayIndenter(DefaultPrettyPrinter.Indenter i)
DefaultPrettyPrinter
DefaultPrettyPrinter. withObjectIndenter(DefaultPrettyPrinter.Indenter i)
DefaultPrettyPrinter
DefaultPrettyPrinter. withoutSpacesInObjectEntries()
"Mutant factory" method that will return a pretty printer instance that does not use spaces inside object entries; if 'this' instance already does this, it is returned; if not, a new instance will be constructed and returned.DefaultPrettyPrinter
DefaultPrettyPrinter. withRootSeparator(SerializableString rootSeparator)
DefaultPrettyPrinter
DefaultPrettyPrinter. withRootSeparator(String rootSeparator)
DefaultPrettyPrinter
DefaultPrettyPrinter. withSeparators(Separators separators)
DefaultPrettyPrinter
DefaultPrettyPrinter. withSpacesInObjectEntries()
"Mutant factory" method that will return a pretty printer instance that does use spaces inside object entries; if 'this' instance already does this, it is returned; if not, a new instance will be constructed and returned.Constructors in com.fasterxml.jackson.core.util with parameters of type DefaultPrettyPrinter Constructor Description DefaultPrettyPrinter(DefaultPrettyPrinter base)
DefaultPrettyPrinter(DefaultPrettyPrinter base, SerializableString rootSeparator)
-