Interface GitTag
-
- All Known Implementing Classes:
JGitTag
public interface GitTagThis interface specifies the basic properties needed for the mojos to access the information about a Git tag- Author:
- Sebastian Staudt
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description DategetDate()Returns the date when this tag has been createdStringgetName()Returns the name of this tagTimeZonegetTimeZone()Returns the timezone in which this tag has been createdbooleanisLoaded()
-
-
-
Method Detail
-
getDate
Date getDate()
Returns the date when this tag has been created- Returns:
- The creation date of this tag
-
getName
String getName()
Returns the name of this tag- Returns:
- The name of this tag
-
getTimeZone
TimeZone getTimeZone()
Returns the timezone in which this tag has been created- Returns:
- The timezone of this tag
-
isLoaded
boolean isLoaded()
- Returns:
true, if this tag’s metadata has been loaded- See Also:
GitRepository.loadTag(com.github.koraktor.mavanagaiata.git.GitTag)
-
-