Package org.mule.maven.client.api
Interface VersionRangeResult
public interface VersionRangeResult
The result of a bundle descriptor version range resolution request.
- Since:
- 1.1
-
Method Summary
Modifier and TypeMethodDescriptionGets 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
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
nullif no versions matched the requested range.
-
getHighestVersion
String getHighestVersion()Gets the highest version matching the requested range.- Returns:
- The highest matching version or
nullif no versions matched the requested range.
-