Record Class SimpleMapperRegistry.MappingKey

java.lang.Object
java.lang.Record
dev.getelements.elements.sdk.model.util.SimpleMapperRegistry.MappingKey
Record Components:
source -
destination -
Enclosing class:
SimpleMapperRegistry

public static record SimpleMapperRegistry.MappingKey(Class<?> source, Class<?> destination) extends Record
Represents a key for a MapperRegistry.Mapper or an MapperRegistry.Updater
  • Constructor Details

    • MappingKey

      public MappingKey(Class<?> source, Class<?> destination)
      Creates an instance of a MappingKey record class.
      Parameters:
      source - the value for the source record component
      destination - the value for the destination record component
  • Method Details

    • reversed

      Reverses this key.
      Returns:
      the key
    • fromMapper

      public static SimpleMapperRegistry.MappingKey fromMapper(Class<?> aMapperClass)
      Get the SimpleMapperRegistry.MappingKey from the Class representing the mapper.
      Parameters:
      aMapperClass - the mapper class
      Returns:
      the SimpleMapperRegistry.MappingKey
    • fromUpdater

      public static SimpleMapperRegistry.MappingKey fromUpdater(Class<?> anUpdaterClass)
      Get the SimpleMapperRegistry.MappingKey from the Class representing the updater.
      Parameters:
      anUpdaterClass - the mapper class
      Returns:
      the SimpleMapperRegistry.MappingKey
    • toString

      public final String toString()
      Returns a string representation of this record class. The representation contains the name of the class, followed by the name and value of each of the record components.
      Specified by:
      toString in class 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 Record
      Returns:
      a hash code value for this object
    • equals

      public final boolean equals(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 class are compared with Objects::equals(Object,Object).
      Specified by:
      equals in class Record
      Parameters:
      o - the object with which to compare
      Returns:
      true if this object is the same as the o argument; false otherwise.
    • source

      public Class<?> source()
      Returns the value of the source record component.
      Returns:
      the value of the source record component
    • destination

      public Class<?> destination()
      Returns the value of the destination record component.
      Returns:
      the value of the destination record component