Record MapType

java.lang.Object
java.lang.Record
com.hotels.transformer.model.MapType
Record Components:
keyType - key object class
elemType - elem object class
All Implemented Interfaces:
MapElemType

public record MapType(MapElemType keyType, MapElemType elemType)
extends java.lang.Record
implements MapElemType
Bean class for mapping the java.util.Map type.
  • Constructor Summary

    Constructors
    Constructor Description
    MapType​(MapElemType keyType, MapElemType elemType)
    Creates an instance of a MapType record.
  • Method Summary

    Modifier and Type Method Description
    MapElemType elemType()
    Returns the value of the elemType record component.
    boolean equals​(java.lang.Object o)
    Indicates whether some other object is "equal to" this one.
    int hashCode()
    Returns a hash code value for this object.
    MapElemType keyType()
    Returns the value of the keyType record component.
    java.lang.String toString()
    Returns a string representation of this record.

    Methods inherited from class java.lang.Object

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

    • MapType

      public MapType​(MapElemType keyType, MapElemType elemType)
      Creates an instance of a MapType record.
      Parameters:
      keyType - the value for the keyType record component
      elemType - the value for the elemType record component
  • Method Details

    • toString

      public final 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.
    • keyType

      public MapElemType keyType()
      Returns the value of the keyType record component.
      Returns:
      the value of the keyType record component
    • elemType

      public MapElemType elemType()
      Returns the value of the elemType record component.
      Returns:
      the value of the elemType record component