Interface DataMapper

All Known Implementing Classes:
DataMapperImpl

public interface DataMapper
  • Field Details

  • Method Details

    • read

      <T> T read(byte[] bytes, Class<T> type, int format)
    • read

      <T> T read(byte[] bytes, Class<T> type)
    • read

      <T> T read(String string, Class<T> type, int format)
    • read

      <T> T read(String string, Class<T> type)
    • read

      <T> T read(InputStream stream, Class<T> type, int format)
    • read

      <T> T read(InputStream stream, Class<T> type)
    • read

      <T> T read(byte[] bytes, com.fasterxml.jackson.core.type.TypeReference<T> typeRef, int format)
    • read

      <T> T read(byte[] bytes, com.fasterxml.jackson.core.type.TypeReference<T> typeRef)
    • read

      <T> T read(String string, com.fasterxml.jackson.core.type.TypeReference<T> typeRef, int format)
    • read

      <T> T read(String string, com.fasterxml.jackson.core.type.TypeReference<T> typeRef)
    • read

      <T> T read(InputStream stream, com.fasterxml.jackson.core.type.TypeReference<T> typeRef, int format)
    • read

      <T> T read(InputStream stream, com.fasterxml.jackson.core.type.TypeReference<T> typeRef)
    • writeAsBytes

      byte[] writeAsBytes(Object value, int format, boolean isPretty)
    • writeAsBytes

      byte[] writeAsBytes(Object value, int format)
    • writeAsString

      String writeAsString(Object value, int format, boolean isPretty)
    • writeAsString

      String writeAsString(Object value, int format)
    • writeTo

      void writeTo(File out, Object value, int format, boolean isPretty) throws IOException
      Throws:
      IOException
    • writeTo

      void writeTo(File out, Object value, int format) throws IOException
      Throws:
      IOException
    • writeTo

      void writeTo(OutputStream out, Object value, int format, boolean isPretty) throws IOException
      Throws:
      IOException
    • writeTo

      void writeTo(OutputStream out, Object value, int format) throws IOException
      Throws:
      IOException
    • writeTo

      void writeTo(Writer out, Object value, int format, boolean isPretty) throws IOException
      Throws:
      IOException
    • writeTo

      void writeTo(Writer out, Object value, int format) throws IOException
      Throws:
      IOException
    • writeTo

      void writeTo(DataOutput out, Object value, int format, boolean isPretty) throws IOException
      Throws:
      IOException
    • writeTo

      void writeTo(DataOutput out, Object value, int format) throws IOException
      Throws:
      IOException
    • convert

      <T> T convert(Object value, Class<T> type)
    • convert

      <T> T convert(Object value, com.fasterxml.jackson.core.type.TypeReference<T> typeRef)
    • copy

      <T> T copy(Object value, Class<T> type)
    • copy

      <T> T copy(Object value, com.fasterxml.jackson.core.type.TypeReference<T> typeRef)
    • copy

      <T> T copy(Object value)
    • createObjectNode

      com.fasterxml.jackson.databind.node.ObjectNode createObjectNode()
    • createArrayNode

      com.fasterxml.jackson.databind.node.ArrayNode createArrayNode()
    • mapper

      <T extends com.fasterxml.jackson.core.ObjectCodec> T mapper(int format)