Record Class MTAAnalysisReport.AnalysisIncidents

java.lang.Object
java.lang.Record
com.redhat.parodos.examples.prebuilt.migrationtoolkit.MTAAnalysisReport.AnalysisIncidents
Record Components:
mandatory -
optional -
potential -
cloudMandatory -
cloudOptional -
information -
Enclosing class:
MTAAnalysisReport

public static record MTAAnalysisReport.AnalysisIncidents(int mandatory, int optional, int potential, int cloudMandatory, int cloudOptional, int information) extends Record
A representation of the summary of the incidents by severity of an MTA analysis report
  • Constructor Details

    • AnalysisIncidents

      public AnalysisIncidents(int mandatory, int optional, int potential, int cloudMandatory, int cloudOptional, int information)
      Creates an instance of a AnalysisIncidents record class.
      Parameters:
      mandatory - the value for the mandatory record component
      optional - the value for the optional record component
      potential - the value for the potential record component
      cloudMandatory - the value for the cloudMandatory record component
      cloudOptional - the value for the cloudOptional record component
      information - the value for the information record component
  • Method Details

    • 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 '=='.
      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.
    • mandatory

      public int mandatory()
      Returns the value of the mandatory record component.
      Returns:
      the value of the mandatory record component
    • optional

      public int optional()
      Returns the value of the optional record component.
      Returns:
      the value of the optional record component
    • potential

      public int potential()
      Returns the value of the potential record component.
      Returns:
      the value of the potential record component
    • cloudMandatory

      public int cloudMandatory()
      Returns the value of the cloudMandatory record component.
      Returns:
      the value of the cloudMandatory record component
    • cloudOptional

      public int cloudOptional()
      Returns the value of the cloudOptional record component.
      Returns:
      the value of the cloudOptional record component
    • information

      public int information()
      Returns the value of the information record component.
      Returns:
      the value of the information record component