gnu.CORBA
Class Version
- Serializable
A version number, represented by the major version number
and the minor version number.
int | major - Major number (0..256, so the byte cannot be used).
|
int | minor - Minor number.
|
Version(int _major, int _minor) - Create the version with the given version numbers.
|
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.
|
clone , equals , extends Object> getClass , finalize , hashCode , notify , notifyAll , toString , wait , wait , wait |
major
public final int major
Major number (0..256, so the byte cannot be used).
minor
public final int minor
Minor number.
Version
public Version(int _major,
int _minor)
Create the version with the given version numbers.
_major
- major number (0..255)_minor
- minor number (0..255)
equals
public boolean equals(Object other)
Returns true if the versions are equal.
- equals in interface Object
other
- the other version to compare.
- 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.
- hashCode in interface Object
same
public boolean same(Version that)
Returns true if the versions are the same.
that
- the other version to compare.
- 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.
a_major
- major number of the version to compare.a_minor
- minor number of the version to compare.
- true if this version is higher than or equals to
the version v.
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.
a_major
- a major version number.a_minor
- a minor version number.
- 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.
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.