Interface TypeCodec<T>


public interface TypeCodec<T>
  • Method Summary

    Modifier and Type
    Method
    Description
    decode(byte[] input)
     
    byte[]
    encode(T input)
     
     
    default boolean
    type(Class<?> type)
     
  • Method Details

    • type

      Class<T> type()
    • type

      default boolean type(Class<?> type)
    • decode

      T decode(byte[] input)
    • encode

      byte[] encode(T input)