Uses of Class
org.eclipse.aether.resolution.VersionRangeResult
-
Packages that use VersionRangeResult Package Description org.eclipse.aether The primary API of theRepositorySystem
and its functionality.org.eclipse.aether.impl The provisional interfaces defining the various sub components that implement the repository system.org.eclipse.aether.internal.impl The various sub components that collectively implement the repository system.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. -
-
Uses of VersionRangeResult in org.eclipse.aether
Methods in org.eclipse.aether that return VersionRangeResult Modifier and Type Method Description VersionRangeResult
RepositorySystem. resolveVersionRange(RepositorySystemSession session, VersionRangeRequest request)
Expands a version range to a list of matching versions, in ascending order. -
Uses of VersionRangeResult in org.eclipse.aether.impl
Methods in org.eclipse.aether.impl that return VersionRangeResult Modifier and Type Method Description VersionRangeResult
VersionRangeResolver. resolveVersionRange(RepositorySystemSession session, VersionRangeRequest request)
Expands a version range to a list of matching versions, in ascending order. -
Uses of VersionRangeResult in org.eclipse.aether.internal.impl
Methods in org.eclipse.aether.internal.impl that return VersionRangeResult Modifier and Type Method Description VersionRangeResult
DefaultRepositorySystem. resolveVersionRange(RepositorySystemSession session, VersionRangeRequest request)
-
Uses of VersionRangeResult in org.eclipse.aether.internal.impl.collect
Fields in org.eclipse.aether.internal.impl.collect declared as VersionRangeResult Modifier and Type Field Description (package private) VersionRangeResult
DefaultVersionFilterContext. result
Methods in org.eclipse.aether.internal.impl.collect that return VersionRangeResult Modifier and Type Method Description private VersionRangeResult
DefaultDependencyCollector. cachedResolveRangeResult(VersionRangeRequest rangeRequest, DataPool pool, RepositorySystemSession session)
(package private) VersionRangeResult
DataPool. getConstraint(java.lang.Object key, VersionRangeRequest request)
(package private) VersionRangeResult
DataPool.Constraint. toResult(VersionRangeRequest request)
Methods in org.eclipse.aether.internal.impl.collect with parameters of type VersionRangeResult Modifier and Type Method Description private static DefaultDependencyNode
DefaultDependencyCollector. createDependencyNode(java.util.List<Artifact> relocations, DefaultDependencyCollector.PremanagedDependency preManaged, VersionRangeResult rangeResult, Version version, Dependency d, java.util.Collection<Artifact> aliases, java.util.List<RemoteRepository> repos, java.lang.String requestContext)
private static DefaultDependencyNode
DefaultDependencyCollector. createDependencyNode(java.util.List<Artifact> relocations, DefaultDependencyCollector.PremanagedDependency preManaged, VersionRangeResult rangeResult, Version version, Dependency d, ArtifactDescriptorResult descriptorResult, DependencyNode cycleNode)
private static java.util.List<? extends Version>
DefaultDependencyCollector. filterVersions(Dependency dependency, VersionRangeResult rangeResult, VersionFilter verFilter, DefaultVersionFilterContext verContext)
(package private) void
DataPool. putConstraint(java.lang.Object key, VersionRangeResult result)
void
DefaultVersionFilterContext. set(Dependency dependency, VersionRangeResult result)
Constructors in org.eclipse.aether.internal.impl.collect with parameters of type VersionRangeResult Constructor Description Constraint(VersionRangeResult result)
-
Uses of VersionRangeResult in org.eclipse.aether.internal.test.util
Fields in org.eclipse.aether.internal.test.util declared as VersionRangeResult Modifier and Type Field Description private VersionRangeResult
TestVersionFilterContext. result
Methods in org.eclipse.aether.internal.test.util with parameters of type VersionRangeResult Modifier and Type Method Description static VersionFilter.VersionFilterContext
TestUtils. newVersionFilterContext(RepositorySystemSession session, VersionRangeResult rangeResult)
Creates a new version filter context from the specified session and version range result.Constructors in org.eclipse.aether.internal.test.util with parameters of type VersionRangeResult Constructor Description TestVersionFilterContext(RepositorySystemSession session, VersionRangeResult result)
-
Uses of VersionRangeResult in org.eclipse.aether.resolution
Fields in org.eclipse.aether.resolution declared as VersionRangeResult Modifier and Type Field Description private VersionRangeResult
VersionRangeResolutionException. result
Methods in org.eclipse.aether.resolution that return VersionRangeResult Modifier and Type Method Description VersionRangeResult
VersionRangeResult. addException(java.lang.Exception exception)
Records the specified exception while resolving the version range.VersionRangeResult
VersionRangeResult. addVersion(Version version)
Adds the specified version to the result.VersionRangeResult
VersionRangeResolutionException. getResult()
Gets the version range result at the point the exception occurred.VersionRangeResult
VersionRangeResult. setRepository(Version version, ArtifactRepository repository)
Records the repository from which the specified version was resolvedVersionRangeResult
VersionRangeResult. setVersionConstraint(VersionConstraint versionConstraint)
Sets the version constraint that was parsed from the artifact's version string.VersionRangeResult
VersionRangeResult. setVersions(java.util.List<Version> versions)
Sets the versions (in ascending order) matching the requested range.Methods in org.eclipse.aether.resolution with parameters of type VersionRangeResult Modifier and Type Method Description private static java.lang.Throwable
VersionRangeResolutionException. getCause(VersionRangeResult result)
private static java.lang.String
VersionRangeResolutionException. getMessage(VersionRangeResult result)
Constructors in org.eclipse.aether.resolution with parameters of type VersionRangeResult Constructor Description VersionRangeResolutionException(VersionRangeResult result)
Creates a new exception with the specified result.VersionRangeResolutionException(VersionRangeResult result, java.lang.String message)
Creates a new exception with the specified result and detail message.VersionRangeResolutionException(VersionRangeResult result, java.lang.String message, java.lang.Throwable cause)
Creates a new exception with the specified result, detail message and cause.
-