Record Class FColorDao.FColorInfo
java.lang.Object
java.lang.Record
net.flectone.pulse.data.database.dao.FColorDao.FColorInfo
- Record Components:
fColor- the color instance containing color detailstype- the classification type of the color
- Enclosing class:
FColorDao
public static record FColorDao.FColorInfo(@NonNull FColor fColor, @NonNull FColor.Type type)
extends Record
Represents colors information retrieved from the database.
- Since:
- 0.9.0
-
Constructor Summary
ConstructorsConstructorDescriptionFColorInfo(@NonNull FColor fColor, @NonNull FColor.Type type) Creates an instance of aFColorInforecord class. -
Method Summary
Modifier and TypeMethodDescriptionfinal booleanIndicates whether some other object is "equal to" this one.@NonNull FColorfColor()Returns the value of thefColorrecord component.final inthashCode()Returns a hash code value for this object.final StringtoString()Returns a string representation of this record class.@NonNull FColor.Typetype()Returns the value of thetyperecord component.
-
Constructor Details
-
Method Details
-
toString
-
hashCode
-
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). -
fColor
-
type
-