Package org.kohsuke.github
Class GHPullRequestReviewCommentReactions
- java.lang.Object
-
- org.kohsuke.github.GHPullRequestReviewCommentReactions
-
public class GHPullRequestReviewCommentReactions extends Object
Reactions for a Pull Request Review comment.- Author:
- Vasilis Gakias
- See Also:
- API
documentation in the response schema,
GHPullRequestReviewComment
-
-
Constructor Summary
Constructors Constructor Description GHPullRequestReviewCommentReactions()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetConfused()Gets the number of confused reactionsintgetEyes()Gets the number of eyes reactionsintgetHeart()Gets the number of heart reactionsintgetHooray()Gets the number of hooray reactionsintgetLaugh()Gets the number of laugh reactionsintgetMinusOne()Gets the number of -1 reactionsintgetPlusOne()Gets the number of +1 reactionsintgetRocket()Gets the number of rocket reactionsintgetTotalCount()Gets the total count of reactionsURLgetUrl()Gets the URL of the comment's reactions
-
-
-
Method Detail
-
getUrl
public URL getUrl()
Gets the URL of the comment's reactions- Returns:
- the URL of the comment's reactions
-
getTotalCount
public int getTotalCount()
Gets the total count of reactions- Returns:
- the number of total reactions
-
getPlusOne
public int getPlusOne()
Gets the number of +1 reactions- Returns:
- the number of +1 reactions
-
getMinusOne
public int getMinusOne()
Gets the number of -1 reactions- Returns:
- the number of -1 reactions
-
getLaugh
public int getLaugh()
Gets the number of laugh reactions- Returns:
- the number of laugh reactions
-
getConfused
public int getConfused()
Gets the number of confused reactions- Returns:
- the number of confused reactions
-
getHeart
public int getHeart()
Gets the number of heart reactions- Returns:
- the number of heart reactions
-
getHooray
public int getHooray()
Gets the number of hooray reactions- Returns:
- the number of hooray reactions
-
getEyes
public int getEyes()
Gets the number of eyes reactions- Returns:
- the number of eyes reactions
-
getRocket
public int getRocket()
Gets the number of rocket reactions- Returns:
- the number of rocket reactions
-
-