Record Class AcceptConflictResource.ConflictData

java.lang.Object
java.lang.Record
ch.tocco.nice2.optional.reservation.impl.actions.AcceptConflictResource.ConflictData
All Implemented Interfaces:
Comparable<AcceptConflictResource.ConflictData>
Enclosing class:
AcceptConflictResource

public static record AcceptConflictResource.ConflictData(String id, String conflictItem, String conflictItemModel, boolean accepted, AcceptConflictResource.ConflictItem firstItem, AcceptConflictResource.ConflictItem secondItem, String entityKey) extends Record implements Comparable<AcceptConflictResource.ConflictData>
  • Constructor Details

    • ConflictData

      public ConflictData(String id, String conflictItem, String conflictItemModel, boolean accepted, AcceptConflictResource.ConflictItem firstItem, AcceptConflictResource.ConflictItem secondItem, String entityKey)
      Creates an instance of a ConflictData record class.
      Parameters:
      id - the value for the id record component
      conflictItem - the value for the conflictItem record component
      conflictItemModel - the value for the conflictItemModel record component
      accepted - the value for the accepted record component
      firstItem - the value for the firstItem record component
      secondItem - the value for the secondItem record component
      entityKey - the value for the entityKey record component
  • Method Details

    • compareTo

      public int compareTo(AcceptConflictResource.ConflictData o)
      Specified by:
      compareTo in interface Comparable<AcceptConflictResource.ConflictData>
    • 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. Reference components are compared with Objects::equals(Object,Object); primitive components are compared with '=='.
      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.
    • id

      public String id()
      Returns the value of the id record component.
      Returns:
      the value of the id record component
    • conflictItem

      public String conflictItem()
      Returns the value of the conflictItem record component.
      Returns:
      the value of the conflictItem record component
    • conflictItemModel

      public String conflictItemModel()
      Returns the value of the conflictItemModel record component.
      Returns:
      the value of the conflictItemModel record component
    • accepted

      public boolean accepted()
      Returns the value of the accepted record component.
      Returns:
      the value of the accepted record component
    • firstItem

      Returns the value of the firstItem record component.
      Returns:
      the value of the firstItem record component
    • secondItem

      Returns the value of the secondItem record component.
      Returns:
      the value of the secondItem record component
    • entityKey

      public String entityKey()
      Returns the value of the entityKey record component.
      Returns:
      the value of the entityKey record component