com.abercap.odoo.Version Maven / Gradle / Ivy
/*
* Copyright 2015 Aberdeen Broadcast Services.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.abercap.odoo;
/**
* Breaks up the Odoo server version into a major, minor and build number
* @author Pieter van der Merwe
* @since May 30, 2013
*/
public class Version {
private final String full_version;
private final int major;
private final int minor;
private final String build;
public Version(String version){
this.full_version = version;
int build_separator_idx = version.indexOf("-");
String major_minor = version;
// If there is a build number
if (build_separator_idx >= 0 && version.length() > 1){
major_minor = version.substring(0,build_separator_idx);
this.build = version.substring(build_separator_idx + 1);
}
else this.build = "0";
String[] major_minor_obj = major_minor.split("\\.");
int maj = -1;
try{
maj = Integer.parseInt(major_minor_obj[0]);
}
catch(Exception e){
maj = -1;
}
this.major = maj;
int min = -1;
try{
if (major_minor_obj.length > 1)
min = Integer.parseInt(major_minor_obj[1]);
}
catch(Exception e){
min = -1;
}
this.minor = min;
}
/**
* Get the major version of the Odoo version string
* @return Major version number
*/
public int getMajor() {
return major;
}
/**
* Get the minor version of the Odoo version string
* @return Minor version number
*/
public int getMinor() {
return minor;
}
/**
* Get the build number of the Odoo version string
* @return Build number
*/
public String getBuild() {
return build;
}
@Override
public String toString() {
return this.full_version;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy