Package dev.tobee.telegram.model.media
Record Class StickerSet
java.lang.Object
java.lang.Record
dev.tobee.telegram.model.media.StickerSet
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionReturns the value of thecontainsMasksrecord component.final booleanIndicates whether some other object is "equal to" this one.final inthashCode()Returns a hash code value for this object.Returns the value of theisAnimatedrecord component.isVideo()Returns the value of theisVideorecord component.name()Returns the value of thenamerecord component.stickers()Returns the value of thestickersrecord component.thumb()Returns the value of thethumbrecord component.title()Returns the value of thetitlerecord component.final StringtoString()Returns a string representation of this record class.
-
Constructor Details
-
StickerSet
public StickerSet(String name, String title, Boolean isAnimated, Boolean isVideo, Boolean containsMasks, List<Sticker> stickers, Optional<PhotoSize> thumb) Creates an instance of aStickerSetrecord class.- Parameters:
name- the value for thenamerecord componenttitle- the value for thetitlerecord componentisAnimated- the value for theisAnimatedrecord componentisVideo- the value for theisVideorecord componentcontainsMasks- the value for thecontainsMasksrecord componentstickers- the value for thestickersrecord componentthumb- the value for thethumbrecord 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). -
name
Returns the value of thenamerecord component.- Returns:
- the value of the
namerecord component
-
title
Returns the value of thetitlerecord component.- Returns:
- the value of the
titlerecord component
-
isAnimated
Returns the value of theisAnimatedrecord component.- Returns:
- the value of the
isAnimatedrecord component
-
isVideo
Returns the value of theisVideorecord component.- Returns:
- the value of the
isVideorecord component
-
containsMasks
Returns the value of thecontainsMasksrecord component.- Returns:
- the value of the
containsMasksrecord component
-
stickers
Returns the value of thestickersrecord component.- Returns:
- the value of the
stickersrecord component
-
thumb
Returns the value of thethumbrecord component.- Returns:
- the value of the
thumbrecord component
-