Uses of Interface
org.eclipse.aether.version.VersionConstraint
-
Packages that use VersionConstraint Package Description org.eclipse.aether.collection The types and extension points for collecting the transitive dependencies of an artifact and building a dependency graph.org.eclipse.aether.graph The representation of a dependency graph by means of connected dependency nodes.org.eclipse.aether.internal.impl.collect Internal helper classes for dependency collector.org.eclipse.aether.internal.test.util Utility classes to ease unit testing.org.eclipse.aether.resolution The types supporting the resolution of artifacts and metadata from repositories.org.eclipse.aether.util.graph.transformer Various dependency graph transformers for post-processing a dependency graph.org.eclipse.aether.util.version Ready-to-use version schemes for parsing/comparing versions.org.eclipse.aether.version The definition of a version scheme for parsing and comparing versions. -
-
Uses of VersionConstraint in org.eclipse.aether.collection
Methods in org.eclipse.aether.collection that return VersionConstraint Modifier and Type Method Description VersionConstraint
VersionFilter.VersionFilterContext. getVersionConstraint()
Gets the version constraint that was parsed from the dependency's version string. -
Uses of VersionConstraint in org.eclipse.aether.graph
Fields in org.eclipse.aether.graph declared as VersionConstraint Modifier and Type Field Description private VersionConstraint
DefaultDependencyNode. versionConstraint
Methods in org.eclipse.aether.graph that return VersionConstraint Modifier and Type Method Description VersionConstraint
DefaultDependencyNode. getVersionConstraint()
VersionConstraint
DependencyNode. getVersionConstraint()
Gets the version constraint that was parsed from the dependency's version declaration.Methods in org.eclipse.aether.graph with parameters of type VersionConstraint Modifier and Type Method Description void
DefaultDependencyNode. setVersionConstraint(VersionConstraint versionConstraint)
Sets the version constraint that was parsed from the dependency's version declaration. -
Uses of VersionConstraint in org.eclipse.aether.internal.impl.collect
Fields in org.eclipse.aether.internal.impl.collect declared as VersionConstraint Modifier and Type Field Description (package private) VersionConstraint
DataPool.Constraint. versionConstraint
Methods in org.eclipse.aether.internal.impl.collect that return VersionConstraint Modifier and Type Method Description VersionConstraint
DefaultVersionFilterContext. getVersionConstraint()
-
Uses of VersionConstraint in org.eclipse.aether.internal.test.util
Classes in org.eclipse.aether.internal.test.util that implement VersionConstraint Modifier and Type Class Description (package private) class
TestVersionConstraint
A constraint on versions for a dependency.Methods in org.eclipse.aether.internal.test.util that return VersionConstraint Modifier and Type Method Description VersionConstraint
TestVersionFilterContext. getVersionConstraint()
VersionConstraint
TestVersionScheme. parseVersionConstraint(java.lang.String constraint)
-
Uses of VersionConstraint in org.eclipse.aether.resolution
Fields in org.eclipse.aether.resolution declared as VersionConstraint Modifier and Type Field Description private VersionConstraint
VersionRangeResult. versionConstraint
Methods in org.eclipse.aether.resolution that return VersionConstraint Modifier and Type Method Description VersionConstraint
VersionRangeResult. getVersionConstraint()
Gets the version constraint that was parsed from the artifact's version string.Methods in org.eclipse.aether.resolution with parameters of type VersionConstraint Modifier and Type Method Description VersionRangeResult
VersionRangeResult. setVersionConstraint(VersionConstraint versionConstraint)
Sets the version constraint that was parsed from the artifact's version string. -
Uses of VersionConstraint in org.eclipse.aether.util.graph.transformer
Fields in org.eclipse.aether.util.graph.transformer with type parameters of type VersionConstraint Modifier and Type Field Description (package private) java.util.Collection<VersionConstraint>
NearestVersionSelector.ConflictGroup. constraints
-
Uses of VersionConstraint in org.eclipse.aether.util.version
Classes in org.eclipse.aether.util.version that implement VersionConstraint Modifier and Type Class Description (package private) class
GenericVersionConstraint
A constraint on versions for a dependency.Methods in org.eclipse.aether.util.version that return VersionConstraint Modifier and Type Method Description VersionConstraint
GenericVersionScheme. parseVersionConstraint(java.lang.String constraint)
-
Uses of VersionConstraint in org.eclipse.aether.version
Methods in org.eclipse.aether.version that return VersionConstraint Modifier and Type Method Description VersionConstraint
VersionScheme. parseVersionConstraint(java.lang.String constraint)
Parses the specified version constraint specification, for example "1.0" or "[1.0,2.0),(2.0,)".
-