Uses of Class
org.codehaus.mojo.versions.api.UpdateScope

Packages that use UpdateScope
org.codehaus.mojo.versions.api   
 

Uses of UpdateScope in org.codehaus.mojo.versions.api
 

Fields in org.codehaus.mojo.versions.api declared as UpdateScope
static UpdateScope UpdateScope.ANY
          Any version updates.
static UpdateScope UpdateScope.INCREMENTAL
          Incremental version updates, that is the third segment of the version number, for example 1.0.0.15 to 1.0.1.0.
static UpdateScope UpdateScope.MAJOR
          Major version updates, that is the first segment of the version number, for example 1.0.0.15 to 2.0.0.0.
static UpdateScope UpdateScope.MINOR
          Minor version updates, that is the second segment of the version number, for example 1.0.0.15 to 1.1.0.0.
static UpdateScope UpdateScope.SUBINCREMENTAL
          Versions which are less than an incremental update.
 

Methods in org.codehaus.mojo.versions.api that return UpdateScope
static UpdateScope UpdateScope.classifyUpdate(VersionComparator comparator, org.apache.maven.artifact.versioning.ArtifactVersion from, org.apache.maven.artifact.versioning.ArtifactVersion to)
          Classifies the type of update.
static UpdateScope UpdateScope.valueOf(String name)
          Returns the enum constant of the specified enum type with the specified name.
static UpdateScope[] UpdateScope.values()
           
 

Methods in org.codehaus.mojo.versions.api with parameters of type UpdateScope
 org.apache.maven.artifact.versioning.ArtifactVersion[] AbstractVersionDetails.getAllUpdates(org.apache.maven.artifact.versioning.ArtifactVersion currentVersion, UpdateScope updateScope)
           
 org.apache.maven.artifact.versioning.ArtifactVersion[] VersionDetails.getAllUpdates(org.apache.maven.artifact.versioning.ArtifactVersion currentVersion, UpdateScope updateScope)
          Returns the all versions newer than the specified current version, but within the the specified update scope.
 org.apache.maven.artifact.versioning.ArtifactVersion[] AbstractVersionDetails.getAllUpdates(org.apache.maven.artifact.versioning.ArtifactVersion currentVersion, UpdateScope updateScope, boolean includeSnapshots)
           
 org.apache.maven.artifact.versioning.ArtifactVersion[] VersionDetails.getAllUpdates(org.apache.maven.artifact.versioning.ArtifactVersion currentVersion, UpdateScope updateScope, boolean includeSnapshots)
          Returns the all versions newer than the specified current version, but within the the specified update scope.
 org.apache.maven.artifact.versioning.ArtifactVersion[] AbstractVersionDetails.getAllUpdates(UpdateScope updateScope)
           
 org.apache.maven.artifact.versioning.ArtifactVersion[] VersionDetails.getAllUpdates(UpdateScope updateScope)
          Returns the all versions newer than the specified current version, but within the the specified update scope.
 org.apache.maven.artifact.versioning.ArtifactVersion[] AbstractVersionDetails.getAllUpdates(UpdateScope updateScope, boolean includeSnapshots)
           
 org.apache.maven.artifact.versioning.ArtifactVersion[] VersionDetails.getAllUpdates(UpdateScope updateScope, boolean includeSnapshots)
          Returns the all versions newer than the specified current version, but within the the specified update scope.
 org.apache.maven.artifact.versioning.ArtifactVersion AbstractVersionDetails.getNewestUpdate(org.apache.maven.artifact.versioning.ArtifactVersion currentVersion, UpdateScope updateScope)
           
 org.apache.maven.artifact.versioning.ArtifactVersion VersionDetails.getNewestUpdate(org.apache.maven.artifact.versioning.ArtifactVersion currentVersion, UpdateScope updateScope)
          Returns the newest version newer than the specified current version, but within the the specified update scope or null if no such version exists.
 org.apache.maven.artifact.versioning.ArtifactVersion AbstractVersionDetails.getNewestUpdate(org.apache.maven.artifact.versioning.ArtifactVersion currentVersion, UpdateScope updateScope, boolean includeSnapshots)
           
 org.apache.maven.artifact.versioning.ArtifactVersion VersionDetails.getNewestUpdate(org.apache.maven.artifact.versioning.ArtifactVersion currentVersion, UpdateScope updateScope, boolean includeSnapshots)
          Returns the newest version newer than the specified current version, but within the the specified update scope or null if no such version exists.
 org.apache.maven.artifact.versioning.ArtifactVersion AbstractVersionDetails.getNewestUpdate(UpdateScope updateScope)
           
 org.apache.maven.artifact.versioning.ArtifactVersion VersionDetails.getNewestUpdate(UpdateScope updateScope)
          Returns the newest version newer than the specified current version, but within the the specified update scope or null if no such version exists.
 org.apache.maven.artifact.versioning.ArtifactVersion AbstractVersionDetails.getNewestUpdate(UpdateScope updateScope, boolean includeSnapshots)
           
 org.apache.maven.artifact.versioning.ArtifactVersion VersionDetails.getNewestUpdate(UpdateScope updateScope, boolean includeSnapshots)
          Returns the newest version newer than the specified current version, but within the the specified update scope or null if no such version exists.
 org.apache.maven.artifact.versioning.ArtifactVersion AbstractVersionDetails.getOldestUpdate(org.apache.maven.artifact.versioning.ArtifactVersion currentVersion, UpdateScope updateScope)
           
 org.apache.maven.artifact.versioning.ArtifactVersion VersionDetails.getOldestUpdate(org.apache.maven.artifact.versioning.ArtifactVersion currentVersion, UpdateScope updateScope)
          Returns the oldest version newer than the specified current version, but within the the specified update scope or null if no such version exists.
 org.apache.maven.artifact.versioning.ArtifactVersion AbstractVersionDetails.getOldestUpdate(org.apache.maven.artifact.versioning.ArtifactVersion currentVersion, UpdateScope updateScope, boolean includeSnapshots)
           
 org.apache.maven.artifact.versioning.ArtifactVersion VersionDetails.getOldestUpdate(org.apache.maven.artifact.versioning.ArtifactVersion currentVersion, UpdateScope updateScope, boolean includeSnapshots)
          Returns the oldest version newer than the specified current version, but within the the specified update scope or null if no such version exists.
 org.apache.maven.artifact.versioning.ArtifactVersion AbstractVersionDetails.getOldestUpdate(UpdateScope updateScope)
           
 org.apache.maven.artifact.versioning.ArtifactVersion VersionDetails.getOldestUpdate(UpdateScope updateScope)
          Returns the oldest version newer than the current version, but within the the specified update scope or null if no such version exists.
 org.apache.maven.artifact.versioning.ArtifactVersion AbstractVersionDetails.getOldestUpdate(UpdateScope updateScope, boolean includeSnapshots)
           
 org.apache.maven.artifact.versioning.ArtifactVersion VersionDetails.getOldestUpdate(UpdateScope updateScope, boolean includeSnapshots)
          Returns the oldest version newer than the specified current version, but within the the specified update scope or null if no such version exists.
 



Copyright © 2008-2011 Codehaus. All Rights Reserved.