Class JGitTag
- java.lang.Object
-
- com.github.koraktor.mavanagaiata.git.jgit.JGitTag
-
-
Field Summary
Fields Modifier and Type Field Description protected RevTagtag(package private) PersonIdenttaggerIdent
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object object)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 createdinthashCode()booleanisLoaded()
-
-
-
Field Detail
-
tag
protected RevTag tag
-
taggerIdent
PersonIdent taggerIdent
-
-
Constructor Detail
-
JGitTag
JGitTag(RevTag tag)
Creates a new instance from a JGit tag object- Parameters:
tag- The tag object to wrap
-
-
Method Detail
-
getDate
public Date getDate()
Description copied from interface:GitTagReturns the date when this tag has been created
-
getName
public String getName()
Description copied from interface:GitTagReturns the name of this tag
-
getTimeZone
public TimeZone getTimeZone()
Description copied from interface:GitTagReturns the timezone in which this tag has been created- Specified by:
getTimeZonein interfaceGitTag- Returns:
- The timezone of this tag
-
isLoaded
public boolean isLoaded()
- Specified by:
isLoadedin interfaceGitTag- Returns:
true, if this tag’s metadata has been loaded- See Also:
GitRepository.loadTag(com.github.koraktor.mavanagaiata.git.GitTag)
-
-