Uses of Class
com.helger.base.version.VersionRange

Packages that use VersionRange
Package
Description
 
  • Uses of VersionRange in com.helger.base.version

    Methods in com.helger.base.version that return VersionRange
    Modifier and Type
    Method
    Description
    static @NonNull VersionRange
    VersionRange.parse(@Nullable 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 <= 4
    Methods in com.helger.base.version with parameters of type VersionRange
    Modifier and Type
    Method
    Description
    int
    VersionRange.compareTo(@NonNull VersionRange rhs)
    Compare this version range to another version range.