Package de.cketti.changelog
Class ReleaseItem
- java.lang.Object
-
- de.cketti.changelog.ReleaseItem
-
public final class ReleaseItem extends Object
Container used to store information about a release/version.
-
-
Field Summary
Fields Modifier and Type Field Description List<String>changesList of changes introduced with that release.StringdateDate of the release (optional).intversionCodeVersion code of the release.StringversionNameVersion name of the release.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)inthashCode()static ReleaseItemnewInstance(int versionCode, String versionName, String date, List<String> changes)StringtoString()
-
-
-
Method Detail
-
newInstance
public static ReleaseItem newInstance(int versionCode, String versionName, @Nullable String date, List<String> changes)
-
-