Package 

Interface Serializer


  • 
    public interface Serializer<T extends Object>
    
                        

    An interface which can transform an object of type T into a formatted String.

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
      public class Serializer.Companion
    • Method Summary

      Modifier and Type Method Description
      abstract String serialize(T model) Serializes the data into a String.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Method Detail

      • serialize

         abstract String serialize(T model)

        Serializes the data into a String.