Uses of Class
com.helger.commons.version.VersionRange
-
Packages that use VersionRange Package Description com.helger.commons.version -
-
Uses of VersionRange in com.helger.commons.version
Methods in com.helger.commons.version that return VersionRange Modifier and Type Method Description static VersionRangeVersionRange. parse(String sVersionString)Construct a version range object from a string.
Examples:
[1.2.3, 4.5.6) -- 1.2.3 <= x < 4.5.6 [1.2.3, 4.5.6] -- 1.2.3 <= x <= 4.5.6 (1.2.3, 4.5.6) -- 1.2.3 < x < 4.5.6 (1.2.3, 4.5.6] -- 1.2.3 < x <= 4.5.6 1.2.3 -- 1.2.3 <= x [1.2.3 -- 1.2.3 <= x (1.2.3 -- 1.2.3 < x null -- 0.0.0 <= x 1, 4 -- 1 <= x <= 4Methods in com.helger.commons.version with parameters of type VersionRange Modifier and Type Method Description intVersionRange. compareTo(VersionRange rhs)Compare this version range to another version range.
-