Class Semver
- java.lang.Object
-
- org.datadog.jenkins.plugins.datadog.apm.Semver
-
public class Semver extends Object
-
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description int
compareTo(Semver other)
boolean
equals(Object obj)
int
getMajor()
int
getMinor()
int
getPatch()
String
getPreRelease()
int
hashCode()
static Semver
parse(String version)
String
toString()
-
-
-
Constructor Detail
-
Semver
public Semver(int major, int minor, int patch)
-
Semver
public Semver(int major, int minor, int patch, String preRelease)
-
-