public class SemVer extends Object implements Comparable<SemVer>
| Modifier and Type | Field and Description |
|---|---|
String |
build |
int |
major |
int |
minor |
int |
patch |
String |
preRelease |
| Constructor and Description |
|---|
SemVer(int major,
int minor,
int patch,
String preRelease,
String build) |
| Modifier and Type | Method and Description |
|---|---|
int |
compareTo(SemVer other) |
static SemVer |
parse(String v) |
Copyright © 2024. All rights reserved.