Package qsardes.descriptor
Record Class DescriptorExtendedTopochemIndex.Eta
java.lang.Object
java.lang.Record
qsardes.descriptor.DescriptorExtendedTopochemIndex.Eta
- Record Components:
full- eta value.local- local eta value.
- Enclosing class:
- DescriptorExtendedTopochemIndex
protected static record DescriptorExtendedTopochemIndex.Eta(double full, double local)
extends Record
Stores eta values for extended topochemical index descriptors.
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedEta(double full, double local) Creates an instance of aEtarecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.doublefull()Returns the value of thefullrecord component.final inthashCode()Returns a hash code value for this object.doublelocal()Returns the value of thelocalrecord 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 '=='. -
full
public double full()Returns the value of thefullrecord component.- Returns:
- the value of the
fullrecord component
-
local
public double local()Returns the value of thelocalrecord component.- Returns:
- the value of the
localrecord component
-