|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectcom.aragost.javahg.HgVersion
public class HgVersion
Representing a Mercurial version.
The version has the format [major].[minor]{.[release]}{-rc}{+[suffix]} where parts enclosed in {...} is optional. The major, minor, and release part can at most be 2 digits, the suffix part can be any string.
Method Summary | |
---|---|
int |
compareTo(HgVersion that)
Compare this to the other version. |
static HgVersion |
fromString(String versionString)
Factory method to create a HgVersion from a version string from Mercurial |
int |
getMajor()
|
int |
getMinor()
|
Integer |
getRelease()
|
String |
getSuffix()
|
String |
getVersionString()
|
boolean |
isBefore(HgVersion ver)
|
boolean |
isReleaseCandidate()
|
boolean |
isUnknown()
|
String |
toString()
|
static HgVersion |
unknown()
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Method Detail |
---|
public static HgVersion fromString(String versionString)
Examples of valid input:
versionString
-
public static HgVersion unknown()
public String getVersionString()
public int getMajor()
public int getMinor()
public Integer getRelease()
public boolean isReleaseCandidate()
public String getSuffix()
public boolean isUnknown()
public int compareTo(HgVersion that)
All parts of the version is used except the suffix part.
compareTo
in interface Comparable<HgVersion>
public boolean isBefore(HgVersion ver)
ver
-
public String toString()
toString
in class Object
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |