Uses of Class
com.spotify.github.v3.comment.CommentReactionContent
-
Packages that use CommentReactionContent Package Description com.spotify.github.jackson com.spotify.github.v3.clients com.spotify.github.v3.comment -
-
Uses of CommentReactionContent in com.spotify.github.jackson
Methods in com.spotify.github.jackson that return CommentReactionContent Modifier and Type Method Description CommentReactionContent
CommentReactionContentDeserializer. deserialize(com.fasterxml.jackson.core.JsonParser p, com.fasterxml.jackson.databind.DeserializationContext ctxt)
Methods in com.spotify.github.jackson with parameters of type CommentReactionContent Modifier and Type Method Description void
CommentReactionContentSerializer. serialize(CommentReactionContent value, com.fasterxml.jackson.core.JsonGenerator gen, com.fasterxml.jackson.databind.SerializerProvider serializers)
-
Uses of CommentReactionContent in com.spotify.github.v3.clients
Methods in com.spotify.github.v3.clients with parameters of type CommentReactionContent Modifier and Type Method Description CompletableFuture<CommentReaction>
IssueClient. createCommentReaction(long commentId, CommentReactionContent reaction)
Create a reaction on a comment. -
Uses of CommentReactionContent in com.spotify.github.v3.comment
Methods in com.spotify.github.v3.comment that return CommentReactionContent Modifier and Type Method Description CommentReactionContent
CommentReaction. content()
Reaction content.CommentReactionContent
ImmutableCommentReaction. content()
Reaction content.static CommentReactionContent
CommentReactionContent. valueOf(String name)
Returns the enum constant of this type with the specified name.static CommentReactionContent[]
CommentReactionContent. values()
Returns an array containing the constants of this enum type, in the order they are declared.Methods in com.spotify.github.v3.comment with parameters of type CommentReactionContent Modifier and Type Method Description ImmutableCommentReaction.Builder
ImmutableCommentReaction.Builder. content(CommentReactionContent content)
Initializes the value for thecontent
attribute.ImmutableCommentReaction
ImmutableCommentReaction. withContent(CommentReactionContent value)
Copy the current immutable object by setting a value for thecontent
attribute.
-