Package qsardes.molecule
Record Class Molecule.IntrState
java.lang.Object
java.lang.Record
qsardes.molecule.Molecule.IntrState
- Record Components:
delta- Sigma electrons count.delta_v- Valence electrons count.i_state- Intrinsic state.
- Enclosing class:
- Molecule
public static record Molecule.IntrState(double delta, double delta_v, double i_state)
extends Record
Stores the atomic intrinsic state, sigma and valence electrons count.
-
Constructor Summary
ConstructorsConstructorDescriptionIntrState(double delta, double delta_v, double i_state) Creates an instance of aIntrStaterecord class. -
Method Summary
Modifier and TypeMethodDescriptiondoubledelta()Returns the value of thedeltarecord component.doubledelta_v()Returns the value of thedelta_vrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.doublei_state()Returns the value of thei_staterecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Method Details
-
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. -
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. -
equals
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 '=='. -
delta
public double delta()Returns the value of thedeltarecord component.- Returns:
- the value of the
deltarecord component
-
delta_v
public double delta_v()Returns the value of thedelta_vrecord component.- Returns:
- the value of the
delta_vrecord component
-
i_state
public double i_state()Returns the value of thei_staterecord component.- Returns:
- the value of the
i_staterecord component
-