Uses of Interface
org.eclipse.aether.version.Version
-
Packages that use Version 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 Version in org.eclipse.aether.collection
Methods in org.eclipse.aether.collection that return types with arguments of type Version Modifier and Type Method Description java.util.Iterator<Version>
VersionFilter.VersionFilterContext. iterator()
Gets an iterator over the available versions of the dependency.Methods in org.eclipse.aether.collection with parameters of type Version Modifier and Type Method Description ArtifactRepository
VersionFilter.VersionFilterContext. getRepository(Version version)
Gets the repository from which the specified version was resolved. -
Uses of Version in org.eclipse.aether.graph
Fields in org.eclipse.aether.graph declared as Version Modifier and Type Field Description private Version
DefaultDependencyNode. version
Methods in org.eclipse.aether.graph that return Version Modifier and Type Method Description Version
DefaultDependencyNode. getVersion()
Version
DependencyNode. getVersion()
Gets the version that was selected for the dependency's target artifact.Methods in org.eclipse.aether.graph with parameters of type Version Modifier and Type Method Description void
DefaultDependencyNode. setVersion(Version version)
Sets the version that was selected for the dependency's target artifact. -
Uses of Version in org.eclipse.aether.internal.impl.collect
Fields in org.eclipse.aether.internal.impl.collect declared as Version Modifier and Type Field Description (package private) Version
DataPool.Constraint.VersionRepo. version
Fields in org.eclipse.aether.internal.impl.collect with type parameters of type Version Modifier and Type Field Description private java.util.List<Version>
DefaultVersionFilterContext.VersionIterator. versions
Methods in org.eclipse.aether.internal.impl.collect that return Version Modifier and Type Method Description Version
DefaultVersionFilterContext.VersionIterator. next()
Methods in org.eclipse.aether.internal.impl.collect that return types with arguments of type Version Modifier and Type Method Description private static java.util.List<? extends Version>
DefaultDependencyCollector. filterVersions(Dependency dependency, VersionRangeResult rangeResult, VersionFilter verFilter, DefaultVersionFilterContext verContext)
java.util.List<Version>
DefaultVersionFilterContext. get()
java.util.Iterator<Version>
DefaultVersionFilterContext. iterator()
Methods in org.eclipse.aether.internal.impl.collect with parameters of type Version 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)
ArtifactRepository
DefaultVersionFilterContext. getRepository(Version version)
Constructors in org.eclipse.aether.internal.impl.collect with parameters of type Version Constructor Description VersionRepo(Version version, ArtifactRepository repo)
-
Uses of Version in org.eclipse.aether.internal.test.util
Classes in org.eclipse.aether.internal.test.util that implement Version Modifier and Type Class Description (package private) class
TestVersion
Version ordering byString.compareToIgnoreCase(String)
.Fields in org.eclipse.aether.internal.test.util declared as Version Modifier and Type Field Description private Version
TestVersionRange. lowerBound
private Version
TestVersionRange. upperBound
private Version
TestVersionConstraint. version
Fields in org.eclipse.aether.internal.test.util with type parameters of type Version Modifier and Type Field Description private java.util.List<Version>
TestVersionFilterContext. versions
Methods in org.eclipse.aether.internal.test.util that return Version Modifier and Type Method Description Version
TestVersionConstraint. getVersion()
Version
TestVersionScheme. parseVersion(java.lang.String version)
Methods in org.eclipse.aether.internal.test.util that return types with arguments of type Version Modifier and Type Method Description java.util.Iterator<Version>
TestVersionFilterContext. iterator()
Methods in org.eclipse.aether.internal.test.util with parameters of type Version Modifier and Type Method Description int
TestVersion. compareTo(Version o)
boolean
TestVersionConstraint. containsVersion(Version version)
boolean
TestVersionRange. containsVersion(Version version)
ArtifactRepository
TestVersionFilterContext. getRepository(Version version)
private boolean
TestVersionRange. isSnapshot(Version version)
Constructors in org.eclipse.aether.internal.test.util with parameters of type Version Constructor Description TestVersionConstraint(Version version)
Creates a version constraint from the specified version. -
Uses of Version in org.eclipse.aether.resolution
Fields in org.eclipse.aether.resolution with type parameters of type Version Modifier and Type Field Description private java.util.Map<Version,ArtifactRepository>
VersionRangeResult. repositories
private java.util.List<Version>
VersionRangeResult. versions
Methods in org.eclipse.aether.resolution that return Version Modifier and Type Method Description Version
VersionRangeResult. getHighestVersion()
Gets the highest version matching the requested range.Version
VersionRangeResult. getLowestVersion()
Gets the lowest version matching the requested range.Methods in org.eclipse.aether.resolution that return types with arguments of type Version Modifier and Type Method Description java.util.List<Version>
VersionRangeResult. getVersions()
Gets the versions (in ascending order) that matched the requested range.Methods in org.eclipse.aether.resolution with parameters of type Version Modifier and Type Method Description VersionRangeResult
VersionRangeResult. addVersion(Version version)
Adds the specified version to the result.ArtifactRepository
VersionRangeResult. getRepository(Version version)
Gets the repository from which the specified version was resolved.VersionRangeResult
VersionRangeResult. setRepository(Version version, ArtifactRepository repository)
Records the repository from which the specified version was resolvedMethod parameters in org.eclipse.aether.resolution with type arguments of type Version Modifier and Type Method Description VersionRangeResult
VersionRangeResult. setVersions(java.util.List<Version> versions)
Sets the versions (in ascending order) matching the requested range. -
Uses of Version in org.eclipse.aether.util.graph.transformer
Methods in org.eclipse.aether.util.graph.transformer with parameters of type Version Modifier and Type Method Description private boolean
NearestVersionSelector. isAcceptable(NearestVersionSelector.ConflictGroup group, Version version)
-
Uses of Version in org.eclipse.aether.util.version
Classes in org.eclipse.aether.util.version that implement Version Modifier and Type Class Description (package private) class
GenericVersion
A generic version, that is a version that accepts any input string and tries to apply common sense sorting.Fields in org.eclipse.aether.util.version declared as Version Modifier and Type Field Description private Version
GenericVersionConstraint. version
Methods in org.eclipse.aether.util.version that return Version Modifier and Type Method Description Version
GenericVersionConstraint. getVersion()
private Version
GenericVersionRange. parse(java.lang.String version)
Version
GenericVersionScheme. parseVersion(java.lang.String version)
Methods in org.eclipse.aether.util.version with parameters of type Version Modifier and Type Method Description int
GenericVersion. compareTo(Version obj)
boolean
GenericVersionConstraint. containsVersion(Version version)
boolean
GenericVersionRange. containsVersion(Version version)
boolean
UnionVersionRange. containsVersion(Version version)
Constructors in org.eclipse.aether.util.version with parameters of type Version Constructor Description GenericVersionConstraint(Version version)
Creates a version constraint from the specified version. -
Uses of Version in org.eclipse.aether.version
Fields in org.eclipse.aether.version declared as Version Modifier and Type Field Description private Version
VersionRange.Bound. version
Methods in org.eclipse.aether.version that return Version Modifier and Type Method Description Version
VersionConstraint. getVersion()
Gets the version recommended by this constraint.Version
VersionRange.Bound. getVersion()
Gets the bounding version.Version
VersionScheme. parseVersion(java.lang.String version)
Parses the specified version string, for example "1.0".Methods in org.eclipse.aether.version with parameters of type Version Modifier and Type Method Description boolean
VersionConstraint. containsVersion(Version version)
Determines whether the specified version satisfies this constraint.boolean
VersionRange. containsVersion(Version version)
Determines whether the specified version is contained within this range.Constructors in org.eclipse.aether.version with parameters of type Version Constructor Description Bound(Version version, boolean inclusive)
Creates a new bound with the specified properties.
-