Uses of Enum Class
org.kiwiproject.jackson.JacksonDataFormat
Packages that use JacksonDataFormat
-
Uses of JacksonDataFormat in org.kiwiproject.jackson
Methods in org.kiwiproject.jackson that return JacksonDataFormatModifier and TypeMethodDescriptionstatic JacksonDataFormatReturns one of the enum constants for the givenformatName, orUNKNOWNif the format name is not found.static JacksonDataFormatReturns the enum constant of this class with the specified name.static JacksonDataFormat[]JacksonDataFormat.values()Returns an array containing the constants of this enum class, in the order they are declared.Methods in org.kiwiproject.jackson that return types with arguments of type JacksonDataFormatModifier and TypeMethodDescriptionstatic Optional<JacksonDataFormat>KiwiJacksonDataFormats.detectFormat(String text) Detect data format of given text using the defaultCharset.static Optional<JacksonDataFormat>KiwiJacksonDataFormats.detectFormat(String text, Charset charset) Detect data format of given text using the givenCharset.static Optional<JacksonDataFormat>KiwiJacksonDataFormats.detectFormatUtf8(String text) Detect data format of given text using UTF-8Charset.Methods in org.kiwiproject.jackson with parameters of type JacksonDataFormatModifier and TypeMethodDescriptionstatic booleanKiwiJacksonDataFormats.isFormat(JacksonDataFormat matchFormat, String text, Charset charset) Does the given text, using the givenCharset, have data formatmatchFormat.