Java org.eclipse.jgit.lib PersonIdent fields, constructors, methods, implement or subclass

Example usage for Java org.eclipse.jgit.lib PersonIdent fields, constructors, methods, implement or subclass

Introduction

In this page you can find the methods, fields and constructors for org.eclipse.jgit.lib PersonIdent.

The text is from its open source code.

Constructor

PersonIdent(String aName, String aEmailAddress)
Construct a new org.eclipse.jgit.lib.PersonIdent with current time.
PersonIdent(PersonIdent pi, Date aWhen)
Copy a org.eclipse.jgit.lib.PersonIdent , but alter the clone's time stamp
PersonIdent(final String aName, final String aEmailAddress, final Date aWhen, final TimeZone aTZ)
Construct a PersonIdent from simple data
PersonIdent(final String aName, final String aEmailAddress, final long aWhen, final int aTZ)
Construct a org.eclipse.jgit.lib.PersonIdent .
PersonIdent(Repository repo)
Creates new PersonIdent from config info in repository, with current time.
PersonIdent(PersonIdent pi)
Copy a org.eclipse.jgit.lib.PersonIdent .
PersonIdent(UserConfig config)
PersonIdent(String aName, String aEmailAddress, ProposedTimestamp when)
Construct a new org.eclipse.jgit.lib.PersonIdent with current time.
PersonIdent(PersonIdent pi, Date when, TimeZone tz)
Copy a PersonIdent, but alter the clone's time stamp
PersonIdent(PersonIdent pi, long aWhen, int aTZ)
Copy a PersonIdent, but alter the clone's time stamp
PersonIdent(final String aName, final String aEmailAddress, long when)

Method

booleanequals(Object o)
StringgetEmailAddress()
Get email address of person
StringgetName()
Get name of person
TimeZonegetTimeZone()
Get this person's declared time zone
intgetTimeZoneOffset()
Get this person's declared time zone as minutes east of UTC.
DategetWhen()
Get timestamp
StringtoExternalString()
Format for Git storage.
StringtoString()