All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.jpattern.orm.persistor.version.BigDecimalVersionMath Maven / Gradle / Ivy

There is a newer version: 6.3.0
Show newest version
package com.jpattern.orm.persistor.version;

import java.math.BigDecimal;

public class BigDecimalVersionMath implements VersionMath {

	@Override
	public BigDecimal increase(final boolean firstVersionNumber, final BigDecimal value) {
		if (firstVersionNumber || (value==null)) {
			return BigDecimal.ZERO;
		}
		return value.add(BigDecimal.ONE);
	}

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy