Uses of Class
org.kiwiproject.jackson.JacksonDataFormat
-
Packages that use JacksonDataFormat Package Description org.kiwiproject.jackson -
-
Uses of JacksonDataFormat in org.kiwiproject.jackson
Methods in org.kiwiproject.jackson that return JacksonDataFormat Modifier and Type Method Description static JacksonDataFormatJacksonDataFormat. from(String formatName)Returns one of the enum constants for the givenformatName, orUNKNOWNif the format name is not found.static JacksonDataFormatJacksonDataFormat. valueOf(String name)Returns the enum constant of this type with the specified name.static JacksonDataFormat[]JacksonDataFormat. values()Returns an array containing the constants of this enum type, in the order they are declared.Methods in org.kiwiproject.jackson that return types with arguments of type JacksonDataFormat Modifier and Type Method Description static 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 JacksonDataFormat Modifier and Type Method Description static booleanKiwiJacksonDataFormats. isFormat(JacksonDataFormat matchFormat, String text, Charset charset)Does the given text, using the givenCharset, have data formatmatchFormat.
-