Package org.kohsuke.github
Class GHCheckRun.Output
- java.lang.Object
-
- org.kohsuke.github.GHCheckRun.Output
-
- Enclosing class:
- GHCheckRun
public static class GHCheckRun.Output extends Object
Represents an output in a check run to include summary and other results.- See Also:
- documentation
-
-
Constructor Summary
Constructors Constructor Description Output()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description intgetAnnotationsCount()Gets the annotation count of a check run.URLgetAnnotationsUrl()Gets the URL of annotations.StringgetSummary()Gets the summary of the check run, note that it supports Markdown.StringgetText()Gets the details of the check run, note that it supports Markdown.StringgetTitle()Gets the title of check run.
-
-
-
Method Detail
-
getTitle
public String getTitle()
Gets the title of check run.- Returns:
- title of check run
-
getSummary
public String getSummary()
Gets the summary of the check run, note that it supports Markdown.- Returns:
- summary of check run
-
getText
public String getText()
Gets the details of the check run, note that it supports Markdown.- Returns:
- Details of the check run
-
getAnnotationsCount
public int getAnnotationsCount()
Gets the annotation count of a check run.- Returns:
- annotation count of a check run
-
getAnnotationsUrl
public URL getAnnotationsUrl()
Gets the URL of annotations.- Returns:
- URL of annotations
-
-