Interface BodyReader<T>


public interface BodyReader<T>
Read content as a java type.
  • Method Summary

    Modifier and Type
    Method
    Description
    read(BodyContent content)
    Read the content returning it as a java type.
    readBody(String content)
    Read the String content returning it as a java type.
  • Method Details

    • read

      T read(BodyContent content)
      Read the content returning it as a java type.
    • readBody

      T readBody(String content)
      Read the String content returning it as a java type.