Uses of Interface
com.io7m.changelog.core.CVersionType
-
Packages that use CVersionType Package Description com.io7m.changelog.core Core types. -
-
Uses of CVersionType in com.io7m.changelog.core
Subinterfaces of CVersionType in com.io7m.changelog.core Modifier and Type Interface Description interfaceCVersionStandardTypeThe type of standard version numbers of the formM.N.P-S, whereMis the major version,Nis the minor version,Pis the patch number, andSis an arbitrary qualifier string.interfaceCVersionTextTypeThe type of arbitrary lexicographically ordered version strings.Classes in com.io7m.changelog.core that implement CVersionType Modifier and Type Class Description classCVersionStandardThe type of standard version numbers of the formM.N.P-S, whereMis the major version,Nis the minor version,Pis the patch number, andSis an arbitrary qualifier string.classCVersionTextThe type of arbitrary lexicographically ordered version strings.Methods in com.io7m.changelog.core that return CVersionType Modifier and Type Method Description static CVersionTypeCVersions. parse(String version)Attempt to parse a version number.CVersionTypeCRelease. version()CVersionTypeCReleaseType. version()Methods in com.io7m.changelog.core that return types with arguments of type CVersionType Modifier and Type Method Description io.vavr.collection.SortedMap<CVersionType,CRelease>CChangelog. releases()io.vavr.collection.SortedMap<CVersionType,CRelease>CChangelogType. releases()Methods in com.io7m.changelog.core with parameters of type CVersionType Modifier and Type Method Description default intCVersionStandardType. compareTo(CVersionType o)default intCVersionTextType. compareTo(CVersionType o)static CReleaseCRelease. of(ZonedDateTime date, io.vavr.collection.List<CChange> changes, String ticketSystemID, CVersionType version)Construct a new immutableCReleaseinstance.CChangelog.BuilderCChangelog.Builder. putReleases(CVersionType key, CRelease value)CRelease.BuilderCRelease.Builder. setVersion(CVersionType version)Initializes the value for theversionattribute.static Optional<CChangelog>CChangelogFilters. upToAndIncluding(CChangelog changelog, CVersionType version, int count)CReleaseCRelease. withVersion(CVersionType value)Copy the current immutable object by setting a value for theversionattribute.Method parameters in com.io7m.changelog.core with type arguments of type CVersionType Modifier and Type Method Description static CChangelogCChangelog. of(CProjectName project, io.vavr.collection.SortedMap<CVersionType,CRelease> releases, io.vavr.collection.Map<String,CTicketSystem> ticketSystems)Construct a new immutableCChangeloginstance.CChangelog.BuilderCChangelog.Builder. putEntryReleases(io.vavr.Tuple2<CVersionType,CRelease> entry)CChangelog.BuilderCChangelog.Builder. setEntriesReleases(Iterable<io.vavr.Tuple2<CVersionType,CRelease>> entries)CChangelog.BuilderCChangelog.Builder. setJavaMapReleases(Map<CVersionType,CRelease> in_map)CChangelog.BuilderCChangelog.Builder. setMapReleases(io.vavr.collection.Map<CVersionType,CRelease> in_map)CChangelog.BuilderCChangelog.Builder. setReleases(io.vavr.collection.SortedMap<CVersionType,CRelease> elements)CChangelogCChangelog. withReleases(io.vavr.collection.SortedMap<CVersionType,CRelease> value)
-