Record Class Rate
java.lang.Object
java.lang.Record
org.jenkinsci.plugins.additionalmetrics.Rate
Represents a rate as a double value between 0.0 and 1.0.
Provides methods to access the rate as a double or as a formatted percentage string.
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.doubleReturns the rate as a double value.Returns the rate as a formatted percentage string.final inthashCode()Returns a hash code value for this object.doublerate()Returns the value of theraterecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
Rate
public Rate(double rate) Creates an instance of aRaterecord class.- Parameters:
rate- the value for theraterecord component
-
-
Method Details
-
getAsDouble
public double getAsDouble()Returns the rate as a double value.- Returns:
- the rate value as a double between 0.0 and 1.0
-
getAsString
Returns the rate as a formatted percentage string. The percentage is formatted to two decimal places with a "%" suffix.- Returns:
- the rate formatted as a percentage string (e.g., "75.25%")
-
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 '=='. -
rate
public double rate()Returns the value of theraterecord component.- Returns:
- the value of the
raterecord component
-