Record Class OpenSensitivityAnalysisProvider.ReplayResult<T extends com.powsybl.sensitivity.SensitivityResultWriter>

java.lang.Object
java.lang.Record
com.powsybl.openloadflow.sensi.OpenSensitivityAnalysisProvider.ReplayResult<T>
Enclosing class:
OpenSensitivityAnalysisProvider

public static record OpenSensitivityAnalysisProvider.ReplayResult<T extends com.powsybl.sensitivity.SensitivityResultWriter>(T extends com.powsybl.sensitivity.SensitivityResultWriter resultWriter, List<com.powsybl.sensitivity.SensitivityFactor> factors, List<com.powsybl.contingency.Contingency> contingencies) extends Record
  • Constructor Summary

    Constructors
    Constructor
    Description
    ReplayResult(T resultWriter, List<com.powsybl.sensitivity.SensitivityFactor> factors, List<com.powsybl.contingency.Contingency> contingencies)
    Creates an instance of a ReplayResult record class.
  • Method Summary

    Modifier and Type
    Method
    Description
    List<com.powsybl.contingency.Contingency>
    Returns the value of the contingencies record component.
    final boolean
    Indicates whether some other object is "equal to" this one.
    List<com.powsybl.sensitivity.SensitivityFactor>
    Returns the value of the factors record component.
    final int
    Returns a hash code value for this object.
    Returns the value of the resultWriter record component.
    final String
    Returns a string representation of this record class.

    Methods inherited from class java.lang.Object

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

    • ReplayResult

      public ReplayResult(T resultWriter, List<com.powsybl.sensitivity.SensitivityFactor> factors, List<com.powsybl.contingency.Contingency> contingencies)
      Creates an instance of a ReplayResult record class.
      Parameters:
      resultWriter - the value for the resultWriter record component
      factors - the value for the factors record component
      contingencies - the value for the contingencies 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 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.
    • resultWriter

      public T resultWriter()
      Returns the value of the resultWriter record component.
      Returns:
      the value of the resultWriter record component
    • factors

      public List<com.powsybl.sensitivity.SensitivityFactor> factors()
      Returns the value of the factors record component.
      Returns:
      the value of the factors record component
    • contingencies

      public List<com.powsybl.contingency.Contingency> contingencies()
      Returns the value of the contingencies record component.
      Returns:
      the value of the contingencies record component