Record Class FavoritesForUserDTO
java.lang.Object
java.lang.Record
org.graylog.plugins.views.favorites.FavoritesForUserDTO
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionFavoritesForUserDTO(String id, String userId, List<GRN> items) Creates an instance of aFavoritesForUserDTOrecord class.FavoritesForUserDTO(String userId, List<GRN> items) -
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.id()Returns the value of theidrecord component.items()Returns the value of theitemsrecord component.final StringtoString()Returns a string representation of this record class.userId()Returns the value of theuserIdrecord component.
-
Field Details
-
FIELD_ID
- See Also:
-
FIELD_USER_ID
- See Also:
-
FIELD_ITEMS
- See Also:
-
-
Constructor Details
-
FavoritesForUserDTO
Creates an instance of aFavoritesForUserDTOrecord class.- Parameters:
id- the value for theidrecord componentuserId- the value for theuserIdrecord componentitems- the value for theitemsrecord component
-
FavoritesForUserDTO
-
-
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). -
id
Returns the value of theidrecord component.- Returns:
- the value of the
idrecord component
-
userId
Returns the value of theuserIdrecord component.- Returns:
- the value of the
userIdrecord component
-
items
Returns the value of theitemsrecord component.- Returns:
- the value of the
itemsrecord component
-