Uses of Class
com.github.zafarkhaja.semver.MetadataVersion
-
Packages that use MetadataVersion Package Description com.github.zafarkhaja.semver This is the root package of the Java SemVer library. -
-
Uses of MetadataVersion in com.github.zafarkhaja.semver
Subclasses of MetadataVersion in com.github.zafarkhaja.semver Modifier and Type Class Description private static class
MetadataVersion.NullMetadataVersion
The implementation of the Null Object design pattern.Fields in com.github.zafarkhaja.semver declared as MetadataVersion Modifier and Type Field Description private MetadataVersion
Version. build
The build metadata.(package private) static MetadataVersion
MetadataVersion. NULL
Null metadata, the implementation of the Null Object design pattern.private MetadataVersion
Version. preRelease
The pre-release version.Methods in com.github.zafarkhaja.semver that return MetadataVersion Modifier and Type Method Description (package private) MetadataVersion
MetadataVersion. increment()
Increments the metadata version.(package private) MetadataVersion
MetadataVersion.NullMetadataVersion. increment()
private MetadataVersion
VersionParser. parseBuild()
Parses the <build> non-terminal.(package private) static MetadataVersion
VersionParser. parseBuild(java.lang.String build)
Parses the build metadata.private MetadataVersion
VersionParser. parsePreRelease()
Parses the <pre-release> non-terminal.(package private) static MetadataVersion
VersionParser. parsePreRelease(java.lang.String preRelease)
Parses the pre-release version.Methods in com.github.zafarkhaja.semver with parameters of type MetadataVersion Modifier and Type Method Description int
MetadataVersion. compareTo(MetadataVersion other)
int
MetadataVersion.NullMetadataVersion. compareTo(MetadataVersion other)
Constructors in com.github.zafarkhaja.semver with parameters of type MetadataVersion Constructor Description Version(NormalVersion normal, MetadataVersion preRelease)
Constructs aVersion
instance with the normal version and the pre-release version.Version(NormalVersion normal, MetadataVersion preRelease, MetadataVersion build)
Constructs aVersion
instance with the normal version, the pre-release version and the build metadata.
-