Interface VersionRangeResult


public interface VersionRangeResult
The result of a bundle descriptor version range resolution request.
Since:
1.1
  • Method Summary

    Modifier and Type
    Method
    Description
    Gets the highest version matching the requested range.
    Gets the lowest version matching the requested range.
    Gets the versions (in ascending order) that matched the requested range.
  • Method Details

    • getVersions

      List<String> getVersions()
      Gets the versions (in ascending order) that matched the requested range.
      Returns:
      The matching versions (if any), never null.
    • getLowestVersion

      String getLowestVersion()
      Gets the lowest version matching the requested range.
      Returns:
      The lowest matching version or null if no versions matched the requested range.
    • getHighestVersion

      String getHighestVersion()
      Gets the highest version matching the requested range.
      Returns:
      The highest matching version or null if no versions matched the requested range.