gnu.CORBA

Class Version

Implemented Interfaces:
Serializable

public class Version
extends Object
implements Serializable

A version number, represented by the major version number and the minor version number.
See Also:
Serialized Form

Field Summary

int
major
Major number (0..256, so the byte cannot be used).
int
minor
Minor number.

Constructor Summary

Version(int _major, int _minor)
Create the version with the given version numbers.

Method Summary

boolean
equals(Object other)
Returns true if the versions are equal.
int
hashCode()
Get the hashcode, higher 8 bits being the major version and lower 8 bits the minor version.
static Version
read_version(InputStream in)
Read from the input stream, major number first.
boolean
same(Version that)
Returns true if the versions are the same.
boolean
since_inclusive(int a_major, int a_minor)
Returns true if the given version is higher than or equals to the version, supplied as parameter in the form of two integers.
String
toString()
Return the string representation, in the form major.minor.
boolean
until_inclusive(int a_major, int a_minor)
Returs true if the given version is lower or equal to the version, specified by the provided minor and major version number.
void
write(OutputStream out)
Write into the output stream, major number first.

Methods inherited from class java.lang.Object

clone, equals, extends Object> getClass, finalize, hashCode, notify, notifyAll, toString, wait, wait, wait

Field Details

major

public final int major
Major number (0..256, so the byte cannot be used).

minor

public final int minor
Minor number.

Constructor Details

Version

public Version(int _major,
               int _minor)
Create the version with the given version numbers.
Parameters:
_major - major number (0..255)
_minor - minor number (0..255)

Method Details

equals

public boolean equals(Object other)
Returns true if the versions are equal.
Overrides:
equals in interface Object
Parameters:
other - the other version to compare.
Returns:
true if the versions are equal

hashCode

public int hashCode()
Get the hashcode, higher 8 bits being the major version and lower 8 bits the minor version.
Overrides:
hashCode in interface Object

read_version

public static Version read_version(InputStream in)
Read from the input stream, major number first.
Parameters:
in - a stream to read from.

same

public boolean same(Version that)
Returns true if the versions are the same.
Parameters:
that - the other version to compare.
Returns:
true if the versions are the same.

since_inclusive

public boolean since_inclusive(int a_major,
                               int a_minor)
Returns true if the given version is higher than or equals to the version, supplied as parameter in the form of two integers.
Parameters:
a_major - major number of the version to compare.
a_minor - minor number of the version to compare.
Returns:
true if this version is higher than or equals to the version v.

toString

public String toString()
Return the string representation, in the form major.minor.
Overrides:
toString in interface Object

until_inclusive

public boolean until_inclusive(int a_major,
                               int a_minor)
Returs true if the given version is lower or equal to the version, specified by the provided minor and major version number. This means, the version, specified by these two numbers, should be supported by the current version.
Parameters:
a_major - a major version number.
a_minor - a minor version number.
Returns:
true if the current version should be supported by the version, specified by the two passed numbers.

write

public void write(OutputStream out)
Write into the output stream, major number first.
Parameters:
out - a stream to write into.

Version.java -- Copyright (C) 2005 Free Software Foundation, Inc. This file is part of GNU Classpath. GNU Classpath is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2, or (at your option) any later version. GNU Classpath is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with GNU Classpath; see the file COPYING. If not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Linking this library statically or dynamically with other modules is making a combined work based on this library. Thus, the terms and conditions of the GNU General Public License cover the whole combination. As a special exception, the copyright holders of this library give you permission to link this library with independent modules to produce an executable, regardless of the license terms of these independent modules, and to copy and distribute the resulting executable under terms of your choice, provided that you also meet, for each linked independent module, the terms and conditions of the license of that module. An independent module is a module which is not derived from or based on this library. If you modify this library, you may extend this exception to your version of the library, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version.