Record JsonGson

java.lang.Object
java.lang.Record
io.memoria.jutils.adapter.json.JsonGson
All Implemented Interfaces:
Json

public record JsonGson(com.google.gson.Gson gson)
extends java.lang.Record
implements Json
  • Constructor Summary

    Constructors 
    Constructor Description
    JsonGson​(com.google.gson.Gson gson)
    Creates an instance of a JsonGson record.
  • Method Summary

    Modifier and Type Method Description
    boolean equals​(java.lang.Object o)
    Indicates whether some other object is "equal to" this one.
    com.google.gson.Gson gson()
    Returns the value of the gson record component.
    int hashCode()
    Returns a hash code value for this object.
    io.vavr.control.Try<java.util.Map<java.lang.String,​java.lang.Object>> toMap​(java.lang.String str)  
    <T> io.vavr.control.Try<T> toObject​(java.lang.String str, java.lang.Class<T> tClass)  
    java.lang.String toString()
    Returns a string representation of this record.
    <T> java.lang.String toString​(T t)  

    Methods inherited from class java.lang.Object

    clone, finalize, getClass, notify, notifyAll, wait, wait, wait
  • Constructor Details

    • JsonGson

      public JsonGson​(com.google.gson.Gson gson)
      Creates an instance of a JsonGson record.
      Parameters:
      gson - the value for the gson record component
  • Method Details

    • toMap

      public io.vavr.control.Try<java.util.Map<java.lang.String,​java.lang.Object>> toMap​(java.lang.String str)
      Specified by:
      toMap in interface Json
    • toObject

      public <T> io.vavr.control.Try<T> toObject​(java.lang.String str, java.lang.Class<T> tClass)
      Specified by:
      toObject in interface Json
    • toString

      public <T> java.lang.String toString​(T t)
      Specified by:
      toString in interface Json
    • toString

      public java.lang.String toString()
      Returns a string representation of this record. The representation contains the name of the type, followed by the name and value of each of the record components.
      Specified by:
      toString in class java.lang.Record
      Returns:
      a string representation of this object
    • hashCode

      public final int hashCode()
      Returns a hash code value for this object. The value is derived from the hash code of each of the record components.
      Specified by:
      hashCode in class java.lang.Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals​(java.lang.Object o)
      Indicates whether some other object is "equal to" this one. The objects are equal if the other object is of the same class and if all the record components are equal. All components in this record are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class java.lang.Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • gson

      public com.google.gson.Gson gson()
      Returns the value of the gson record component.
      Returns:
      the value of the gson record component