Package com.bytedesk.ai.utils.tools
Record Class WeatherResponse
java.lang.Object
java.lang.Record
com.bytedesk.ai.utils.tools.WeatherResponse
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionWeatherResponse(double temp, Unit unit) Creates an instance of aWeatherResponserecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.doubletemp()Returns the value of thetemprecord component.final StringtoString()Returns a string representation of this record class.unit()Returns the value of theunitrecord component.
-
Field Details
-
temp
private final double tempThe field for thetemprecord component. -
unit
The field for theunitrecord component.
-
-
Constructor Details
-
WeatherResponse
Creates an instance of aWeatherResponserecord class.- Parameters:
temp- the value for thetemprecord componentunit- the value for theunitrecord component
-
-
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. Reference components are compared withObjects::equals(Object,Object); primitive components are compared with '=='. -
temp
public double temp()Returns the value of thetemprecord component.- Returns:
- the value of the
temprecord component
-
unit
Returns the value of theunitrecord component.- Returns:
- the value of the
unitrecord component
-