Class VersionRange

java.lang.Object
com.atlassian.plugin.internal.util.VersionRange

public abstract class VersionRange extends Object
Represents a version range. Version ranges can be built programmatically or parsed with the following definition:
Table of version ranges
Range Meaning
1.0 x >= 1.0
(,1.0] x <= 1.0
(,1.0) x < 1.0
[1.0] x == 1.0
[1.0,) x >= 1.0
(1.0,) x > 1.0
(1.0,2.0) 1.0 < x < 2.0
[1.0,2.0] 1.0 <= x <= 2.0
Since:
3.0