org.apache.avalon.framework
Class Version

java.lang.Object
  |
  +--org.apache.avalon.framework.Version

public final class Version
extends java.lang.Object

This class is used to hold version information pertaining to a Component or interface.

The version number of a Component is made up of three dot-separated fields:

"major.minor.micro"

The major, minor and micro fields are integer numbers represented in decimal notation and have the following meaning:

Author:
Federico Barbieri, Pierpaolo Fumagalli, Stefano Mazzocchi, Roberto Lo Giacco, Peter Donald

Constructor Summary
Version(int major, int minor, int micro)
          Create a new instance of a Version object with the specified version numbers.
 
Method Summary
 boolean complies(Version other)
          Check this Version against another for compliancy (compatibility).
 boolean equals(java.lang.Object other)
           
 boolean equals(Version other)
          Check this Version against another for equality.
 int getMajor()
          Retrieve major component of version.
 int getMicro()
          Retrieve micro component of version.
 int getMinor()
          Retrieve minor component of version.
static Version getVersion(java.lang.String version)
          Parse a version out of a string.
 java.lang.String toString()
          Overload toString to report version correctly.
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

Version

public Version(int major,
               int minor,
               int micro)
Create a new instance of a Version object with the specified version numbers.
Parameters:
major - This Version major number.
minor - This Version minor number.
rev - This Version micro number.
Method Detail

getVersion

public static Version getVersion(java.lang.String version)
                          throws java.lang.NumberFormatException,
                                 java.lang.IllegalArgumentException
Parse a version out of a string. The version string format is .. where both minor and micro are optional.
Parameters:
version - The input version string
Returns:
the new Version object
Throws:
java.lang.NumberFormatException - if an error occurs
java.lang.IllegalArgumentException - if an error occurs

getMajor

public int getMajor()
Retrieve major component of version.
Returns:
the major component of version

getMinor

public int getMinor()
Retrieve minor component of version.
Returns:
the minor component of version

getMicro

public int getMicro()
Retrieve micro component of version.
Returns:
the micro component of version.

equals

public boolean equals(Version other)
Check this Version against another for equality.

If this Version is compatible with the specified one, then true is returned, otherwise false.

Parameters:
other - The other Version object to be compared with this for equality.

equals

public boolean equals(java.lang.Object other)
Overrides:
equals in class java.lang.Object

complies

public boolean complies(Version other)
Check this Version against another for compliancy (compatibility).

If this Version is compatible with the specified one, then true is returned, otherwise false. Be careful when using this method since, in example, version 1.3.7 is compliant to version 1.3.6, while the opposite is not.

The following example displays the expected behaviour and results of version.

 final Version v1 = new Version( 1, 3 , 6 );
 final Version v2 = new Version( 1, 3 , 7 );
 final Version v3 = new Version( 1, 4 , 0 );
 final Version v4 = new Version( 2, 0 , 1 );
 
 assert(   v1.complies( v1 ) );
 assert( ! v1.complies( v2 ) );
 assert(   v2.complies( v1 ) );
 assert( ! v1.complies( v3 ) );
 assert(   v3.complies( v1 ) );
 assert( ! v1.complies( v4 ) );
 assert( ! v4.complies( v1 ) );
 
Parameters:
other - The other Version object to be compared with this for compliancy (compatibility).

toString

public java.lang.String toString()
Overload toString to report version correctly.
Overrides:
toString in class java.lang.Object
Returns:
the dot seperated version string


"Copyright © 2001 Apache Jakarta Project. All Rights Reserved."