Record Class Duration
java.lang.Object
java.lang.Record
org.jenkinsci.plugins.additionalmetrics.Duration
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfinal boolean
Indicates whether some other object is "equal to" this one.long
final int
hashCode()
Returns a hash code value for this object.long
Returns the value of themilliseconds
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
Duration
public Duration(long milliseconds) Creates an instance of aDuration
record class.- Parameters:
milliseconds
- the value for themilliseconds
record component
-
-
Method Details
-
getAsLong
public long getAsLong() -
getAsString
-
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 '=='. -
milliseconds
public long milliseconds()Returns the value of themilliseconds
record component.- Returns:
- the value of the
milliseconds
record component
-