Interface DataToDeserialize


public interface DataToDeserialize
  • Method Summary

    Modifier and Type
    Method
    Description
    byte[]
    Get the data as a byte array.
    Get the data as an input stream.
    Get the data as a string.
  • Method Details

    • asString

      String asString()
      Get the data as a string.
      Returns:
      The data as a string.
    • asByteArray

      byte[] asByteArray()
      Get the data as a byte array.
      Returns:
      The data as a array.
    • asInputStream

      InputStream asInputStream()
      Get the data as an input stream.
      Returns:
      The data as an input stream.