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 classMetadataVersion.NullMetadataVersionThe implementation of the Null Object design pattern.Fields in com.github.zafarkhaja.semver declared as MetadataVersion Modifier and Type Field Description private MetadataVersionVersion. buildThe build metadata.(package private) static MetadataVersionMetadataVersion. NULLNull metadata, the implementation of the Null Object design pattern.private MetadataVersionVersion. preReleaseThe pre-release version.Methods in com.github.zafarkhaja.semver that return MetadataVersion Modifier and Type Method Description (package private) MetadataVersionMetadataVersion. increment()Increments the metadata version.(package private) MetadataVersionMetadataVersion.NullMetadataVersion. increment()private MetadataVersionVersionParser. parseBuild()Parses the <build> non-terminal.(package private) static MetadataVersionVersionParser. parseBuild(java.lang.String build)Parses the build metadata.private MetadataVersionVersionParser. parsePreRelease()Parses the <pre-release> non-terminal.(package private) static MetadataVersionVersionParser. 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 intMetadataVersion. compareTo(MetadataVersion other)intMetadataVersion.NullMetadataVersion. compareTo(MetadataVersion other)Constructors in com.github.zafarkhaja.semver with parameters of type MetadataVersion Constructor Description Version(NormalVersion normal, MetadataVersion preRelease)Constructs aVersioninstance with the normal version and the pre-release version.Version(NormalVersion normal, MetadataVersion preRelease, MetadataVersion build)Constructs aVersioninstance with the normal version, the pre-release version and the build metadata.
-