Class Logo


  • public class Logo
    extends Object
    Logo
    • Constructor Detail

      • Logo

        public Logo()
    • Method Detail

      • data

        public Logo data​(String data)
        The image file, converted to a Base64-encoded string, of the logo to be shown on the terminal.
        Parameters:
        data -
        Returns:
        the current Logo instance, allowing for method chaining
      • getData

        public String getData()
        The image file, converted to a Base64-encoded string, of the logo to be shown on the terminal.
        Returns:
        data
      • setData

        public void setData​(String data)
        The image file, converted to a Base64-encoded string, of the logo to be shown on the terminal.
        Parameters:
        data -
      • equals

        public boolean equals​(Object o)
        Return true if this Logo object is equal to o.
        Overrides:
        equals in class Object
      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • fromJson

        public static Logo fromJson​(String jsonString)
                             throws com.fasterxml.jackson.core.JsonProcessingException
        Create an instance of Logo given an JSON string
        Parameters:
        jsonString - JSON string
        Returns:
        An instance of Logo
        Throws:
        com.fasterxml.jackson.core.JsonProcessingException - if the JSON string is invalid with respect to Logo
      • toJson

        public String toJson()
                      throws com.fasterxml.jackson.core.JsonProcessingException
        Convert an instance of Logo to an JSON string
        Returns:
        JSON string
        Throws:
        com.fasterxml.jackson.core.JsonProcessingException