Record Class EcoscoreData
java.lang.Object
java.lang.Record
com.alpermulayim.openfoodfacts_spring_boot_starter.dtos.EcoscoreData
public record EcoscoreData(Adjustments adjustments, Packaging packaging, ProductionSystem productionSystem, ThreatenedSpecies threatenedSpecies)
extends Record
-
Constructor Summary
ConstructorsConstructorDescriptionEcoscoreData
(Adjustments adjustments, Packaging packaging, ProductionSystem productionSystem, ThreatenedSpecies threatenedSpecies) Creates an instance of aEcoscoreData
record class. -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of theadjustments
record component.final boolean
Indicates whether some other object is "equal to" this one.final int
hashCode()
Returns a hash code value for this object.Returns the value of thepackaging
record component.Returns the value of theproductionSystem
record component.Returns the value of thethreatenedSpecies
record component.final String
toString()
Returns a string representation of this record class.
-
Constructor Details
-
EcoscoreData
public EcoscoreData(Adjustments adjustments, Packaging packaging, ProductionSystem productionSystem, ThreatenedSpecies threatenedSpecies) Creates an instance of aEcoscoreData
record class.- Parameters:
adjustments
- the value for theadjustments
record componentpackaging
- the value for thepackaging
record componentproductionSystem
- the value for theproductionSystem
record componentthreatenedSpecies
- the value for thethreatenedSpecies
record 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. All components in this record class are compared withObjects::equals(Object,Object)
. -
adjustments
Returns the value of theadjustments
record component.- Returns:
- the value of the
adjustments
record component
-
packaging
Returns the value of thepackaging
record component.- Returns:
- the value of the
packaging
record component
-
productionSystem
Returns the value of theproductionSystem
record component.- Returns:
- the value of the
productionSystem
record component
-
threatenedSpecies
Returns the value of thethreatenedSpecies
record component.- Returns:
- the value of the
threatenedSpecies
record component
-