Uses of Class
com.helger.commons.version.VersionRange
Packages that use VersionRange
-
Uses of VersionRange in com.helger.commons.version
Methods in com.helger.commons.version that return VersionRangeModifier and TypeMethodDescriptionstatic VersionRangeConstruct 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 VersionRangeModifier and TypeMethodDescriptionintVersionRange.compareTo(VersionRange rhs) Compare this version range to another version range.