Uses of Class
com.helger.commons.version.Version
-
Packages that use Version Package Description com.helger.commons.thirdparty com.helger.commons.version -
-
Uses of Version in com.helger.commons.thirdparty
Methods in com.helger.commons.thirdparty that return Version Modifier and Type Method Description VersionCustomLicense. getVersion()VersionELicense. getVersion()VersionIThirdPartyModule. getVersion()VersionThirdPartyModule. getVersion()Constructors in com.helger.commons.thirdparty with parameters of type Version Constructor Description CustomLicense(String sID, String sName, Version aVersion, String sURL)Create a custom license.ThirdPartyModule(String sDisplayName, String sCopyrightOwner, ILicense aLicense, Version aVersion, String sWebsiteURL)ThirdPartyModule(String sDisplayName, String sCopyrightOwner, ILicense aLicense, Version aVersion, String sWebsiteURL, boolean bOptional) -
Uses of Version in com.helger.commons.version
Fields in com.helger.commons.version declared as Version Modifier and Type Field Description static VersionVersion. DEFAULT_VERSIONMethods in com.helger.commons.version that return Version Modifier and Type Method Description VersionVersionRange. getCeilVersion()VersionVersionRange. getFloorVersion()VersionIHasVersion. getVersion()VersionIHasVersionRange. getVersionRange()static VersionVersion. parse(String sVersionString)Construct a version object from a string.
EBNF:
version ::= major( '.' minor ( '.' micro ( ( '.' | '-' ) qualifier )?static VersionVersion. parseDotOnly(String sVersionString)Construct a version object from a string.
EBNF:
version ::= major( '.' minor ( '.' micro ( '.' qualifier )?Methods in com.helger.commons.version with parameters of type Version Modifier and Type Method Description intVersion. compareTo(Version rhs)Compares two Version objects.booleanVersionRange. versionMatches(Version rhs)Constructors in com.helger.commons.version with parameters of type Version Constructor Description VersionRange(Version aFloorVersion, boolean bIncludeFloorVersion, Version aCeilingVersion, boolean bIncludeCeilingVersion)Create a new version range depicted by two versions.VersionRange(Version aFloorVersion, Version aCeilingVersion)Create a new version range depicted by two versions, assuming that both the floor and the ceiling version should be included meaning we have an inclusive interval.
-