Class Restriction
- java.lang.Object
-
- org.apache.maven.artifact.versioning.Restriction
-
public class Restriction extends Object
Describes a restriction in versioning.- Version:
- $Id: Restriction.java 640549 2008-03-24 20:05:11Z bentmann $
- Author:
- Brett Porter
-
-
Constructor Summary
Constructors Constructor Description Restriction(ArtifactVersion lowerBound, boolean lowerBoundInclusive, ArtifactVersion upperBound, boolean upperBoundInclusive)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleancontainsVersion(ArtifactVersion version)booleanequals(Object other)ArtifactVersiongetLowerBound()ArtifactVersiongetUpperBound()inthashCode()booleanisLowerBoundInclusive()booleanisUpperBoundInclusive()StringtoString()
-
-
-
Constructor Detail
-
Restriction
public Restriction(ArtifactVersion lowerBound, boolean lowerBoundInclusive, ArtifactVersion upperBound, boolean upperBoundInclusive)
-
-
Method Detail
-
getLowerBound
public ArtifactVersion getLowerBound()
-
isLowerBoundInclusive
public boolean isLowerBoundInclusive()
-
getUpperBound
public ArtifactVersion getUpperBound()
-
isUpperBoundInclusive
public boolean isUpperBoundInclusive()
-
containsVersion
public boolean containsVersion(ArtifactVersion version)
-
-