Package org.kohsuke.github
Class GHRepositoryStatistics.CodeFrequency
- java.lang.Object
-
- org.kohsuke.github.GHRepositoryStatistics.CodeFrequency
-
- Enclosing class:
- GHRepositoryStatistics
public static class GHRepositoryStatistics.CodeFrequency extends Object
The type CodeFrequency.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description longgetAdditions()Gets additions.longgetDeletions()Gets deletions.intgetWeekTimestamp()Gets week timestamp.StringtoString()To string.
-
-
-
Method Detail
-
getWeekTimestamp
public int getWeekTimestamp()
Gets week timestamp.- Returns:
- The start of the week as a UNIX timestamp.
-
getAdditions
public long getAdditions()
Gets additions.- Returns:
- The number of additions for the week.
-
getDeletions
public long getDeletions()
Gets deletions.- Returns:
- The number of deletions for the week. NOTE: This will be a NEGATIVE number.
-
-