50515253545556
* * @return The version * @since 1.0.0.0 */ public static GenericVersion getVersion() { return new GenericVersion(1, 2, 0, 0, VersionType.STABLE, "HIP"); }
46474849505152
* * @return The version * @since 1.0.0.0 */ public static GenericVersion getVersion() { return new GenericVersion(1, 0, 0, 2, VersionType.STABLE, "FIERRO"); }
* * @return The version * @since 1.0.0.0 */ public static GenericVersion getVersion() { return new GenericVersion(1, 0, 0, 0, VersionType.STABLE, "GOLD"); }
* * @return The version * @since 1.0.0.0 */ public static GenericVersion getVersion() { return new GenericVersion(1, 2, 1, 0, VersionType.STABLE, "HOP"); }
152153154155156157158159160161
if (!(obj instanceof Version)) { return false; } //Set up the other version GenericVersion version = ((Version) obj).toGenericVersion(); //And compare return ((this.compareTo(version)) == 0); }
211212213214215216217218219220221
revision = Integer.valueOf(versionParts[3].split("[ -]")[0]); } else { revision = Integer.valueOf(versionParts[3]); } version = new GenericVersion(major, minor, build, revision); } break; case 3: { int major = Integer.valueOf(versionParts[0]);
39404142434445
* * @return The version * @since 1.0.0.0 */ public static GenericVersion getVersion() { return new GenericVersion(1, 1, 0, 0, VersionType.STABLE, "COMPATIBRU"); }
* * @return The version * @since 1.0.0.0 */ public static GenericVersion getVersion() { return new GenericVersion(1, 1, 0, 0, VersionType.BETA, "COMPATIBRU"); }