Package jenkins.plugins.nodejs.tools
Class NodeJSVersionRange
java.lang.Object
jenkins.plugins.nodejs.tools.NodeJSVersionRange
Version range. A version range is an interval describing a set of
versions.
A range has a left (lower) endpoint and a right (upper) endpoint. Each endpoint can be open (excluded from the set) or closed (included in the set).
NodeJSVersionRange objects are immutable.
-
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final charThe left endpoint is closed and is included in the range.static final charThe left endpoint is open and is excluded from the range.static final charThe right endpoint is closed and is included in the range.static final charThe right endpoint is open and is excluded from the range. -
Constructor Summary
ConstructorsConstructorDescriptionNodeJSVersionRange(String range) Creates a version range from the specified string. -
Method Summary
Modifier and TypeMethodDescriptionbooleanCompares thisVersionRangeobject to another object.getLeft()Returns the left endpoint of this version range.charReturns the type of the left endpoint of this version range.getRight()Returns the right endpoint of this version range.charReturns the type of the right endpoint of this version range.inthashCode()Returns a hash code value for the object.booleanincludes(NodeJSVersion version) Returns whether this version range includes the specified version.booleanisEmpty()Returns whether this version range is empty.toString()Returns the string representation of this version range.
-
Field Details
-
LEFT_OPEN
public static final char LEFT_OPENThe left endpoint is open and is excluded from the range.The value of
LEFT_OPENis'('.- See Also:
-
LEFT_CLOSED
public static final char LEFT_CLOSEDThe left endpoint is closed and is included in the range.The value of
LEFT_CLOSEDis'['.- See Also:
-
RIGHT_OPEN
public static final char RIGHT_OPENThe right endpoint is open and is excluded from the range.The value of
RIGHT_OPENis')'.- See Also:
-
RIGHT_CLOSED
public static final char RIGHT_CLOSEDThe right endpoint is closed and is included in the range.The value of
RIGHT_CLOSEDis']'.- See Also:
-
-
Constructor Details
-
NodeJSVersionRange
Creates a version range from the specified string.Version range string grammar:
range ::= interval | atleast interval ::= ( '[' | '(' ) left ',' right ( ']' | ')' ) left ::= version right ::= version atleast ::= version- Parameters:
range- String representation of the version range. The versions in the range must contain no whitespace. Other whitespace in the range string is ignored.- Throws:
IllegalArgumentException- Ifrangeis improperly formatted.
-
-
Method Details
-
getLeft
Returns the left endpoint of this version range.- Returns:
- The left endpoint.
-
getRight
Returns the right endpoint of this version range.- Returns:
- The right endpoint. May be
nullwhich indicates the right endpoint is Infinity.
-
getLeftType
public char getLeftType()Returns the type of the left endpoint of this version range.- Returns:
LEFT_CLOSEDif the left endpoint is closed orLEFT_OPENif the left endpoint is open.
-
getRightType
public char getRightType()Returns the type of the right endpoint of this version range.- Returns:
RIGHT_CLOSEDif the right endpoint is closed orRIGHT_OPENif the right endpoint is open.
-
includes
Returns whether this version range includes the specified version.- Parameters:
version- The version to test for inclusion in this version range.- Returns:
trueif the specified version is included in this version range;falseotherwise.
-
isEmpty
public boolean isEmpty()Returns whether this version range is empty. A version range is empty if the set of versions defined by the interval is empty.- Returns:
trueif this version range is empty;falseotherwise.
-
toString
Returns the string representation of this version range.The format of the version range string will be a version string if the right end point is Infinity (
null) or an interval string. -
hashCode
public int hashCode()Returns a hash code value for the object. -
equals
Compares thisVersionRangeobject to another object.A version range is considered to be equal to another version range if both the endpoints and their types are equal or if both version ranges are
empty.
-